summaryrefslogtreecommitdiffstats
path: root/perl-install/install2.pm
blob: c0a6f0c53f92de72dcdc753f7d52dfa506cbff31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
package install2;

use diagnostics;
use strict;
use Data::Dumper;

use vars qw($o);

#-######################################################################################
#- misc imports
#-######################################################################################
use common qw(:common :file :system :functional);
use install_any qw(:all);
use log;
use help;
use network;
use lang;
use keyboard;
use lilo;
use mouse;
use fs;
use timezone;
use fsedit;
use devices;
use partition_table qw(:types);
use pkgs;
use printer;
use modules;
use detect_devices;
use modparm;
#-use install_steps_graphical;
use run_program;

#-######################################################################################
#- Steps table
#-######################################################################################
my @installStepsFields = qw(text redoable onError needs entered reachable toBeDone help next done);
my @installSteps = (
  selectLanguage     => [ __("Choose your language"), 1, 1 ],
  selectInstallClass => [ __("Select installation class"), 1, 1 ],
  setupSCSI          => [ __("Setup SCSI"), 1, 0 ],
  selectPath         => [ __("Choose install or upgrade"), 0, 0, "selectInstallClass" ],
  selectMouse        => [ __("Configure mouse"), 1, 1, "selectPath" ],
  selectKeyboard     => [ __("Choose your keyboard"), 1, 1, "selectPath" ],
  partitionDisks     => [ __("Setup filesystems"), 1, 0, "selectPath" ],
  formatPartitions   => [ __("Format partitions"), 1, -1, "partitionDisks" ],
  choosePackages     => [ __("Choose packages to install"), 1, 1, "selectPath" ],
  doInstallStep      => [ __("Install system"), 1, -1, ["formatPartitions", "selectPath"] ],
  miscellaneous      => [ __("Miscellaneous"), 1, 1 ],
  configureNetwork   => [ __("Configure networking"), 1, 1, "formatPartitions" ],
  configureTimezone  => [ __("Configure timezone"), 1, 1, "doInstallStep" ],
#-  configureServices => [ __("Configure services"), 0, 0 ],
  configurePrinter   => [ __("Configure printer"), 1, 0, "doInstallStep" ],
  setRootPassword    => [ __("Set root password"), 1, 1, "formatPartitions" ],
  addUser            => [ __("Add a user"), 1, 1, "doInstallStep" ],
  createBootdisk     => [ __("Create a bootdisk"), 1, 0, "doInstallStep" ],
  setupBootloader    => [ __("Install bootloader"), 1, 1, "doInstallStep" ],
  configureX         => [ __("Configure X"), 1, 0, ["formatPartitions", "setupBootloader"] ],
  exitInstall        => [ __("Exit install"), 0, 0 ],
);

my (%installSteps, %upgradeSteps, @orderedInstallSteps, @orderedUpgradeSteps);

for (my $i = 0; $i < @installSteps; $i += 2) {
    my %h; @h{@installStepsFields} = @{ $installSteps[$i + 1] };
    $h{help}    = $help::steps{$installSteps[$i]} || __("Help");
    $h{previous}= $installSteps[$i - 2] if $i >= 2;
    $h{next}    = $installSteps[$i + 2];
    $h{entered} = 0;
    $h{onError} = $installSteps[$i + 2 * $h{onError}];
    $h{reachable} = !$h{needs};
    $installSteps{ $installSteps[$i] } = \%h;
    push @orderedInstallSteps, $installSteps[$i];
}

$installSteps{first} = $installSteps[0];

#-#####################################################################################
#-INTERN CONSTANT
#-#####################################################################################

#- these strings are used in quite a lot of places and must not be changed!!!!!
my @install_classes = (__("beginner"), __("developer"), __("server"), __("expert"));

#-#####################################################################################
#-Default value
#-#####################################################################################
#- partition layout
my %suggestedPartitions = (
  beginner => [
    { mntpoint => "/",     size => 700 << 11, type => 0x83 },
    { mntpoint => "swap",  size => 128 << 11, type => 0x82 },
    { mntpoint => "/home", size => 300 << 11, type => 0x83 },
  ],
  developer => [
    { mntpoint => "/boot", size =>  16 << 11, type => 0x83 },
    { mntpoint => "swap",  size => 128 << 11, type => 0x82 },
    { mntpoint => "/",     size => 200 << 11, type => 0x83 },
    { mntpoint => "/usr",  size => 600 << 11, type => 0x83 },
    { mntpoint => "/home", size => 500 << 11, type => 0x83 },
  ],
  server => [
    { mntpoint => "/boot", size =>  16 << 11, type => 0x83 },
    { mntpoint => "swap",  size => 512 << 11, type => 0x82 },
    { mntpoint => "/",     size => 200 << 11, type => 0x83 },
    { mntpoint => "/usr",  size => 600 << 11, type => 0x83 },
    { mntpoint => "/var",  size => 600 << 11, type => 0x83 },
    { mntpoint => "/home", size => 500 << 11, type => 0x83 },
  ],
  expert => [
    { mntpoint => "/",     size => 200 << 11, type => 0x83 },
  ],
);

#-#######################################################################################
#-$O
#-the big struct which contain, well everything (globals + the interactive methods ...)
#-if you want to do a kickstart file, you just have to add all the required fields (see for example
#-the variable $default)
#-#######################################################################################
$o = $::o = {
#    bootloader => { linear => 0, message => 1, timeout => 5, restricted => 0 },
    autoSCSI   => 0,
    mkbootdisk => 1, #- no mkbootdisk if 0 or undef, find a floppy with 1, or fd1
#-    packages   => [ qw() ],
    partitioning => { clearall => 0, eraseBadPartitions => 0, auto_allocate => 0, autoformat => 0, readonly => 0 },
#-    security => 3,
#-    partitions => [
#-		      { mntpoint => "/boot", size =>  16 << 11, type => 0x83 },
#-		      { mntpoint => "/",     size => 256 << 11, type => 0x83 },
#-		      { mntpoint => "/usr",  size => 512 << 11, type => 0x83, growable => 1 },
#-		      { mntpoint => "/var",  size => 256 << 11, type => 0x83 },
#-		      { mntpoint => "/home", size => 512 << 11, type => 0x83, growable => 1 },
#-		      { mntpoint => "swap",  size =>  64 << 11, type => 0x82 }
#-		    { mntpoint => "/boot", size =>  16 << 11, type => 0x83 },
#-		    { mntpoint => "/",     size => 300 << 11, type => 0x83 },
#-		    { mntpoint => "swap",  size =>  64 << 11, type => 0x82 },
#-		   { mntpoint => "/usr",  size => 400 << 11, type => 0x83, growable => 1 },
#-	     ],
    shells => [ map { "/bin/$_" } qw(bash tcsh zsh ash ksh) ],
    authentification => { md5 => 1, shadow => 1 },
    lang         => 'en',
    isUpgrade    => 0,
    installClass => "beginner",

    timezone => {
#-                   timezone => "Europe/Paris",
#-                   GMT      => 1,
                },
    printer => {
                 want     => 0,
                 complete => 0,
                 str_type => $printer::printer_type_default,
                 QUEUE    => "lp",
                 SPOOLDIR => "/var/spool/lpd/lp",
                 DBENTRY  => "DeskJet670",
                 PAPERSIZE => "legal",
                 CRLF      => 0,

                 DEVICE    => "/dev/lp",

                 REMOTEHOST => "",
                 REMOTEQUEUE => "",

                 NCPHOST   => "printerservername",
                 NCPQUEUE  => "queuename",
                 NCPUSER   => "user",
                 NCPPASSWD => "pass",

                 SMBHOST   => "hostname",
                 SMBHOSTIP => "1.2.3.4",
                 SMBSHARE  => "printername",
                 SMBUSER   => "user",
                 SMBPASSWD => "passowrd",
                 SMBWORKGROUP => "AS3",
               },
#-    superuser => { password => 'a', shell => '/bin/bash', realname => 'God' },
#-    user => { name => 'foo', password => 'bar', home => '/home/foo', shell => '/bin/bash', realname => 'really, it is foo' },

#-    keyboard => 'de',
#-    display => "192.168.1.19:2",
    steps        => \%installSteps,
    orderedSteps => \@orderedInstallSteps,

    base => [ qw(basesystem sed initscripts console-tools mkbootdisk anacron utempter ldconfig chkconfig ntsysv mktemp setup filesystem SysVinit bdflush crontabs dev e2fsprogs etcskel fileutils findutils getty_ps grep groff gzip hdparm info initscripts isapnptools kernel less ldconfig lilo logrotate losetup man mkinitrd mingetty modutils mount net-tools passwd procmail procps psmisc mandrake-release rootfiles rpm sash sed setserial shadow-utils sh-utils slocate stat sysklogd tar termcap textutils time tmpwatch util-linux vim-minimal vixie-cron which perl-base) ],
#- for the list of fields available for user and superuser, see @etc_pass_fields in install_steps.pm
#-    intf => [ { DEVICE => "eth0", IPADDR => '1.2.3.4', NETMASK => '255.255.255.128' } ],

#-step : the current one
#-prefix
#-mouse
#-keyboard
#-netc
#-autoSCSI drives hds  fstab
#-methods
#-packages compss
#-printer haveone entry(cf printer.pm)

};

#-######################################################################################
#- Steps Functions
#- each step function are called with two arguments : clicked(because if you are a
#- beginner you can force the the step) and the entered number
#-######################################################################################

#------------------------------------------------------------------------------
sub selectLanguage {
    $o->selectLanguage($_[1] == 1);

    addToBeDone {
	lang::write($o->{prefix});
	keyboard::write($o->{prefix}, $o->{keyboard});
    } 'doInstallStep' unless $::g_auto_install;
}

#------------------------------------------------------------------------------
sub selectMouse {
    my ($clicked) = $_[0];

    add2hash($o->{mouse} ||= {}, { mouse::read($o->{prefix}) }) if $o->{isUpgrade} && !$clicked;

    $o->selectMouse($clicked);
    addToBeDone { mouse::write($o->{prefix}, $o->{mouse}); } 'formatPartitions';
}

#------------------------------------------------------------------------------
sub selectKeyboard {
    my ($clicked) = $_[0];

    return unless $o->{isUpgrade} || !$::beginner || $clicked;

    $o->{keyboard} = (keyboard::read($o->{prefix}))[0] if $o->{isUpgrade} && !$clicked && $o->{keyboard_unsafe};
    $o->selectKeyboard if !$::beginner || $clicked;

    #- if we go back to the selectKeyboard, you must rewrite
    addToBeDone {
	keyboard::write($o->{prefix}, $o->{keyboard});
    } 'doInstallStep' unless $::g_auto_install;
}

#------------------------------------------------------------------------------
sub selectPath {
    $o->selectPath;
    install_any::searchAndMount4Upgrade($o) if $o->{isUpgrade};
}

#------------------------------------------------------------------------------
sub selectInstallClass {
    $o->selectInstallClass(@install_classes);

    $::expert   = $o->{installClass} eq "expert";
    $::beginner = $o->{installClass} eq "beginner";
    $o->{partitions} ||= $suggestedPartitions{$o->{installClass}};

    if ($o->{steps}{choosePackages}{entered} >= 1 && !$o->{steps}{doInstallStep}{done}) {
        $o->setPackages(\@install_classes);
        $o->selectPackagesToUpgrade() if $o->{isUpgrade};
    }
}

#------------------------------------------------------------------------------
sub setupSCSI {
    my ($clicked) = $_[0];
    $o->{autoSCSI} ||= $::beginner;

    $o->setupSCSI($o->{autoSCSI} && !$clicked, $clicked);
}

#------------------------------------------------------------------------------
sub partitionDisks {
    return
      $o->{fstab} = [
	#{ device => "loop7", mntpoint => "/", type => 0x83, size => ((cat_('/dos/lnx4win/size.txt'))[0]*2048), isFormatted => 1, isMounted => 1, noMakeDevice => 1 },
	#{ device => "/initrd/dos/lnx4win/swapfile", mntpoint => "swap", type => 0x82, isFormatted => 1, isMounted => 1, noMakeDevice => 1 },
	{ device => "loop7", type => 0x83, mntpoint => "/", isFormatted => 1, isMounted => 1 },
	{ device => "/initrd/dos/lnx4win/swapfile", type => 0x82, mntpoint => "swap", isFormatted => 1, isMounted => 1 },
      ] if $o->{lnx4win};
    return if $o->{isUpgrade};

    $::o->{steps}{formatPartitions}{done} = 0;
    eval { fs::umount_all($o->{fstab}, $o->{prefix}) } if $o->{fstab} && !$::testing;

    my $ok = fsedit::get_root($o->{fstab} || []) ? 1 : install_any::getHds($o);
    my $auto = $ok && !$o->{partitioning}{readonly} &&
	($o->{partitioning}{auto_allocate} || $::beginner && fsedit::get_fstab(@{$o->{hds}}) < 4);

    eval { fsedit::auto_allocate($o->{hds}, $o->{partitions}) } if $auto;

    if ($auto && fsedit::get_root_($o->{hds}) && $_[1] == 1) {
	#- we have a root partition, that's enough :)
	$o->install_steps::doPartitionDisks($o->{hds});	
    } elsif ($o->{partitioning}{readonly}) {
	$o->ask_mntpoint_s($o->{fstab});
    } else {
	$o->doPartitionDisks($o->{hds});
    }
    unless ($::testing) {
	$o->rebootNeeded foreach grep { $_->{rebootNeeded} } @{$o->{hds}};
    }
    $o->{fstab} = [ fsedit::get_fstab(@{$o->{hds}}) ];
    fsedit::get_root($o->{fstab}) or die _("Partitioning failed: no root filesystem");
}

sub formatPartitions {
    unless ($o->{lnx4win} || $o->{isUpgrade}) {
	$o->choosePartitionsToFormat($o->{fstab});

	unless ($::testing) {
	    $o->formatPartitions(@{$o->{fstab}});
	    fs::mount_all([ grep { isExt2($_) || isSwap($_) } @{$o->{fstab}} ], $o->{prefix});
	}
	eval { $o = $::o = install_any::loadO($o) } if $_[1] == 1;
    }
    mkdir "$o->{prefix}/$_", 0755 foreach 
      qw(dev etc etc/profile.d etc/sysconfig etc/sysconfig/console etc/sysconfig/network-scripts
	home mnt tmp var var/tmp var/lib var/lib/rpm);
    mkdir "$o->{prefix}/$_", 0700 foreach qw(root);
}

#------------------------------------------------------------------------------
#-PADTODO
sub choosePackages {
    $o->setPackages if $_[1] == 1;
    $o->selectPackagesToUpgrade($o) if $o->{isUpgrade} && $_[1] == 1;
    $o->choosePackages($o->{packages}, $o->{compss}, $o->{compssUsers});
    $o->{packages}{$_}{selected} = 1 foreach @{$o->{base}};
}

#------------------------------------------------------------------------------
sub doInstallStep {
    $o->readBootloaderConfigBeforeInstall if $_[1] == 1;

    #- some packages need such files for proper installation.
    install_any::write_ldsoconf($o->{prefix});
    fs::write($o->{prefix}, $o->{fstab});

    $o->beforeInstallPackages;
    $o->installPackages($o->{packages});
    $o->afterInstallPackages;
}
#------------------------------------------------------------------------------
sub miscellaneous { 
    $o->miscellaneous($_[0]); 
    addToBeDone { install_any::fsck_option() } 'doInstallStep';
}

#------------------------------------------------------------------------------
sub configureNetwork {
    my ($clicked, $entered) = @_;

    if ($o->{isUpgrade} && !$clicked) {
	$o->{netc} or $o->{netc} = {};
	add2hash($o->{netc}, { network::read_conf("$o->{prefix}/etc/sysconfig/network") }) if -r "$o->{prefix}/etc/sysconfig/network";;
	add2hash($o->{netc}, { network::read_resolv_conf("$o->{prefix}/etc/resolv.conf") }) if -r "$o->{prefix}/etc/resolv.conf";
	foreach (all("$o->{prefix}/etc/sysconfig/network-scripts")) {
	    if (/ifcfg-(\w*)/) {
		push @{$o->{intf}}, { network::read_conf("$o->{prefix}/etc/sysconfig/network-scripts/$_") };
	    }
	}
    }

    $o->configureNetwork($entered == 1 && !$clicked)
}
#------------------------------------------------------------------------------
sub configureTimezone {
    my ($clicked) = $_[0];
    my $f = "$o->{prefix}/etc/sysconfig/clock";

    if ($o->{isUpgrade} && -r $f && -s $f > 0) {
	return if $_[1] == 1 && !$clicked;
	#- can't be done in install cuz' timeconfig %post creates funny things
	add2hash($o->{timezone}, { timezone::read($f) });
    }
    $o->{timezone}{GMT} = 1 unless exists $o->{timezone}{GMT}; #- take GMT by default if nothing else.
    $o->timeConfig($f);
}
#------------------------------------------------------------------------------
sub configureServices {
    return if $o->{lnx4win};

    $o->servicesConfig;
}
#------------------------------------------------------------------------------
sub configurePrinter  { $o->printerConfig   }
#------------------------------------------------------------------------------
sub setRootPassword {
    return if $o->{isUpgrade};

    $o->setRootPassword;
    addToBeDone { install_any::setAuthentication() } 'doInstallStep';
}
#------------------------------------------------------------------------------
sub addUser {
    return if $o->{isUpgrade};

    $o->addUser($_[0]);
    install_any::setAuthentication();
}

#------------------------------------------------------------------------------
#-PADTODO
sub createBootdisk {
    modules::write_conf("$o->{prefix}/etc/conf.modules", 'append');

    return if $o->{lnx4win};
    $o->createBootdisk($_[1] == 1);
}

#------------------------------------------------------------------------------
sub setupBootloader {
    return if $o->{lnx4win} || $::g_auto_install;

    $o->setupBootloaderBefore if $_[1] == 1;
    $o->setupBootloader($_[1] - 1);
}
#------------------------------------------------------------------------------
sub configureX {
    my ($clicked) = $_[0];
    $o->setupXfree if $o->{packages}{XFree86}{installed} || $clicked;
}
#------------------------------------------------------------------------------
sub exitInstall { $o->exitInstall(getNextStep() eq "exitInstall") }


#-######################################################################################
#- MAIN
#-######################################################################################
sub main {
    $SIG{__DIE__} = sub { chomp $_[0]; log::l("ERROR: $_[0]") };

    $::beginner = $::expert = $::g_auto_install = 0;

    my $cfg;
    my %cmdline; map { 
	my ($n, $v) = split '=';
	$cmdline{$n} = $v || 1;
    } split ' ', cat_("/proc/cmdline");

    my $opt; foreach (@_) {
	if (/^--?(.*)/) {
	    $cmdline{$opt} = 1 if $opt;
	    $opt = $1;
	} else {
	    $cmdline{$opt} = $_ if $opt;
	    $opt = '';
	}
    } $cmdline{$opt} = 1 if $opt;
    
    map_each {
	my ($n, $v) = @_;
	my $f = ${{
	    method    => sub { $o->{method} = $v },
	    pcmcia    => sub { $o->{pcmcia} = $v },
	    step      => sub { $o->{steps}{first} = $v },
	    expert    => sub { $o->{installClass} = 'expert'; $::expert = 1 },
	    beginner  => sub { $o->{installClass} = 'beginner'; $::beginner = 1 },
	    lnx4win   => sub { $o->{lnx4win} = 1 },
	    readonly  => sub { $o->{partitioning}{readonly} = 1 },
	    display   => sub { $o->{display} = $v },
	    security  => sub { $o->{security} = $v },
	    test      => sub { $::testing = 1 },
	    defcfg    => sub { $cfg = $v },
#	    ks        => sub { $::auto_install = 1; $cfg = $v; },
#	    kickstart => sub { $::auto_install = 1; $cfg = $v; },
	    auto_install => sub { $::auto_install = 1; $cfg = $v; },
	    alawindows => sub { $o->{security} = $o->{partitioning}{clearall} = 1; $o->{bootloader}{crushMbr} = 1 },
	    g_auto_install => sub { $::testing = $::g_auto_install = 1; $o->{partitioning}{auto_allocate} = 1 },
	}}{lc $n}; &$f if $f;
    } %cmdline;

    unlink "/sbin/insmod"  unless $::testing;
    unlink "/modules/pcmcia_core.o" unless $::testing; #- always use module from archive.
    unlink "/modules/i82365.o" unless $::testing;
    unlink "/modules/tcic.o" unless $::testing;
    unlink "/modules/ds.o" unless $::testing;

    print STDERR "in second stage install\n";
    log::openLog(($::testing || $o->{localInstall}) && 'debug.log');
    log::l("second stage install running");
    log::ld("extra log messages are enabled");

    #-really needed ??
    #-spawnSync();
    eval { spawnShell() };

    $o->{prefix} = $::testing ? "/tmp/test-perl-install" : "/mnt";
    $o->{root}   = $::testing ? "/tmp/root-perl-install" : "/";
    mkdir $o->{prefix}, 0755;
    mkdir $o->{root}, 0755;

    #-  make sure we don't pick up any gunk from the outside world
    $ENV{PATH} = "/usr/bin:/bin:/sbin:/usr/sbin:/usr/X11R6/bin:$o->{prefix}/sbin:$o->{prefix}/bin:$o->{prefix}/usr/sbin:$o->{prefix}/usr/bin:$o->{prefix}/usr/X11R6/bin" unless $::g_auto_install;
    $ENV{LD_LIBRARY_PATH} = "";

    if ($::auto_install) {
	require 'install_steps_auto_install.pm';
    } else {
	require 'install_steps_graphical.pm';
    }
    eval { $o = $::o = install_any::loadO($o, $cfg) } if $cfg;

    $o->{prefix} = $::testing ? "/tmp/test-perl-install" : "/mnt";
    mkdir $o->{prefix}, 0755;

    #-  make sure we don't pick up any gunk from the outside world
    $ENV{PATH} = "/usr/bin:/bin:/sbin:/usr/sbin:/usr/X11R6/bin:$o->{prefix}/sbin:$o->{prefix}/bin:$o->{prefix}/usr/sbin:$o->{prefix}/usr/bin:$o->{prefix}/usr/X11R6/bin";
    $ENV{LD_LIBRARY_PATH} = "";

    #- needed very early for install_steps_graphical
    eval { $o->{mouse} ||= mouse::detect() };

    $::o = $o = $::auto_install ?
      install_steps_auto_install->new($o) :
      install_steps_graphical->new($o);

    $o->{netc} = network::read_conf("/tmp/network");
    if (my ($file) = glob_('/tmp/ifcfg-*')) {
	log::l("found network config file $file");
	my $l = network::read_interface_conf($file);
	add2hash(network::findIntf($o->{intf} ||= [], $l->{DEVICE}), $l);
    }

    modules::load_deps("/modules/modules.dep");
    $o->{modules} = modules::get_stage1_conf($o->{modules}, "/tmp/conf.modules");
    modules::read_already_loaded();
    modparm::read_modparm_file(-e "modparm.lst" ? "modparm.lst" : "/usr/share/modparm.lst");

    #-the main cycle
    my $clicked = 0;
    MAIN: for ($o->{step} = $o->{steps}{first};; $o->{step} = getNextStep()) {
	$o->{steps}{$o->{step}}{entered}++;
	$o->enteringStep($o->{step});
	eval {
	    &{$install2::{$o->{step}}}($clicked, $o->{steps}{$o->{step}}{entered});
	};
	$o->kill_action;
	$clicked = 0;
	while ($@) {
	    local $_ = $@;
	    $o->kill_action;
	    /^setstep (.*)/ and $o->{step} = $1, $clicked = 1, redo MAIN;
	    /^theme_changed$/ and redo MAIN;
	    unless (/^already displayed/ || /^ask_from_list cancel/) {
		eval { $o->errorInStep($_) };
		$@ and next;
	    }
	    $o->{step} = $o->{steps}{$o->{step}}{onError};
	    next MAIN unless $o->{steps}{$o->{step}}{reachable}; #- sanity check: avoid a step not reachable on error.
	    redo MAIN;
	}
	$o->{steps}{$o->{step}}{done} = 1;
	$o->leavingStep($o->{step});

	last if $o->{step} eq 'exitInstall';
    }
    substInFile { s|/sbin/mingetty tty1.*|/bin/bash --login| } "$o->{prefix}/etc/inittab" if $o->{security} < 2;

    fs::write($o->{prefix}, $o->{fstab});
    modules::write_conf("$o->{prefix}/etc/conf.modules", 'append');

    install_any::lnx4win_postinstall($o->{prefix}) if $o->{lnx4win};
    install_any::killCardServices();

    log::l("installation complete, leaving");
    print "\n" x 30;
}

#-######################################################################################
#- Wonderful perl :(
#-######################################################################################
1;
ار نظام الطباعة لنظامك. توفر أنظمة التشغيل ا?خرى\n"
+"نظام طباعة واحد, لكن Mandrake Linux يوفر لك نظامين. كل نظام مناسب\n"
+"لنوغ معين من التهيئة.\n"
+"\n"
+" * \"pdq\"--و هو اختصار لـ``print, don't queue'' أي ``اطبع و ? تصف'', هذا هو "
+"الخيار ا?مثل\n"
+"اذا كانت لديك وصلة مباشرة بالطابعة, و تريد تفادي أي ارتباك في الطابعة\n"
+"و لديك طابعات على الشبكة.(يقوم \"pdq\" بالتعامل مع حا?ت الشبكة البسيطة\n"
+"و يعيبه البطئ عند ا?ستخدام مع الشبكات). من ا?فضل أن تستخدم \"pdq\" اذا.\n"
+"كانت هذه تجربتك ا?ولى مع نظام لينكس.\n"
+"\n"
+" * \"CUPS\" - ``Common UNIX Printing System'', هو الخيار ا?مثل\n"
+"للطباعة على طابعتك المحلية أو حتى على طابعة في النصف ا?خر من الكوكب. انه\n"
+"سهل ا?عداد و يمكن أن يتصرف كخادم أو كعميل ?نظمة طباعة \"lpd\"\n"
+"القديمة, لذا فإنه متوافق مع أنظمة التشغيل القديمة\n"
+"التي ? تزال تحتاج الى خدمات الطباعة.بينما التهيئة سهلة\n"
+"و قوية مثل \"pdq\". اذا كنت تحتاج الى محاكاة خادم \"lpd\", تأكد\n"
+"من تشغيل مراقب \"cups-lpd\". يحتوي CUPS على واجهات\n"
+"رسومية للطباعة أو اختيار خيارات الطابعة و إدارة\n"
+"الطابعة.\n"
+"\n"
+"اذا قمت يتقرير اختيارك ا?ن, ثم لم يعجبك نظام الطباعة\n"
+"فيما بعد, يمكنك تغييره عن طريق تشغيل PrinterDrake من مركز تحكم Mandrake\n"
+"و النقر على زر الخبير."
#: ../../help.pm:1
#, c-format
@@ -1369,32 +1424,7 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+"(\"On Floppy\")."
msgstr ""
#: ../../help.pm:1
@@ -1415,6 +1445,20 @@ msgid ""
"bootloader menu, but you will need a boot disk in order to boot those other\n"
"operating systems!"
msgstr ""
+"بعدما قمت بتهيئة المعام?ت العامة لمحمّل ا?قلاع, فسيتم\n"
+"عرض قائمة خيارات ا?قلاع المتوفرة عند بدء التشغيل.\n"
+"\n"
+"اذا كانت هناك أنظمة تشغيل أخرى مثبتة على ماكينتك فسيتم اضافتها\n"
+"آلياً الى قائمة ا?قلاع. يمكنك التحكم بالخيارات\n"
+"الموجودة بنقر \"اضف\" ?نشاء مدخل جديد, و اختيار مدخل و\n"
+"نقر \"تعديل\" أو \"حذف\" لتعديل أو حذف المدخل. \"موافق\" يتأكد\n"
+"من تغييراتك.\n"
+"\n"
+"ربما ? تريد ?ي شخص يتمكن من اعادة تشغيل الماكينة أن يستطيع\n"
+"الوصل الى أنظمة التشغيل ا?خرى. يمكنك حذف المداخل المقابلة\n"
+"?نظمة التشغيل لحذفها من قائمة محمّل ا?قلاع, لكن في هذه الحالة ستحتاج الى قرص\n"
+"مرن للإق?ع كي تتمكن من الوصول الى أنظمة\n"
+"التشغيل ا?خرى!"
#: ../../help.pm:1
#, c-format
@@ -1485,6 +1529,40 @@ msgid ""
"have \"No password\", if your computer won't be connected to the Internet,\n"
"and if you trust anybody having access to it."
msgstr ""
+"هذه هي أهم خطوة تتخذها ?من نظام لينكس الخاص\n"
+"بك: عليك ادخال كلمة مرور المستخدم \"الجذر\" (root) و هو\n"
+"مدير النظام و المستخدم الوحيد المخول بتحديث النظام, اضافة المستخدمين,\n"
+"تغيير تهيئة النظام, الخ. باختصار يمكن للمستخدم \"الجذر\" أن يفعل\n"
+"كل شئ! لذا عليك اختيار كلمة المرور صعبة\n"
+"التخمين - سيخبرك DrakX اذا كانت كلمة المرور التي تستخدمها سهلة. كما\n"
+"ترى, لست مجبراً على ادخال كلمة مرور, لكننا ننصح بشدة ?ن احتمال حدوث\n"
+"أخطاء مع لينكس عادي مثل باقي أنظمة التشغيل ا?خرى. و بما أن \"الجذر\" يمكنه\n"
+"تعدي كل الحدود و قد يحذف كل البيانات من دون قصد, لذا فيجب أن يكون من\n"
+"الصعب أن تصبح المستخدم \"الجذر\".\n"
+"\n"
+"يجب أن تكون كلمة المرور خليطاً من الحروف و ا?رقام كما يجب أن تحتوي\n"
+"على 8 حروف على ا?قل. ? تكتب كلمة مرور \"الجذر\" على ورق -- هذا يسهّل\n"
+"اختراق النظام اذا رأى أحد كلمة المرور.\n"
+"\n"
+"نصيحة أخرى -- ? تجعل كلمة المرور طويلة جداً أو معقّدة ?نك يجب أن تكون\n"
+"قادراً على تذكرها!\n"
+"\n"
+"لن يتم عرض كلمة المرور على الشاشة. لتقليل فرصة حدوث\n"
+"خطأ أثناء الكتابة, ستحتاج الى ادخال كلمة المرور مرتين.\n"
+"اذا أخطأت في الكتابة في المرتين, فسيجب استخدام كلمة\n"
+"المرور \"الخاطئة\" في المرة ا?ولى التي تدخل فيها الى النظام.\n"
+"\n"
+"اذا كنت تريد الوصول الى هذا الكمبيوتر لكي يتم التحكم بك عن طريق\n"
+"خادم مصادقة, اضغط زر \"متقدم\".\n"
+"\n"
+"اذا كانت شبكتك تستخدم LDAP, NIS, أو PDC Windows Domain Authentication "
+"Services\n"
+"عليك اختيار الخيار المناسب كـ\"مصادقة\". اذا لم تعلم أي منها تريد\n"
+"استخدامه, اسأل مدير الشبكة لديك.\n"
+"\n"
+"اذا كانت لديك مشكلة في تذكر كلمات المرور, يمكنك اختيار\n"
+"\"? كلمة مرور\" اذا لم يكن الكمبيوتر الخاص بك متصلاً با?نترنت,\n"
+"أو أنك تثق في اللذين يدخلون الى النظام."
#: ../../help.pm:1
#, c-format
@@ -1538,15 +1616,38 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
"language used by the entire system. Running the command as a regular user\n"
"will only change the language settings for that particular user."
msgstr ""
+"اختيارك للغة المفضلة سيؤثر على لغة وثائق المساعدة\n"
+"و برنامج التثبيت و النظام بشكل عام. أو?ً اختر المنطقة التي\n"
+"تتواجد فيها, ثم اللغة التي تتحدث بها.\n"
+"\n"
+"ضغط زر \"متقدم\" سيسمح لك باختيار لغات\n"
+"أخرى ليتم تثبيتها على محطة العمل الخاصة بك,و من ثم\n"
+"تثبيت الملفات الخاصة باللغات لوثائق المساعدة و التطبيقات, مثلاً\n"
+"اذا كنت ستستضيف مستخدمين من أسبانيا على ماكينتك, اختر ا?نجليزية\n"
+"كلغة افتراضية في النمط الشجري و \"ا?سبانية\" في القسم\n"
+"المتقدم.\n"
+"?حظ أنك لست مقيداً باختيار لغة واحدة اضافية. حال\n"
+"اختيارك للإعدادات المحلية, اضغط زر \"التالي ->\"\n"
+"للمتابعة.\n"
+"\n"
+"للتغيير بين اللغات المتعددة المثبتة على النظام, يمكنك\n"
+"تشغيل ا?مر \"/usr/sbin/localedrake\"كمستخدم جذر لتغيير\n"
+"اللغة المستخدمة عن طريق النظام ككل. تشغيل ا?مر كمستخدم عادي\n"
+"سيغير فقط اعدادات اللغة لهذا المستخدم فقط."
#: ../../help.pm:1
#, c-format
@@ -1567,6 +1668,21 @@ msgid ""
"dialog will allow you to choose the key binding that will switch the\n"
"keyboard between the Latin and non-Latin layouts."
msgstr ""
+"اعتماداً على اللغة ا?فتراضية التي اخترتها في هذا القسم, سيقوم DrakX\n"
+"باختيار تهيئة لوحة المفاتيح آلياً. عموماً,\n"
+"ربما ليست لديك لوحة مفاتيح مقابلة بشكل مباشر للغتك:\n"
+"مثلاً ربما تكون عربياً متكلماً باللغة ا?نجليزية, ربما تكون لديك\n"
+"لوحة مفاتيح سويسرية. اذا كنت تتكلم ا?نجليزية لكن موجود في كيبك, ربما\n"
+"تجد نفسك في نفس الموقف حيث ? تتطابق لغتك مع لوحة المفاتيح.\n"
+"في الحالتين, ستسمح لك خطوة التثبيت ستسمح لك باختيار\n"
+"لوحة مفاتيح مناسبة من القائمة.\n"
+"\n"
+"انقر زر \"المزيد\" لعرض قائمة بكل لوحات المفاتيح\n"
+"المدعومة.\n"
+"\n"
+"اذا اخترت لوحة مفاتيح لحروف غير ?تينية, فسيسمح لك\n"
+"مربع الحوار التالي باختيار اختصارات لوحة المفاتيح التي\n"
+"ستغير وضع لوحة المفاتيح بين الحروف اللاتينية و الغير ?تينية."
#: ../../help.pm:1
#, c-format
@@ -1592,15 +1708,38 @@ msgid ""
"running version \"8.1\" or later. Performing an Upgrade on versions prior\n"
"to Mandrake Linux version \"8.1\" is not recommended."
msgstr ""
+"يتم تنشيط هذه الخطوة فقط اذا تم ايجاد تجزئة لينكس قديمة\n"
+"على جهازك.\n"
+"\n"
+"يحتاج DrakX ا?ن الى أن يعلم اذا كنت تريد التثبيت من الصفر أو\n"
+"تريد ترقية نظام Mandrake Linux الموجود لديك مسبقاً:\n"
+"\n"
+" * \"تثبيت\": في ا?غلب تقوم بازالة النظام القديم\n"
+"كلياً. اذا كنت تريد تغيير تجزئات القرص الصلب, أو تريد\n"
+"تغيير نظام الملفات, عليك اختيار هذا الخيار. عموماً اعتمادا\n"
+"على كيفية تجزئة القرص الصلب لديك. يمكنك منع ازالة بعض\n"
+"بياناتك الموجودة مسبقاً.\n"
+" * \"ترقية\": فئة التثبيت هذه تسمح لك بتحديث الحزم\n"
+"على نظام Mandrake Linux الخاص بك. لن يتم تغيير\n"
+"بياناتك أو تقسيمات القرص الصلب. أغلب خطوات التهيئة ا?خرى\n"
+"لا تزال موجودة, مثل التثبيت الاعتيادي.\n"
+"\n"
+"استخدام خيار ``الترقية'' يجب أن يعمل بشكل جيد على\n"
+"اصدارات Mandrake Linux \"8.1\" أو ما فوق. ? ينصح بالترقية\n"
+"من اصادرات Mandrake Linux قبل \"8.1\"."
#: ../../help.pm:1
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
"\"البلد\": تأكد من اختيار البلد الحالي. اذا لم تكن في هذا\n"
-"البلد, اضغط على الزر و اختر بلداً آخر."
+"البلد, اضغط على زر \"تهيئة\" و اختر بلداً آخر. اذا لك تكن\n"
+"بلدك في القائمة اضغط زر \"المزيد\" لإظهر قائمة كاملة\n"
+"بالبلدان."
#: ../../help.pm:1
#, c-format
@@ -1721,9 +1860,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -1731,9 +1868,7 @@ msgstr ""
"لهذه الماكينة. بديهياً, يجب تعيين مستوى أمني\n"
"عالٍ اذا كانت الماكينة تحتوي على معلومات هامة, أو اذا كانت الماكينة\n"
"ستُستخدم للإتصال بالإنترنت. ان استخدام مستوى أمني عالٍ يأتي\n"
-"عادة على حساب سهولة الإستخدام. راجع فضل \"msec\"\n"
-"في ``دليل سطر الأوامر'' للحصول على مزيد من المعلومات حول\n"
-"معنى هذه المستويات.\n"
+"عادة على حساب سهولة الإستخدام.\n"
"\n"
"اذا لم تكن تريد الإختيار, احفظ الاختيار الإفتراضي."
@@ -1743,15 +1878,26 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
+"في الوقت الذي تقوم فيه بتثبيت Mandrake Linux, قد يكون تم تحديث\n"
+"بعض الحزم منذ ا?صدار المبدئي, ربما يكون تم اصلاح بعض العيوب\n"
+"أو تم حل المشاكل ا?منية. لكي تستفيد من هذه التحديثات,يمكنك\n"
+"ا?ن تنزيل هذه التحديثات عبر ا?نترنت. اختر\n"
+"\"نعم\" اذا كانت لديك وصلة انترنت عاملة, أو \"?\" اذا كنت تفضل\n"
+"تثبيت هذه التحديثات ?حقاً.\n"
+"\n"
+"اختيار \"نعم\" يعرض قائمة با?ماكن التي يمكن منها الحصول\n"
+"على التحديثات. اختر المكان الأقرب اليك. سيتم عرض قائمة بالحزم\n"
+"راجع اختياراتك, ثم اضغط \"ثبّت\" لتنزيل و تثبيت\n"
+"الحزم المختارة, أو \"الغاء\" ?حباط التحديث."
#: ../../help.pm:1
#, c-format
@@ -1791,7 +1937,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -1849,7 +1995,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -1874,43 +2020,72 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
+msgstr ""
+"في هذه النقطة, عليك أن تقرر أين تريد تثبيت نظام\n"
+"التشغيل Mandrake Linux على القرص الصلب الخاص بك. اذا كان القرص الصلب\n"
+"قارغاً أو أن نظام تشغيل آخر يستخدم كل المساحة المتوفرة فسوف\n"
+"تحتاج الى تجزئة القرص الصلب. بشكل عام,. فإن تجزئةالقرص الصلب\n"
+"تعني تقسيم القرص الصلب منطقياً ?نشاء المساحة المطلوبة لتثبيت\n"
+"نظام Mandrake Linux الجديد الخاص بك.\n"
+"\n"
+"?ن عملية تقسيم القرص الصلب غير قابلة للتراجع عادةًَ\n"
+"كما أنها قد تتسبب في خسارة للبيانات اذا كان هناك نظام تشغيل\n"
+"آخر مثبت على هذا القرص الصلب, تجزئة القرص قد يكون مزعجاً و مثيراً للضغط\n"
+"اذا كنت مستخدماً محترقاً. من حسن الحظ, يوفر DrakX معالجاً يسهل العملية.\n"
+"قبل متابعة هذه الخطوة, اقرأ بقية هذا القسم و قبل كل شئ, خذ وقتك.\n"
+"\n"
+"اعتماداً على اعدادات القرص الصلب, تتوفر العديد من الخيارات:\n"
+"\n"
+" * \"استخدام المساحة الفارغة\": هذا الخيار سيقوم بعملية تجزئة آلية\n"
+"للأقراص الصلبة الفارغة. اذا استخدمت هذا الخيار, لن تكون هناك اشعارات\n"
+"أخرى.\n"
+" * \"استخدام التجزئة الموجودة\": يكون المعالج قد اكتشف تجزئة أو أكثر من\n"
+"تجزئات لينكس على القرص الصلب. اذا كنت تريد استخدامها, اختر هذا\n"
+"الخيار. سيتم بعد ذلك سؤالك عن نقاط التحميل المرتبطة بكل\n"
+"تجزئة. يتم اختيار نقاط التجزئة المعتادة افتراضياً,\n"
+"و ?غلب المستخدمين فإنها فكرة جيدة تركها كما هي.\n"
+"\n"
+" * \"استخدام المساحة الفارغة على تجزئة Windows\": اذا\n"
+"كان Microsoft Windows مثبت على القرص الصلب و يحتل كل المساحة التي عليه,\n"
+"ستحتاج الى انشاء مساحة فارغة لبيانات لينكس. لعمل ذلك يمكنك حذف\n"
+"تجزئة و بيانات Microsoft Windows (انظر حل ``ازالة كل القرص'')\n"
+"أو قم بإعادة تحجيم تجزئة Microsoft Windows FAT. يمكن عمل اعادة التحجيم\n"
+"دون أي خسارة للبيانات, لكن يجب عليك قبل ذلك بإزالة تجزئة القرص "
+"(defragmenting)\n"
+"الذي يستخدم تنسيق FAT. نسخ بياناتك احتياطياً يفضّل\n"
+"بشدة.. استخدام هذا الخيار منصوح به اذا كنت تريد استخدام \n"
+"كل من Mandrake Linux و Microsoft Windows على نفس الكمبيوتر.\n"
+"\n"
+" قبل اختيارك لهذا الخيار, عليك أن تعلم أنه بعد هذا\n"
+"ا?جراء, ستتقلص مساحة تجزئة Microsoft Windows عن ما قبل\n"
+"ستكون لديك مساحة فارغة أقل على Microsoft Windows\n"
+"لتخزين بياناتك و تثبيت برامج جديدة.\n"
+"\n"
+" * \"مسح كل القرص\": اذا كنت تريد حذف كل البيانات و كل التجزئات\n"
+"الموجودة على القرص الصلب و ابدالها بنظام Mandrake Linux الجديد\n"
+"الخاص بك, اختر هذا الخيار. كن حذراً, ?نك لن تتمكن من التراجع\n"
+"بعد أن تقوم بالتأكيد.\n"
+"\n"
+" !!! اذا اخترت هذا الخيار سيتم حذف كل البيانات الموجودة على القرص. !!\n"
+"\n"
+" * \"حذف Windows\": سيقوم هذا الخيار ببساطة بمحو كل شء على القرص و\n"
+"يبدأ التثبيت من الصفر. ستضيع كل البيانات على\n"
+"القرص.\n"
+"\n"
+" * \"تجزئة مخصصة للقرص\": اختر هذا الخيار اذا كنت تريد\n"
+"تقسيم القرص الصلب بشكل يدوي. كن حذراً -- هذا الخيار قوي\n"
+"لكنه خطير و من الممكن أن تفقد بياناتك بسهولة. لهذا فإن\n"
+"هذا الخيار مفضّل فقط اذا كنت قد قمت بشئ مماثل من فبل \n"
+"و لديك بعض الخبرة. لمزيد من التعليمات حول استخدام أداة DiskDrake\n"
+"راجع قسم ``ادارة التجزئات'' في\n"
+"``دليل المبتدئ''."
#: ../../help.pm:1
#, c-format
@@ -2065,11 +2240,25 @@ msgid ""
"choose a time server located near you. This option actually installs a time\n"
"server that can used by other machines on your local network."
msgstr ""
+"يقوم لينكس بإدارة الوقت حسب توقيت غرينتش ثم يترجمه الى\n"
+"التوقيت المحلي حسب المنطقة الزمنية التي اخترتها. اذا كانت الساعة\n"
+"التي في اللوحة الرئيسية مضبوطة على التوقيت المحلي, يمكنك ازالة تنشيط ذلك\n"
+"عن طريق ازالة التأشير من \"ساعة الجهاز مضبوظة على توقيت غرينتش\" و التي "
+"ستجعل\n"
+"لينكس يعلم أن ساعة النظام و ساعة الجهاز على نفس التوقيت. هذا\n"
+"مفيد عندما تستضيف الماكينة نظام تشغيل آخر مثل Windows.\n"
+"\n"
+"خيار \"تزامن آلي للوقت\" سيقوم آلياً بضبط الساعة عن طريق\n"
+"ا?تصال بخادم وقت بعيد على ا?نترنت. كي تعمل هذه الميزة,\n"
+"يجب أن تكون لديك وصلة انترنت عاملة. من ا?فضل اختيار خادم\n"
+"الوقت ا?قرب اليك. هذا الخيار يثبت خادم وقت\n"
+"يمكن استخدامه عن طريق الماكينات ا?خرى على الشبكة المحلية."
#: ../../help.pm:1
#, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2085,19 +2274,34 @@ msgid ""
"enabled on a server. In general, select only the services you really need.\n"
"!!"
msgstr ""
+"هذه الخطوة هي ?ختيار الخدمات التي سيتم تشغيلها عند بدء التشغيل.\n"
+"\n"
+"سيقوم DrakX بعرض قائمة بكل الخدمات المتوفرة في هذا التثبيت.\n"
+"راجع كل خدمة بتمعن و قم بإزالة التأشير من تلك الخدمات التي ? تحتاجها\n"
+"بشكل دائم عند ا?قلاع.\n"
+"\n"
+"سيتم عرض شرح قصير حول الخدمة عند\n"
+"اختيارها. عموماً, اذا لم تكن متأكد ما اذا كانت الخدمة مفيدة أم ?,\n"
+"فمن ا?فضل ترك الخيار ا?فتراضي.\n"
+"\n"
+"!! في هذه المرحلة كن حذراُ اذا كنت تريد استخدام ماكينتك\n"
+"كخادم: ربما لن تريد بدء أي خدمات ? تحتاجها.\n"
+"فضلاً تذكر أن العديد من الخدمات قد تكون خطرة اذا كانت\n"
+"متاحة على الخادم. بشكل عام اختر فقط الخدمات التي تحتاجها.\n"
+"!!"
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
msgstr ""
-"\"الطابعة\": النقر على \"لا طابعة\" سيفتح معالج تهيئة\n"
+"\"الطابعة\": النقر على \"تهيئة\" سيفتح معالج تهيئة\n"
"الطابعة. اقرأ الفضل المختص في ``دليل المبتدئ''\n"
"لكزيد من المعلومات عن كيفية اعداد طابعة جديدة. الواجهة\n"
-"هناك مماثلة لتلك المستخدمة أثناء التثبين."
+"هناك مماثلة لتلك المستخدمة أثناء التثبيت."
#: ../../help.pm:1
#, c-format
@@ -2121,6 +2325,24 @@ msgid ""
"for details about the configuration, or simply wait until your system is\n"
"installed and use the program described there to configure your connection."
msgstr ""
+"ستقوم ا?ن بإعداد وصلة ا?نترنت/الشبكة الخاصة بك. اذا كنت تريد\n"
+"توصيل جهازك با?نترنت أو للشبكة المحلية, انقر \"التالي ->\"\n"
+"سيحاول Mandrake Linux أن يتحقق آلياً من وجود ا?جهزة و المودمات.\n"
+"اذا فشل التحقق, أزل التأشبر من \"استخدم التحقق ا?لي\". ربما تختار\n"
+"عدم تهيئة الشبكة, أو تريد أن تفعل ذلك, في هذه الحال\n"
+"فإن ضغط زر \"الغاء\" سيأخذك الى الخطوة التالية.\n"
+"\n"
+"أثناء تهيئة الشبكة, فإن خيارات التوصيل المتوفرة هي:\n"
+"مودم تقليدي, مودم ISDN, وصلة ADSL, مودم كيبل, و أخيراً\n"
+"وصلة LAN بسيطة (ايثرنت).\n"
+"\n"
+"لن نذكر كل خيارات التهيئة بالتفصيل - فقط تأكد أنه لديك\n"
+"كل المعاملات, مثل عنوان IP, البوابة ا?فتراضية, خادمات DNS, الخ.\n"
+"من موفر خدمة ا?نترنت أو مدير النظام.\n"
+"\n"
+"يمكنك الرجوع الى الفصل الخاص بإعداد وصلة ا?نترنت في\n"
+"``دليل المبتدئ'' للتفاصيل حول التهيئة, أو ببساطة انتظر حتى يتم\n"
+"تثبيت النظام و استخدم البرنامج المذكور هناك ?عداد الوصلة."
#: ../../help.pm:1
#, c-format
@@ -3406,6 +3628,12 @@ msgstr "الخدمات"
msgid "System"
msgstr "النظام"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "%s on %s"
+msgstr "%s على %s"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
@@ -3543,14 +3771,14 @@ msgid "Which is your timezone?"
msgstr "ما هي منطقتك الزمنية؟"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Would you like to try again?"
-msgstr "هل تريد تهيئة الطباعة؟"
+msgstr "هل تريد المحاولة مرةً أخرى؟"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Unable to contact mirror %s"
-msgstr "تعذر تنفيذ: %s"
+msgstr "تعذر ا?تصال بالمرآة %s"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3839,6 +4067,11 @@ msgid "Please choose your type of mouse."
msgstr "فضلاً اختر نوع الفأرة."
#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "مفاتح التشفير"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr "ترقية %s"
@@ -7959,9 +8192,9 @@ msgid "SCSI controllers"
msgstr "متحكمات SCSI"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Firewire controllers"
-msgstr "متحكمات USB"
+msgstr "متحكمات Firewire"
#: ../../harddrake/data.pm:1
#, c-format
@@ -8217,6 +8450,21 @@ msgid ""
"- the new ALSA api that provides many enhanced features but requires using "
"the ALSA library.\n"
msgstr ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -8710,11 +8958,6 @@ msgstr "جاري اعداد الشبكة"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "لا بطاقة شبكة وجدت "
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr "فضلاً اختر موائم الإنترنت الذي تريد استخدامه للإتصال بالإنترنت."
@@ -9355,9 +9598,9 @@ msgid "Start at boot"
msgstr "ابدأ عند الإقلاع"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Assign host name from DHCP address"
-msgstr "فضلا أدخل اسم المستضيف أو عنوان IP.\n"
+msgstr "عيّن اسم المستضيف من عنوان DHCP"
#: ../../network/network.pm:1
#, c-format
@@ -9370,9 +9613,9 @@ msgid "Track network card id (useful for laptops)"
msgstr "تتبع هوية بطاقة الشبكة (مفيد للجاسبات الدفترية)"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "DHCP host name"
-msgstr "اسم المستضيف"
+msgstr "اسم مستضيف DHCP"
#: ../../network/network.pm:1 ../../standalone/drakconnect:1
#: ../../standalone/drakgw:1
@@ -10002,18 +10245,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"تمت تهيئة الطابعات الآتية. انقر نقرة مزدوجة على الطابعة لتغيير اعداداتها "
-"لجعلها طابعة افتراضية أو لرؤية معلومات حولها أو لجعل اطابعة على خادم CUPS "
-"البعيد متوفرة لـStar Office/OpenOffice.org/GIMP."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "نظام الطباعة: "
@@ -10626,6 +10857,11 @@ msgstr "الخيار %s يجب أن يكون رقما صحيحاً!"
#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Printer default settings"
+msgstr "اعدادات الطابعة الإفتراضية"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
"Printer default settings\n"
"\n"
@@ -11107,6 +11343,23 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"أنت على وشك تهيئة الطباعة على حساب في Windows مع كلمة مرور. بسبب خطأ في "
+"هيكلية عميل Samba, يتم وضع كلمة المرور بنص واضح في سطر أوامر عميل Samba "
+"المستخدم لنقل وظيفة الطباعة الى خادم Windows. لذا فإنه يمكن لكل مستخدم على "
+"هذه الماكينة أن يعرض كلمة المرور على الشاشة باستخدام كلمات مرور مثل \"ps "
+"auxwww\".\n"
+"\n"
+"نحن ننصح باستعمال واحد من البدائل التالية (في كل الحا?ت عليك التأكد أن "
+"الماكينات الموجودة فقط على الشبكة المحلية تستطيع الوصول الى خادم Windows, عن "
+"طريق استخدام جدار ناري مثلاً):\n"
+"\n"
+"استخدم حساب دون كلمة مرور على خادم Windows, مثل حساب \"GUEST\" أو حساب خاص "
+"لاستخدامه للطباعة. ? تقم بإزالة الحماية عن طريق كلمات المرور من حسابك الشخصي "
+"أو من حساب مدير النظام.\n"
+"\n"
+"قم بإعداد خادم Windows لجعل الطابعة متوفرة تحت بروتوكول LPD. ثم قم بإعداد "
+"الطباعة من هذه الماكينة مع نوع الوصلة \"%s\" في PrinterDrake.\n"
+"\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12579,15 +12832,15 @@ msgstr "مرحبا بالمخترقين"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
"نجاح MandrakeSoft مبني على مبدأ حرية البرامح. نظام التشغيل الجديد الخاص بك "
"هو نتيجة للتعاون و العمل الجاد من جزء من مجتمع لينكس حول العالم"
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "أهلاً بك في عالم المصادر المفتوحة"
#: ../../share/advertising/01-thanks.pl:1
@@ -12598,215 +12851,164 @@ msgstr "شكراً لاختيارك Mandrake Linux 9.1"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
"لمشاركتنا بمعرفتك و للمساعدة في بناء أدوات لينكس, انضم الى منتديات النقاش "
"التي ستجدها في صفحة \"Community\" على موقعنا"
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr "هل تريد معرفة المزيد عن مجتمع المصادر المفتوحة؟"
-
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Get involved in the Free Software world"
-msgstr "كن جزءاً من عالم البرمجيات الحرة"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
-"اختار Mandrake Linux 9.1 أفضل البرامج لك. تصفح الإنترنت و استعرض الصر "
-"المتحركة باستخدام موزيللا و كونكيورر, أو اقرأ بريدك الألكتروني و تعامل مع "
-"معلوماتك الشخصية باستخدام KMail و Evolution"
+"هل تريد معرفة المزيد عن مجتمع المصادر المفتوحة؟ كن جزءاً من عالم البرمجيات "
+"الحرة"
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
-msgstr "احصل على ما تريد من الإنترنت"
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
"Mandrake Linux 9.1 يمكّنك من استخدام آخر اصدارات البرامج لتشغيل الملفات "
"الصوتية, و تحرير الصور, و تشغيل ملفات الفيديو"
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr "استمتع بالوسائط المتعددة الى أقصى حد!"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr "اكتشف أحدث أدوات الوسائط المتعددة و برامج الرسم!"
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"Mandrake Linux 9.1 يوفر أفضل الألعاب مفتوحة المصدر - أركيد, حركة, "
-"استراتيجية, ..."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "الالعاب"
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
-msgstr "يوفر Mandrake Linux 9.1 أداة قوية لتخصيص و تهيئة جهازك"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "مركز تحكم Mandrake"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "تهيئة خادم طرفيات Mandrake"
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
"يوفر Mandrake Linux 9.1 11 واجهة استخدام يمكن تعديلها كاملةً: كيدي 3, جنوم 2, "
"WindowsMaker, ..."
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "واجهات الإستخدام"
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-"استفيد من كل قوة المترجم GNU gcc 3 بالإضافة الى أفضل بيئات التطوير مفتوحة "
-"المصادر"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "Mandrake Linux 9.1 هي البيئة الأمثل لتطوير البرامج"
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr "البرمجة ولا أسهل"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"حوّل جهازك الى خادم لينكس قوي بنقرات قليلة من الفأرة: خادم ويب, بريد, جدار "
"ناري, موجّه, خادم ملفات و طباعة, ..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr "اجعل جهازك خادماً يعتمد عليه"
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr "هذا المنتج متوفر على موقع MandrakeStore"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-"منتج الجدار الناري هذا يحتوي على مزايا للشبكة توفر كل احتياجاتك الأمنية"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr "منتجات MandrakeSecurity تتضمن Multi Network Firewall (M.N.F.)"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr "حسّن مستوى الأمن"
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"خياراتنا الكثير من حلول نظام لينكس بالإضافة الى العروض الخاصة و المنتجات "
"الأخرىى متوفرة في متجرنا الألكتروني:"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr "متجر MandrakeSoft الرسمي"
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
+#: ../../share/advertising/09-mdksecure.pl:1
+#, fuzzy, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"MandrakeSoft تعمل جنباً الى جنب مع أفضل الشركات التي توفر حلول لحترافية "
"متوافقة مع Mandrake Linux. توجد قائمة بهؤلاء الشركاء في MandrakeStore"
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr "شركاؤنا الاستراتيجيون"
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-"سواء اخترت أن تعلم نفسك بنفسك عبر الإنترنت أو عبر شبكتنا من شركاءنا في مجال "
-"التبريد, يحضرك دليل Linux-Campus لبرنامج شهادة LPI المعترف يها في جميع "
-"أنحاء العالم."
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
+#, c-format
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "حسّن مستوى الأمن"
+
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr "احصل على شهادة معتمدة في لينكس"
+msgid "This product is available on the MandrakeStore Web site."
+msgstr "هذا المنتج متوفر على موقع MandrakeStore"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-"تم عمل برنامج التدريب كي يستجيب الى احتياجات كلٍ من المستخدمين و الخبراء "
-"(مدراء الشبكة و الأنظمة)"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr "اكتشف دليل تدريب MandrakeSoft Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
+msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -12817,57 +13019,36 @@ msgstr ""
"معلوماتك و مساعدة الآخرين بأن تصبح خبيراً معتمَداً في موقعنا للدعم الفني على "
"الإنترنت:"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
"اعثر على حلول لمشاكلك باستخدام بيئة الدعم الفني على الإنترنت في MandrakeSoft"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr "كن خبيراً في MandrakeExpert"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr "كل مشكلة سيتم تتبعها من خبير واحد معتمد من MandrakeSoft."
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr "بيئة على الإنترنت للإستجابة لاحتياجات الدعم الفني للشركات"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert للشركات"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-"تم انشاء MandrakeClub و Mandrake Corporate Club للشركات و المستخدمين الأفراد "
-"الذين يريدون دعم توزيعة لينكس المفضلة لديهم بشكل مباشر مع تمتعهم بمزايا "
-"خاصة. اذا كانت منتجاتنا قد حازت على اعجابك, اذا كانت شركتك تستفيد من "
-"منتجاتنا و تساعدها على زيادة قدرتها التنافسية, اذا كنت تريد دعم تطوير "
-"Mandrake Linux, التحق بنادي MandrakeClub!"
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr "اكتشف MandrakeClub للأفراد و Mandrake Corporate Club للشركات"
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -15506,6 +15687,11 @@ msgstr "معالج First Time"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr "مركز تحكم Mandrake"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr "أداة تقرير العيوب في Mandrake"
@@ -16457,6 +16643,28 @@ msgstr "الواجهة %s (باستخدام الوحدة %s)"
#: ../../standalone/drakgw:1
#, c-format
+msgid "Net Device"
+msgstr "جهاز الشبكة"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+"فضلاً أدخل اسم الواجهة المتصلة بالإنترنت.\n"
+"\n"
+"أمثلة:\n"
+"\t\tppp+ لوصلات المودم و DSL, \n"
+"\t\teth0, أو eth1 لوصلات الكيبل, \n"
+"\t\tippp+ لوصلات ISDN.\n"
+
+#: ../../standalone/drakgw:1
+#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -16827,7 +17035,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -16998,7 +17206,7 @@ msgstr "لم يتم اختيار بطاقة صوت"
#: ../../standalone/draksplash:1
#, c-format
msgid "%s BootSplash (%s) preview"
-msgstr "معاينة (%2$s) BootSplash %1$s"
+msgstr "%s BootSplash (%s) معاينة"
#: ../../standalone/draksplash:1
#, c-format
@@ -17031,6 +17239,11 @@ msgid "choose image file"
msgstr "إختر ملف صورة"
#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "إختر ملف صورة"
+
+#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
msgstr "تهيئة صورة الإقلاع"
@@ -17508,11 +17721,21 @@ msgstr "منفذ طابعة الشبكة"
#: ../../standalone/harddrake2:1
#, c-format
+msgid "the name of the CPU"
+msgstr "اسم المعالج"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "Name"
msgstr "الاسم"
#: ../../standalone/harddrake2:1
#, c-format
+msgid "the number of buttons the mouse has"
+msgstr "عدد أزرار الفأرة"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "Number of buttons"
msgstr "عدد الأزرار"
@@ -17679,7 +17902,7 @@ msgstr "هذا الحقل يصف الجهاز"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -18690,6 +18913,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr "مجموعة من الأدوات للبريد , الأخبار, الإنترنت, نقل الملفات, و المحادثة"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "الالعاب"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "وسائط متعددة - رسوميات"
@@ -18745,6 +18972,662 @@ msgstr "الميزانية الشخصية"
msgid "Programs to manage your finances, such as gnucash"
msgstr "برامج لإدارة ميزانيتك مثل gnucash"
+#~ msgid "no network card found"
+#~ msgstr "لا بطاقة شبكة وجدت "
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "and view animations with Mozilla and Konqueror, or read your mail and "
+#~ "handle your personal information with Evolution and Kmail"
+#~ msgstr ""
+#~ "اختار Mandrake Linux 9.1 أفضل البرامج لك. تصفح الإنترنت و استعرض الصر "
+#~ "المتحركة باستخدام موزيللا و كونكيورر, أو اقرأ بريدك الألكتروني و تعامل مع "
+#~ "معلوماتك الشخصية باستخدام KMail و Evolution"
+
+#~ msgid "Get the most from the Internet"
+#~ msgstr "احصل على ما تريد من الإنترنت"
+
+#~ msgid "Push multimedia to its limits!"
+#~ msgstr "استمتع بالوسائط المتعددة الى أقصى حد!"
+
+#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
+#~ msgstr "اكتشف أحدث أدوات الوسائط المتعددة و برامج الرسم!"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 يوفر أفضل الألعاب مفتوحة المصدر - أركيد, حركة, "
+#~ "استراتيجية, ..."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr "يوفر Mandrake Linux 9.1 أداة قوية لتخصيص و تهيئة جهازك"
+
+#~ msgid "User interfaces"
+#~ msgstr "واجهات الإستخدام"
+
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+#~ "استفيد من كل قوة المترجم GNU gcc 3 بالإضافة الى أفضل بيئات التطوير مفتوحة "
+#~ "المصادر"
+
+#~ msgid "Development simplified"
+#~ msgstr "البرمجة ولا أسهل"
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ "منتج الجدار الناري هذا يحتوي على مزايا للشبكة توفر كل احتياجاتك الأمنية"
+
+#~ msgid ""
+#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
+#~ "N.F.)"
+#~ msgstr "منتجات MandrakeSecurity تتضمن Multi Network Firewall (M.N.F.)"
+
+#~ msgid "Strategic partners"
+#~ msgstr "شركاؤنا الاستراتيجيون"
+
+#~ msgid ""
+#~ "Whether you choose to teach yourself online or via our network of "
+#~ "training partners, the Linux-Campus catalogue prepares you for the "
+#~ "acknowledged LPI certification program (worldwide professional technical "
+#~ "certification)"
+#~ msgstr ""
+#~ "سواء اخترت أن تعلم نفسك بنفسك عبر الإنترنت أو عبر شبكتنا من شركاءنا في "
+#~ "مجال التبريد, يحضرك دليل Linux-Campus لبرنامج شهادة LPI المعترف يها في "
+#~ "جميع أنحاء العالم."
+
+#~ msgid "Certify yourself on Linux"
+#~ msgstr "احصل على شهادة معتمدة في لينكس"
+
+#~ msgid ""
+#~ "The training program has been created to respond to the needs of both end "
+#~ "users and experts (Network and System administrators)"
+#~ msgstr ""
+#~ "تم عمل برنامج التدريب كي يستجيب الى احتياجات كلٍ من المستخدمين و الخبراء "
+#~ "(مدراء الشبكة و الأنظمة)"
+
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr "اكتشف دليل تدريب MandrakeSoft Linux-Campus"
+
+#~ msgid ""
+#~ "MandrakeClub and Mandrake Corporate Club were created for business and "
+#~ "private users of Mandrake Linux who would like to directly support their "
+#~ "favorite Linux distribution while also receiving special privileges. If "
+#~ "you enjoy our products, if your company benefits from our products to "
+#~ "gain a competititve edge, if you want to support Mandrake Linux "
+#~ "development, join MandrakeClub!"
+#~ msgstr ""
+#~ "تم انشاء MandrakeClub و Mandrake Corporate Club للشركات و المستخدمين "
+#~ "الأفراد الذين يريدون دعم توزيعة لينكس المفضلة لديهم بشكل مباشر مع تمتعهم "
+#~ "بمزايا خاصة. اذا كانت منتجاتنا قد حازت على اعجابك, اذا كانت شركتك تستفيد "
+#~ "من منتجاتنا و تساعدها على زيادة قدرتها التنافسية, اذا كنت تريد دعم تطوير "
+#~ "Mandrake Linux, التحق بنادي MandrakeClub!"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr "اكتشف MandrakeClub للأفراد و Mandrake Corporate Club للشركات"
+
+#~ msgid ""
+#~ "As a review, DrakX will present a summary of various information it has\n"
+#~ "about your system. Depending on your installed hardware, you may have "
+#~ "some\n"
+#~ "or all of the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary.\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Country\": check the current country selection. If you are not in "
+#~ "this\n"
+#~ "country, click on the button and choose another one.\n"
+#~ "\n"
+#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+#~ "primary language you have chosen. But here, just as in your choice of a\n"
+#~ "keyboard, you may not be in a country to which the chosen language\n"
+#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
+#~ "configure the clock for the correct timezone.\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation.\n"
+#~ "\n"
+#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+#~ "click that button. This should be reserved to advanced users.\n"
+#~ "\n"
+#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+#~ "interface in \"800x600\" resolution. If that does not suits you, click "
+#~ "on\n"
+#~ "the button to reconfigure your graphical interface.\n"
+#~ "\n"
+#~ " * \"Network\": If you want to configure your Internet or local network\n"
+#~ "access now, you can by clicking on this button.\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. If you notice the sound card displayed is not the one "
+#~ "that\n"
+#~ "is actually present on your system, you can click on the button and "
+#~ "choose\n"
+#~ "another driver.\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. If you have a TV card and it is not detected, click on the button "
+#~ "to\n"
+#~ "try to configure it manually.\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with the card."
+#~ msgstr ""
+#~ "للمراجعة, سيقوم DrakX بعرض ملخص للمعلومات التي لديه\n"
+#~ "عن نظامك. اعتماداً على العتاد الموجود لديك, قد تكون لديك بعض\n"
+#~ "أو كل المدخلات التالية:\n"
+#~ " * \"الفأرة\": تأكد من اعدادات الفأرة الحالية و انقر الزر عند الحاجة الى\n"
+#~ "تغيير ا?عدادات.\n"
+#~ "\n"
+#~ " * \"لوحة المفاتيح\": تأكد من اعدادات خريطة لوحة المفاتيح و انقر\n"
+#~ "الزر عند الحاجة الى تغيير ا?عدادات.\n"
+#~ "\n"
+#~ " * \"البلد\":تأكد من صحة اختيار البلد. ان لم تكن في البلد\n"
+#~ "المذكورة, انقر الزر و اختر بلداً آخر.\n"
+#~ "\n"
+#~ " * \"المنطقة الزمنية\":يقوم DrakX باستنتاج منطقتك الزمنية بناء على\n"
+#~ "اللغة التي اخترتها. لكن هنا, تماماً مثل اختيارك للوحة المفاتيح,\n"
+#~ "قد ? تكون في البلد التي تختص بها اللغة المختارة.\n"
+#~ "ربما تحتاج الى النقر على زر \"المنطقة الزمنية\"لتهيئة\n"
+#~ "الساعة للمنطقة الزمنية الصحيحة.\n"
+#~ "\n"
+#~ " * \"الطابعة\": الضغط على زر \"? طابعةسيفتح معالج\n"
+#~ "تهيئة الطابعات. الق نظرة على الفضل المخصص للطابعات من ``دليل\n"
+#~ "المبتدئ'' لمزيد من المعلومات حول كيفية تهيئة طابعة جديدة. الواجهة\n"
+#~ "المقدمة هنا مماثلة لتلك المستخدمة أثناء التثبيت.\n"
+#~ "\n"
+#~ " * \"محمّل ا?قلاع\": اذا كنت تود تغيير اعدادات محمّل ا?قلاع,\n"
+#~ "انقر هذا الزر. يجب عمل هذا فقط عن طريق المستخدمين المتقدمين.\n"
+#~ "\n"
+#~ " * \"الواجهة الرسومية\": يقوم DrakX افتراضياً بتعيين دقة عرض\n"
+#~ "\"800x600\". اذا لم يناسب هذا احتياجاتك, انقر \n"
+#~ "الزر ?عادة تهيئة الواجهة الرسومية.\n"
+#~ "\n"
+#~ " * \"الشبكة\": اذا كنت تريد تهيئة ا?تصال با?نترنت أو الشبكة المحلية\n"
+#~ "ا?ن, يمكنك فعل هذا عن طريق النقر على هذا الزر.\n"
+#~ "\n"
+#~ " * \"بطاقة الصوت\": اذا تم التحقق من وجود بطاقة صوت في نظامك, سيتم\n"
+#~ "عرضها هنا. اذا وجدت أن بطاقة الصوت المعروضة ليست هي التي توجد\n"
+#~ "فعلياً على نظامك, يمكنك نقر الزر و اختيار\n"
+#~ "مشغل آخر.\n"
+#~ " * \"بطاقة التلفاز\": اذا تم التحقق من وجود بطاقة تلفاز في نظامك, سيتم\n"
+#~ "عرضها هنا. اذا لم يتم اكتشاف بطاقة التلفاز الخاصة بك, انقر الزر\n"
+#~ "لتهيئتها يدوياً.\n"
+#~ "\n"
+#~ " * \"بطاقة ISDN\": اذا تم التحقق من وجود بطاقة ISDN على نظامك, سيتم\n"
+#~ "عرضها هنا. يمكنك النقر على الزر لتغيير المعاملات\n"
+#~ "المرتبطة بالبطاقة."
+
+#~ msgid ""
+#~ "DrakX will first detect any IDE devices present in your computer. It "
+#~ "will\n"
+#~ "also scan for one or more PCI SCSI cards on your system. If a SCSI card "
+#~ "is\n"
+#~ "found, DrakX will automatically install the appropriate driver.\n"
+#~ "\n"
+#~ "Because hardware detection is not foolproof, DrakX will ask you if you "
+#~ "have\n"
+#~ "a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI "
+#~ "cards\n"
+#~ "to choose from. Click \"No\" if you know that you have no SCSI hardware "
+#~ "in\n"
+#~ "your machine. If you're not sure, you can check the list of hardware\n"
+#~ "detected in your machine by selecting \"See hardware info \" and "
+#~ "clicking\n"
+#~ "the \"Next ->\". Examine the list of hardware and then click on the "
+#~ "\"Next\n"
+#~ "->\" button to return to the SCSI interface question.\n"
+#~ "\n"
+#~ "If you had to manually specify your PCI SCSI adapter, DrakX will ask if "
+#~ "you\n"
+#~ "want to configure options for it. You should allow DrakX to probe the\n"
+#~ "hardware for the card-specific options which are needed to initialize "
+#~ "the\n"
+#~ "adapter. Most of the time, DrakX will get through this step without any\n"
+#~ "issues.\n"
+#~ "\n"
+#~ "If DrakX is not able to probe for the options to automatically determine\n"
+#~ "which parameters need to be passed to the hardware, you'll need to "
+#~ "manually\n"
+#~ "configure the driver."
+#~ msgstr ""
+#~ "سيقوم DrakX أو?ً بالتحقق من وجود أجهزة IDE على هذا الكمبيوتر. سيقوم\n"
+#~ "أيضاً بالبحث عن بطاقات PCI SCSI على نظامك. اذا تم ايجاد بطاقة\n"
+#~ "SCSI,سيقوم DrakX بتثبيت المشغل المناسب أوتوماتيكياً.\n"
+#~ "\n"
+#~ "و ?ن عملية التحقق من العتاد ليست خالية من ا?خطاء, سيقوم DrakX بسؤالك عمّا "
+#~ "اذا\n"
+#~ "كانت لديك بطاقة PCI SCSI. النقر على \"نعم\" سيعرض قائمة ببطاقات SCSI\n"
+#~ "لتختار منها. انقر \"?\" اذا كنت تعلم أنه ? توجد بطاقات SCSI على\n"
+#~ "ماكينتك. اذا لم تكن متأكداً, يمكنك التأكد من قائمة العتاد التي تم ايجادها\n"
+#~ "على ماكينتك عن طريق اختيار \"عرض معلومات العتاد\" و نقر\n"
+#~ "\"التالي->\". تأكد من قائمة العتاد ثم اضغط على زر \"التالي\n"
+#~ "->\" للعودة الى شؤال واجهة SCSI.\n"
+#~ "\n"
+#~ "اذا اضطررت الى تحديد موائم PCI SCSI يدوياً, فسيسألك DrakX عمّا اذا كنت\n"
+#~ "تريد تهيئة الخيارات الخاصة بها. يجب أن تسمح لـ DrakX بأن يتحقق من\n"
+#~ "العتاد للخيارات الخاصة بالبطاقة و التي يٌُحتاج اليها ليتم بدء\n"
+#~ "عمل البطاقة. في أغلب ا?وقات, سيقوم DrakX بالخطوة دون أي\n"
+#~ "مشاكل.\n"
+#~ "\n"
+#~ "اذا لم يتمكن DrakX من التعرف على الخيارات الضروريةلتمريرها\n"
+#~ "الى العتاد, ففي هذه الحال ستحتاج الى تهيئة\n"
+#~ "المشغّل يدوياً."
+
+#~ msgid ""
+#~ "Now, it's time to select a printing system for your computer. Other OSs "
+#~ "may\n"
+#~ "offer you one, but Mandrake Linux offers two. Each of the printing "
+#~ "systems\n"
+#~ "is best for a particular type of configuration.\n"
+#~ "\n"
+#~ " * \"pdq\" -- which is an acronym for ``print, don't queue'', is the "
+#~ "choice\n"
+#~ "if you have a direct connection to your printer, you want to be able to\n"
+#~ "panic out of printer jams, and you do not have networked printers. "
+#~ "(\"pdq\n"
+#~ "\" will handle only very simple network cases and is somewhat slow when\n"
+#~ "used with networks.) It's recommended that you use \"pdq \" if this is "
+#~ "your\n"
+#~ "first experience with GNU/Linux.\n"
+#~ "\n"
+#~ " * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice "
+#~ "for\n"
+#~ "printing to your local printer or to one halfway around the planet. It "
+#~ "is\n"
+#~ "simple to configure and can act as a server or a client for the ancient\n"
+#~ "\"lpd \" printing system, so it compatible with older operating systems\n"
+#~ "that may still need print services. While quite powerful, the basic "
+#~ "setup\n"
+#~ "is almost as easy as \"pdq\". If you need to emulate a \"lpd\" server, "
+#~ "make\n"
+#~ "sure to turn on the \"cups-lpd \" daemon. \"CUPS\" includes graphical\n"
+#~ "front-ends for printing or choosing printer options and for managing the\n"
+#~ "printer.\n"
+#~ "\n"
+#~ "If you make a choice now, and later find that you don't like your "
+#~ "printing\n"
+#~ "system you may change it by running PrinterDrake from the Mandrake "
+#~ "Control\n"
+#~ "Center and clicking the expert button."
+#~ msgstr ""
+#~ "ا?ن, حان وقت اختيار نظام الطباعة لنظامك. توفر أنظمة التشغيل ا?خرى\n"
+#~ "نظام طباعة واحد, لكن Mandrake Linux يوفر لك نظامين. كل نظام مناسب\n"
+#~ "لنوغ معين من التهيئة.\n"
+#~ "\n"
+#~ " * \"pdq\"--و هو اختصار لـ``print, don't queue'' أي ``اطبع و ? تصف'', هذا "
+#~ "هو الخيار ا?مثل\n"
+#~ "اذا كانت لديك وصلة مباشرة بالطابعة, و تريد تفادي أي ارتباك في الطابعة\n"
+#~ "و لديك طابعات على الشبكة.(يقوم \"pdq\" بالتعامل مع حا?ت الشبكة البسيطة\n"
+#~ "و يعيبه البطئ عند ا?ستخدام مع الشبكات). من ا?فضل أن تستخدم \"pdq\" اذا.\n"
+#~ "كانت هذه تجربتك ا?ولى مع نظام لينكس.\n"
+#~ "\n"
+#~ " * \"CUPS\" - ``Common UNIX Printing System'', هو الخيار ا?مثل\n"
+#~ "للطباعة على طابعتك المحلية أو حتى على طابعة في النصف ا?خر من الكوكب. انه\n"
+#~ "سهل ا?عداد و يمكن أن يتصرف كخادم أو كعميل ?نظمة طباعة \"lpd\"\n"
+#~ "القديمة, لذا فإنه متوافق مع أنظمة التشغيل القديمة\n"
+#~ "التي ? تزال تحتاج الى خدمات الطباعة.بينما التهيئة سهلة\n"
+#~ "و قوية مثل \"pdq\". اذا كنت تحتاج الى محاكاة خادم \"lpd\", تأكد\n"
+#~ "من تشغيل مراقب \"cups-lpd\". يحتوي CUPS على واجهات\n"
+#~ "رسومية للطباعة أو اختيار خيارات الطابعة و إدارة\n"
+#~ "الطابعة.\n"
+#~ "\n"
+#~ "اذا قمت يتقرير اختيارك ا?ن, ثم لم يعجبك نظام الطباعة\n"
+#~ "فيما بعد, يمكنك تغييره عن طريق تشغيل PrinterDrake من مركز تحكم Mandrake\n"
+#~ "و النقر على زر الخبير."
+
+#~ msgid ""
+#~ "Your choice of preferred language will affect the language of the\n"
+#~ "documentation, the installer and the system in general. Select first the\n"
+#~ "region you are located in, and then the language you speak.\n"
+#~ "\n"
+#~ "Clicking on the \"Advanced\" button will allow you to select other\n"
+#~ "languages to be installed on your workstation, thereby installing the\n"
+#~ "language-specific files for system documentation and applications. For\n"
+#~ "example, if you will host users from Spain on your machine, select "
+#~ "English\n"
+#~ "as the default language in the tree view and \"Espanol\" in the Advanced\n"
+#~ "section.\n"
+#~ "\n"
+#~ "Note that you're not limited to choosing a single additional language. "
+#~ "Once\n"
+#~ "you have selected additional locales, click the \"Next ->\" button to\n"
+#~ "continue.\n"
+#~ "\n"
+#~ "To switch between the various languages installed on the system, you can\n"
+#~ "launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
+#~ "language used by the entire system. Running the command as a regular "
+#~ "user\n"
+#~ "will only change the language settings for that particular user."
+#~ msgstr ""
+#~ "اختيارك للغة المفضلة سيؤثر على لغة وثائق المساعدة\n"
+#~ "و برنامج التثبيت و النظام بشكل عام. أو?ً اختر المنطقة التي\n"
+#~ "تتواجد فيها, ثم اللغة التي تتحدث بها.\n"
+#~ "\n"
+#~ "ضغط زر \"متقدم\" سيسمح لك باختيار لغات\n"
+#~ "أخرى ليتم تثبيتها على محطة العمل الخاصة بك,و من ثم\n"
+#~ "تثبيت الملفات الخاصة باللغات لوثائق المساعدة و التطبيقات, مثلاً\n"
+#~ "اذا كنت ستستضيف مستخدمين من أسبانيا على ماكينتك, اختر ا?نجليزية\n"
+#~ "كلغة افتراضية في النمط الشجري و \"ا?سبانية\" في القسم\n"
+#~ "المتقدم.\n"
+#~ "?حظ أنك لست مقيداً باختيار لغة واحدة اضافية. حال\n"
+#~ "اختيارك للإعدادات المحلية, اضغط زر \"التالي ->\"\n"
+#~ "للمتابعة.\n"
+#~ "\n"
+#~ "للتغيير بين اللغات المتعددة المثبتة على النظام, يمكنك\n"
+#~ "تشغيل ا?مر \"/usr/sbin/localedrake\"كمستخدم جذر لتغيير\n"
+#~ "اللغة المستخدمة عن طريق النظام ككل. تشغيل ا?مر كمستخدم عادي\n"
+#~ "سيغير فقط اعدادات اللغة لهذا المستخدم فقط."
+
+#~ msgid ""
+#~ "\"Country\": check the current country selection. If you are not in this\n"
+#~ "country, click on the button and choose another one."
+#~ msgstr ""
+#~ "\"البلد\": تأكد من اختيار البلد الحالي. اذا لم تكن في هذا\n"
+#~ "البلد, اضغط على الزر و اختر بلداً آخر."
+
+#~ msgid ""
+#~ "At this point, DrakX will allow you to choose the security level desired\n"
+#~ "for the machine. As a rule of thumb, the security level should be set\n"
+#~ "higher if the machine will contain crucial data, or if it will be a "
+#~ "machine\n"
+#~ "directly exposed to the Internet. The trade-off of a higher security "
+#~ "level\n"
+#~ "is generally obtained at the expense of ease of use. Refer to the \"msec"
+#~ "\"\n"
+#~ "chapter of the ``Command Line Manual'' to get more information about the\n"
+#~ "meaning of these levels.\n"
+#~ "\n"
+#~ "If you do not know what to choose, keep the default option."
+#~ msgstr ""
+#~ "عند هذه النقطة, سيسمح لك DrakX باختيار المستوى الأمني الذي ترغب به\n"
+#~ "لهذه الماكينة. بديهياً, يجب تعيين مستوى أمني\n"
+#~ "عالٍ اذا كانت الماكينة تحتوي على معلومات هامة, أو اذا كانت الماكينة\n"
+#~ "ستُستخدم للإتصال بالإنترنت. ان استخدام مستوى أمني عالٍ يأتي\n"
+#~ "عادة على حساب سهولة الإستخدام. راجع فضل \"msec\"\n"
+#~ "في ``دليل سطر الأوامر'' للحصول على مزيد من المعلومات حول\n"
+#~ "معنى هذه المستويات.\n"
+#~ "\n"
+#~ "اذا لم تكن تريد الإختيار, احفظ الاختيار الإفتراضي."
+
+#~ msgid ""
+#~ "At the time you are installing Mandrake Linux, it is likely that some\n"
+#~ "packages have been updated since the initial release. Bugs may have been\n"
+#~ "fixed, security issues resolved. To allow you to benefit from these\n"
+#~ "updates, you are now able to download them from the Internet. Choose\n"
+#~ "\"Yes\" if you have a working Internet connection, or \"No\" if you "
+#~ "prefer\n"
+#~ "to install updated packages later.\n"
+#~ "\n"
+#~ "Choosing \"Yes\" displays a list of places from which updates can be\n"
+#~ "retrieved. Choose the one nearest you. A package-selection tree will\n"
+#~ "appear: review the selection, and press \"Install\" to retrieve and "
+#~ "install\n"
+#~ "the selected package( s), or \"Cancel\" to abort."
+#~ msgstr ""
+#~ "في الوقت الذي تقوم فيه بتثبيت Mandrake Linux, قد يكون تم تحديث\n"
+#~ "بعض الحزم منذ ا?صدار المبدئي, ربما يكون تم اصلاح بعض العيوب\n"
+#~ "أو تم حل المشاكل ا?منية. لكي تستفيد من هذه التحديثات,يمكنك\n"
+#~ "ا?ن تنزيل هذه التحديثات عبر ا?نترنت. اختر\n"
+#~ "\"نعم\" اذا كانت لديك وصلة انترنت عاملة, أو \"?\" اذا كنت تفضل\n"
+#~ "تثبيت هذه التحديثات ?حقاً.\n"
+#~ "\n"
+#~ "اختيار \"نعم\" يعرض قائمة با?ماكن التي يمكن منها الحصول\n"
+#~ "على التحديثات. اختر المكان الأقرب اليك. سيتم عرض قائمة بالحزم\n"
+#~ "راجع اختياراتك, ثم اضغط \"ثبّت\" لتنزيل و تثبيت\n"
+#~ "الحزم المختارة, أو \"الغاء\" ?حباط التحديث."
+
+#~ msgid ""
+#~ "At this point, you need to decide where you want to install the Mandrake\n"
+#~ "Linux operating system on your hard drive. If your hard drive is empty "
+#~ "or\n"
+#~ "if an existing operating system is using all the available space you "
+#~ "will\n"
+#~ "have to partition the drive. Basically, partitioning a hard drive "
+#~ "consists\n"
+#~ "of logically dividing it to create the space needed to install your new\n"
+#~ "Mandrake Linux system.\n"
+#~ "\n"
+#~ "Because the process of partitioning a hard drive is usually irreversible\n"
+#~ "and can lead to lost data if there is an existing operating system "
+#~ "already\n"
+#~ "installed on the drive, partitioning can be intimidating and stressful "
+#~ "if\n"
+#~ "you are an inexperienced user. Fortunately, DrakX includes a wizard "
+#~ "which\n"
+#~ "simplifies this process. Before continuing with this step, read through "
+#~ "the\n"
+#~ "rest of this section and above all, take your time.\n"
+#~ "\n"
+#~ "Depending on your hard drive configuration, several options are "
+#~ "available:\n"
+#~ "\n"
+#~ " * \"Use free space\": this option will perform an automatic "
+#~ "partitioning\n"
+#~ "of your blank drive(s). If you use this option there will be no further\n"
+#~ "prompts.\n"
+#~ "\n"
+#~ " * \"Use existing partition\": the wizard has detected one or more "
+#~ "existing\n"
+#~ "Linux partitions on your hard drive. If you want to use them, choose "
+#~ "this\n"
+#~ "option. You will then be asked to choose the mount points associated "
+#~ "with\n"
+#~ "each of the partitions. The legacy mount points are selected by default,\n"
+#~ "and for the most part it's a good idea to keep them.\n"
+#~ "\n"
+#~ " * \"Use the free space on the Windows partition\": if Microsoft Windows "
+#~ "is\n"
+#~ "installed on your hard drive and takes all the space available on it, "
+#~ "you\n"
+#~ "have to create free space for Linux data. To do so, you can delete your\n"
+#~ "Microsoft Windows partition and data (see `` Erase entire disk'' "
+#~ "solution)\n"
+#~ "or resize your Microsoft Windows FAT partition. Resizing can be "
+#~ "performed\n"
+#~ "without the loss of any data, provided you previously defragment the\n"
+#~ "Windows partition and that it uses the FAT format. Backing up your data "
+#~ "is\n"
+#~ "strongly recommended.. Using this option is recommended if you want to "
+#~ "use\n"
+#~ "both Mandrake Linux and Microsoft Windows on the same computer.\n"
+#~ "\n"
+#~ " Before choosing this option, please understand that after this\n"
+#~ "procedure, the size of your Microsoft Windows partition will be smaller\n"
+#~ "then when you started. You will have less free space under Microsoft\n"
+#~ "Windows to store your data or to install new software.\n"
+#~ "\n"
+#~ " * \"Erase entire disk\": if you want to delete all data and all "
+#~ "partitions\n"
+#~ "present on your hard drive and replace them with your new Mandrake Linux\n"
+#~ "system, choose this option. Be careful, because you will not be able to\n"
+#~ "undo your choice after you confirm.\n"
+#~ "\n"
+#~ " !! If you choose this option, all data on your disk will be "
+#~ "deleted. !!\n"
+#~ "\n"
+#~ " * \"Remove Windows\": this will simply erase everything on the drive "
+#~ "and\n"
+#~ "begin fresh, partitioning everything from scratch. All data on your disk\n"
+#~ "will be lost.\n"
+#~ "\n"
+#~ " !! If you choose this option, all data on your disk will be lost. !!\n"
+#~ "\n"
+#~ " * \"Custom disk partitionning\": choose this option if you want to\n"
+#~ "manually partition your hard drive. Be careful -- it is a powerful but\n"
+#~ "dangerous choice and you can very easily lose all your data. That's why\n"
+#~ "this option is really only recommended if you have done something like "
+#~ "this\n"
+#~ "before and have some experience. For more instructions on how to use the\n"
+#~ "DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
+#~ "the ``Starter Guide''."
+#~ msgstr ""
+#~ "في هذه النقطة, عليك أن تقرر أين تريد تثبيت نظام\n"
+#~ "التشغيل Mandrake Linux على القرص الصلب الخاص بك. اذا كان القرص الصلب\n"
+#~ "قارغاً أو أن نظام تشغيل آخر يستخدم كل المساحة المتوفرة فسوف\n"
+#~ "تحتاج الى تجزئة القرص الصلب. بشكل عام,. فإن تجزئةالقرص الصلب\n"
+#~ "تعني تقسيم القرص الصلب منطقياً ?نشاء المساحة المطلوبة لتثبيت\n"
+#~ "نظام Mandrake Linux الجديد الخاص بك.\n"
+#~ "\n"
+#~ "?ن عملية تقسيم القرص الصلب غير قابلة للتراجع عادةًَ\n"
+#~ "كما أنها قد تتسبب في خسارة للبيانات اذا كان هناك نظام تشغيل\n"
+#~ "آخر مثبت على هذا القرص الصلب, تجزئة القرص قد يكون مزعجاً و مثيراً للضغط\n"
+#~ "اذا كنت مستخدماً محترقاً. من حسن الحظ, يوفر DrakX معالجاً يسهل العملية.\n"
+#~ "قبل متابعة هذه الخطوة, اقرأ بقية هذا القسم و قبل كل شئ, خذ وقتك.\n"
+#~ "\n"
+#~ "اعتماداً على اعدادات القرص الصلب, تتوفر العديد من الخيارات:\n"
+#~ "\n"
+#~ " * \"استخدام المساحة الفارغة\": هذا الخيار سيقوم بعملية تجزئة آلية\n"
+#~ "للأقراص الصلبة الفارغة. اذا استخدمت هذا الخيار, لن تكون هناك اشعارات\n"
+#~ "أخرى.\n"
+#~ " * \"استخدام التجزئة الموجودة\": يكون المعالج قد اكتشف تجزئة أو أكثر من\n"
+#~ "تجزئات لينكس على القرص الصلب. اذا كنت تريد استخدامها, اختر هذا\n"
+#~ "الخيار. سيتم بعد ذلك سؤالك عن نقاط التحميل المرتبطة بكل\n"
+#~ "تجزئة. يتم اختيار نقاط التجزئة المعتادة افتراضياً,\n"
+#~ "و ?غلب المستخدمين فإنها فكرة جيدة تركها كما هي.\n"
+#~ "\n"
+#~ " * \"استخدام المساحة الفارغة على تجزئة Windows\": اذا\n"
+#~ "كان Microsoft Windows مثبت على القرص الصلب و يحتل كل المساحة التي عليه,\n"
+#~ "ستحتاج الى انشاء مساحة فارغة لبيانات لينكس. لعمل ذلك يمكنك حذف\n"
+#~ "تجزئة و بيانات Microsoft Windows (انظر حل ``ازالة كل القرص'')\n"
+#~ "أو قم بإعادة تحجيم تجزئة Microsoft Windows FAT. يمكن عمل اعادة التحجيم\n"
+#~ "دون أي خسارة للبيانات, لكن يجب عليك قبل ذلك بإزالة تجزئة القرص "
+#~ "(defragmenting)\n"
+#~ "الذي يستخدم تنسيق FAT. نسخ بياناتك احتياطياً يفضّل\n"
+#~ "بشدة.. استخدام هذا الخيار منصوح به اذا كنت تريد استخدام \n"
+#~ "كل من Mandrake Linux و Microsoft Windows على نفس الكمبيوتر.\n"
+#~ "\n"
+#~ " قبل اختيارك لهذا الخيار, عليك أن تعلم أنه بعد هذا\n"
+#~ "ا?جراء, ستتقلص مساحة تجزئة Microsoft Windows عن ما قبل\n"
+#~ "ستكون لديك مساحة فارغة أقل على Microsoft Windows\n"
+#~ "لتخزين بياناتك و تثبيت برامج جديدة.\n"
+#~ "\n"
+#~ " * \"مسح كل القرص\": اذا كنت تريد حذف كل البيانات و كل التجزئات\n"
+#~ "الموجودة على القرص الصلب و ابدالها بنظام Mandrake Linux الجديد\n"
+#~ "الخاص بك, اختر هذا الخيار. كن حذراً, ?نك لن تتمكن من التراجع\n"
+#~ "بعد أن تقوم بالتأكيد.\n"
+#~ "\n"
+#~ " !!! اذا اخترت هذا الخيار سيتم حذف كل البيانات الموجودة على القرص. !!\n"
+#~ "\n"
+#~ " * \"حذف Windows\": سيقوم هذا الخيار ببساطة بمحو كل شء على القرص و\n"
+#~ "يبدأ التثبيت من الصفر. ستضيع كل البيانات على\n"
+#~ "القرص.\n"
+#~ "\n"
+#~ " * \"تجزئة مخصصة للقرص\": اختر هذا الخيار اذا كنت تريد\n"
+#~ "تقسيم القرص الصلب بشكل يدوي. كن حذراً -- هذا الخيار قوي\n"
+#~ "لكنه خطير و من الممكن أن تفقد بياناتك بسهولة. لهذا فإن\n"
+#~ "هذا الخيار مفضّل فقط اذا كنت قد قمت بشئ مماثل من فبل \n"
+#~ "و لديك بعض الخبرة. لمزيد من التعليمات حول استخدام أداة DiskDrake\n"
+#~ "راجع قسم ``ادارة التجزئات'' في\n"
+#~ "``دليل المبتدئ''."
+
+#~ msgid ""
+#~ "This step is used to choose which services you wish to start at boot "
+#~ "time.\n"
+#~ "\n"
+#~ "DrakX will list all the services available on the current installation.\n"
+#~ "Review each one carefully and uncheck those which are not always needed "
+#~ "at\n"
+#~ "boot time.\n"
+#~ "\n"
+#~ "A short explanatory text will be displayed about a service when it is\n"
+#~ "selected. However, if you are not sure whether a service is useful or "
+#~ "not,\n"
+#~ "it is safer to leave the default behavior.\n"
+#~ "\n"
+#~ "!! At this stage, be very careful if you intend to use your machine as a\n"
+#~ "server: you will probably not want to start any services that you do not\n"
+#~ "need. Please remember that several services can be dangerous if they are\n"
+#~ "enabled on a server. In general, select only the services you really "
+#~ "need.\n"
+#~ "!!"
+#~ msgstr ""
+#~ "هذه الخطوة هي ?ختيار الخدمات التي سيتم تشغيلها عند بدء التشغيل.\n"
+#~ "\n"
+#~ "سيقوم DrakX بعرض قائمة بكل الخدمات المتوفرة في هذا التثبيت.\n"
+#~ "راجع كل خدمة بتمعن و قم بإزالة التأشير من تلك الخدمات التي ? تحتاجها\n"
+#~ "بشكل دائم عند ا?قلاع.\n"
+#~ "\n"
+#~ "سيتم عرض شرح قصير حول الخدمة عند\n"
+#~ "اختيارها. عموماً, اذا لم تكن متأكد ما اذا كانت الخدمة مفيدة أم ?,\n"
+#~ "فمن ا?فضل ترك الخيار ا?فتراضي.\n"
+#~ "\n"
+#~ "!! في هذه المرحلة كن حذراُ اذا كنت تريد استخدام ماكينتك\n"
+#~ "كخادم: ربما لن تريد بدء أي خدمات ? تحتاجها.\n"
+#~ "فضلاً تذكر أن العديد من الخدمات قد تكون خطرة اذا كانت\n"
+#~ "متاحة على الخادم. بشكل عام اختر فقط الخدمات التي تحتاجها.\n"
+#~ "!!"
+
+#~ msgid ""
+#~ "\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation."
+#~ msgstr ""
+#~ "\"الطابعة\": النقر على \"لا طابعة\" سيفتح معالج تهيئة\n"
+#~ "الطابعة. اقرأ الفضل المختص في ``دليل المبتدئ''\n"
+#~ "لكزيد من المعلومات عن كيفية اعداد طابعة جديدة. الواجهة\n"
+#~ "هناك مماثلة لتلك المستخدمة أثناء التثبين."
+
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "تمت تهيئة الطابعات الآتية. انقر نقرة مزدوجة على الطابعة لتغيير اعداداتها "
+#~ "لجعلها طابعة افتراضية أو لرؤية معلومات حولها أو لجعل اطابعة على خادم CUPS "
+#~ "البعيد متوفرة لـStar Office/OpenOffice.org/GIMP."
+
+#~ msgid ""
+#~ "You are about to configure your computer to install a PXE server as a "
+#~ "DHCP server\n"
+#~ "and a TFTP server to build an installation server.\n"
+#~ "With that feature, other computers on your local network will be "
+#~ "installable using from this computer.\n"
+#~ "\n"
+#~ "Make sure you have configured your Network/Internet access using "
+#~ "drakconnect before going any further.\n"
+#~ "\n"
+#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
+#~ "(LAN)."
+#~ msgstr ""
+#~ "أنت على وشك تهيئة جهازك لتثبيت خادم PXE كخادم DHCP\n"
+#~ "و خادم TFTP لبناء خادم تثبيت.\n"
+#~ "باستخدام هذه الميزة تكون الحواسيب الأخرى على الشبكة المحلية قابلة للتثبيت "
+#~ "من هذا الجهاز.\n"
+#~ "\n"
+#~ "تأكد من أنك قمت بتهيئة الشبكة/الإنترنت باستخدام drakconnect قبل "
+#~ "المتابعة.\n"
+#~ "\n"
+#~ "ملحوظة: تحتاج الى موائم شبكة مخصص لإعداد الشبكة المحلية (LAN)."
+
+#~ msgid ""
+#~ "The cpu frequency in Mhz (Mega herz which in first approximation may be "
+#~ "coarsely assimilated to number of instructions the cpu is able to execute "
+#~ "per second)"
+#~ msgstr ""
+#~ "تردد المعالج بالميغاهيرتز (الميغاهيرتز تشير الى العدد التقريبي من "
+#~ "التعليمات التي يستطيع المعالج تنفيذها في الثانية الواحدة)"
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 930b3d489..d41c83207 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2001-09-01 22:26GMT +0200\n"
"Last-Translator: Vasif İsmayıloğlu MD <azerb_linux@hotmail.com>\n"
"Language-Team: Azerbaijani Turkish <linuxaz@azerimal.net>\n"
@@ -1122,50 +1122,65 @@ msgstr ""
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
#: ../../help.pm:1
@@ -1375,13 +1390,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1430,7 +1440,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1468,32 +1478,7 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+"(\"On Floppy\")."
msgstr ""
#: ../../help.pm:1
@@ -1645,9 +1630,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1704,7 +1694,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -1924,9 +1916,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -1937,14 +1927,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
#: ../../help.pm:1
@@ -2012,7 +2002,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2070,7 +2060,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2095,13 +2085,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"Bu nöqtədə Linuks Mandrakeni sabit diskinizdə haraya quracağınıza\n"
"qərar verəcəksiniz. Əgər diskiniz boş isə və ya bir başqa sistem\n"
@@ -2155,35 +2145,6 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
@@ -2310,7 +2271,8 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2338,7 +2300,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -3281,9 +3243,9 @@ msgstr "Başlanğıc addımı `%s'\n"
#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Help"
-msgstr "/_Yardım"
+msgstr "Yardım"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
@@ -3768,6 +3730,12 @@ msgstr "avadanlıq"
msgid "System"
msgstr "Sistem modu"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "Qapı"
+
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
@@ -4189,6 +4157,11 @@ msgstr "Xahiş edirik siçanınızın növünü seçin."
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Parollar uyğun gəlmir"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "Güncəlləmə"
@@ -8906,11 +8879,6 @@ msgstr "Şəbəkə Qurğuları"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "şəbəkə kartı tapılmadı"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr "İnternetə bağlanmaq üçün şəbəkə adapteri seçin."
@@ -10172,17 +10140,6 @@ msgstr ""
"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
-"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-
-#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing system: "
msgstr ""
@@ -10704,6 +10661,11 @@ msgid "Option %s must be an integer number!"
msgstr ""
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Çap Edici Bağlantısı"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -12336,13 +12298,13 @@ msgstr "Krakerlərə xoşgəlmişsiniz"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
@@ -12353,190 +12315,150 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
+msgid ""
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
#: ../../share/advertising/02-community.pl:1
-#, fuzzy, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Bütün dünya"
-
-#: ../../share/advertising/03-internet.pl:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+msgid "Build the future of Linux!"
msgstr ""
-#: ../../share/advertising/03-internet.pl:1
-#, fuzzy, c-format
-msgid "Get the most from the Internet"
-msgstr "İnternetə bağlan"
-
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../share/advertising/05-games.pl:1
-#, c-format
-msgid "Games"
-msgstr "Oyunlar"
-
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Control Center"
-msgstr "İdarə Mərkəzi"
-
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, fuzzy, c-format
-msgid "User interfaces"
-msgstr "Şəbəkə ara üzü"
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "İnternet qurğuları"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "A customizable environment"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
-#, fuzzy, c-format
-msgid "Development simplified"
-msgstr "Təcrübi"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "This product is available on MandrakeStore website"
+msgid ""
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
+msgid "Turn your computer into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies\", are available on our e-store:"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "Optimize your security"
+msgid "The official MandrakeSoft Store"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
-"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Strategic partners"
+msgid "Optimize your security by using Mandrake Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+msgid "This product is available on the MandrakeStore Web site."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
-#, c-format
-msgid "Certify yourself on Linux"
-msgstr ""
-
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -12544,51 +12466,35 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, fuzzy, c-format
msgid "Become a MandrakeExpert"
msgstr "Usta"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, fuzzy, c-format
msgid "MandrakeExpert Corporate"
msgstr "Usta"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -14783,6 +14689,11 @@ msgid "First Time Wizard"
msgstr "İlk Dəfə Sehirbazına Xoş Gəldiniz"
#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Mandrake Control Center"
+msgstr "İdarə Mərkəzi"
+
+#: ../../standalone/drakbug:1
#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -15670,6 +15581,22 @@ msgstr "Ara Üz %s (%s modulu işlədilir)"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Çap Edici Vericisi"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -16018,7 +15945,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -16186,6 +16113,11 @@ msgstr "Monitorunuzu seçin"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
+msgid "choose image"
+msgstr "Monitorunuzu seçin"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
msgid "Configure bootsplash picture"
msgstr "Xidmətləri qur"
@@ -16459,7 +16391,7 @@ msgstr "Ümumi"
#: ../../standalone/harddrake2:1
#, c-format
msgid "unknown"
-msgstr ""
+msgstr "bilinməyən"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
@@ -16623,12 +16555,22 @@ msgid "network printer port"
msgstr "Şəbəkə Çap Edicisi (soket) "
#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the name of the CPU"
+msgstr ""
+
+#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Name"
msgstr "Ad: "
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "2 düyməli"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
msgid "Number of buttons"
msgstr "2 düyməli"
@@ -16790,7 +16732,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -17764,6 +17706,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr "Məktub, xəbərlər, fayl daşınması, chat vasitələri"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Oyunlar"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimedya - Qrafika"
@@ -17820,6 +17766,35 @@ msgstr "Şəxsi Maliyyə"
msgid "Programs to manage your finances, such as gnucash"
msgstr "Şəxsi maliyyə idarəçiləri, məsələn gnucash"
+#~ msgid "no network card found"
+#~ msgstr "şəbəkə kartı tapılmadı"
+
+#, fuzzy
+#~ msgid "Get involved in the Free Software world"
+#~ msgstr "Bütün dünya"
+
+#, fuzzy
+#~ msgid "Get the most from the Internet"
+#~ msgstr "İnternetə bağlan"
+
+#, fuzzy
+#~ msgid "User interfaces"
+#~ msgstr "Şəbəkə ara üzü"
+
+#, fuzzy
+#~ msgid "Development simplified"
+#~ msgstr "Təcrübi"
+
+#, fuzzy
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "Aşağıda yazıçıdakı növbələr verilmişdir.\n"
+#~ "Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index f9e173aae..fadf39501 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,12 +5,12 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\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-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../../any.pm:1
@@ -34,7 +34,7 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, c-format
msgid "Cancel"
-msgstr ""
+msgstr "Адмена"
#: ../../any.pm:1
#, c-format
@@ -65,28 +65,28 @@ msgstr ""
#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
-msgstr " "
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
#, c-format
msgid "Custom"
-msgstr " "
+msgstr "Па выбару"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "Allow all users"
-msgstr " i"
+msgstr "Дадаць карыстальнiка"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "No sharing"
-msgstr ""
+msgstr "Чакаецца"
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "More"
-msgstr ""
+msgstr "Перанос"
#: ../../any.pm:1
#, c-format
@@ -96,17 +96,17 @@ msgstr ""
#: ../../any.pm:1
#, fuzzy, c-format
msgid "Please choose your country."
-msgstr "i , ."
+msgstr "калi ласка, пазначце тып вашай мышы."
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Country"
-msgstr "i"
+msgstr "Манцiраванне"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "All languages"
-msgstr " "
+msgstr "Выбар мовы"
#: ../../any.pm:1
#, c-format
@@ -119,54 +119,54 @@ msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
-msgstr " , i "
+msgstr "Вы можаце абраць іншыя мовы, якiя будуць даступны пасля ўсталявання"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "Please choose a language to use."
-msgstr "i , ."
+msgstr "Калi ласка, абярыце мову для карыстання."
#: ../../any.pm:1
#, c-format
msgid "Choose the window manager to run:"
-msgstr " :"
+msgstr "Абярыце мэнэджар вокнаў:"
#: ../../any.pm:1
#, c-format
msgid "Choose the default user:"
-msgstr " i:"
+msgstr "Абярыце асноўнага карыстальнiка:"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "Do you want to use this feature?"
-msgstr " aboot?"
+msgstr "Вы жадаеце выкарыстоўваць aboot?"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-" i i i \n"
-" i. i , ii \"\"."
+"Можна настроiць сiстэму для аўтаматычнага ўваходу ў сiстэму для\n"
+"аднаго карыстальнiка. Калi Вы не жадаеце гэтага, нацiснiце \"Адмена\"."
#: ../../any.pm:1
#, c-format
msgid "Autologin"
-msgstr " i"
+msgstr "Аўтаматычны ўваход у сiстэму"
#: ../../any.pm:1
#, c-format
msgid "Icon"
-msgstr "i"
+msgstr "Пiктаграма"
#: ../../any.pm:1
#, c-format
msgid "Shell"
-msgstr ":"
+msgstr "Абалонка:"
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Password (again)"
-msgstr " "
+msgstr "Паўтарыце пароль"
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
@@ -174,22 +174,22 @@ msgstr " "
#: ../../standalone/drakconnect:1
#, c-format
msgid "Password"
-msgstr ""
+msgstr "Пароль"
#: ../../any.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "User name"
-msgstr "I i:"
+msgstr "Iмя карыстальнiку:"
#: ../../any.pm:1
#, c-format
msgid "Real name"
-msgstr " i"
+msgstr "Уласнае iмя"
#: ../../any.pm:1
#, c-format
msgid "Accept user"
-msgstr " i"
+msgstr "Прыняць карыстальнiка"
#: ../../any.pm:1 ../../diskdrake/dav.pm:1 ../../diskdrake/hd_gtk.pm:1
#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
@@ -197,7 +197,7 @@ msgstr " i"
#: ../../standalone/drakbackup:1 ../../standalone/scannerdrake:1
#, c-format
msgid "Done"
-msgstr ""
+msgstr "Зроблена"
#: ../../any.pm:1
#, c-format
@@ -205,57 +205,57 @@ msgid ""
"Enter a user\n"
"%s"
msgstr ""
-"i i i\n"
+"Увядзiце iмя карыстальнiку\n"
"%s"
#: ../../any.pm:1
#, c-format
msgid "Add user"
-msgstr " i"
+msgstr "Дадаць карыстальнiка"
#: ../../any.pm:1
#, c-format
msgid "This user name has already been added"
-msgstr " i i "
+msgstr "Гэта iмя карыстальнiку ўжо дададзена"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "The user name is too long"
-msgstr " i i "
+msgstr "Гэта iмя карыстальнiку ўжо дададзена"
#: ../../any.pm:1
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-"I i i i i ii i, \n"
-"i, `-' i `_'"
+"Iмя карыстальнiку павiнна змяшчаць лiтары толькi на нiжнiм рэгiстры, \n"
+"лiчбы, `-' i `_'"
#: ../../any.pm:1
#, c-format
msgid "Please give a user name"
-msgstr "i , i i i"
+msgstr "Калi ласка, увядзiце iмя карыстальнiку"
#: ../../any.pm:1
#, c-format
msgid "This password is too simple"
-msgstr " "
+msgstr "Гэты пароль занадта просты"
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Please try again"
-msgstr " "
+msgstr "Паспрабуйце яшчэ раз"
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "The passwords do not match"
-msgstr "i "
+msgstr "Паролi не супадаюць"
#: ../../any.pm:1
#, c-format
msgid "(already added %s)"
-msgstr "( %s)"
+msgstr "(ужо дададзена %s)"
#: ../../any.pm:1
#, c-format
@@ -293,23 +293,23 @@ msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
-" .\n"
-" , i i."
+"У меню маюцца наступныя пункты.\n"
+"Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
#: ../../any.pm:1
#, c-format
msgid "Other OS (windows...)"
-msgstr "I (windows...)"
+msgstr "Iншая АС (windows...)"
#: ../../any.pm:1
#, c-format
msgid "Other OS (MacOS...)"
-msgstr "I (MacOS,...)"
+msgstr "Iншая АС (MacOS,...)"
#: ../../any.pm:1
#, c-format
msgid "Other OS (SunOS...)"
-msgstr "I (SunOS,...)"
+msgstr "Iншая АС (SunOS,...)"
#: ../../any.pm:1 ../../standalone/drakbackup:1
#, c-format
@@ -319,17 +319,17 @@ msgstr "Linux"
#: ../../any.pm:1
#, c-format
msgid "Which type of entry do you want to add?"
-msgstr "i ?"
+msgstr "Якi тып пункта жадаеце дадаць?"
#: ../../any.pm:1
#, c-format
msgid "This label is already used"
-msgstr " "
+msgstr "Гэтая метка ўжо выкарыстоўваецца"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "You must specify a root partition"
-msgstr " i swap"
+msgstr "Вы павiнны мець раздзел swap"
#: ../../any.pm:1
#, c-format
@@ -339,12 +339,12 @@ msgstr ""
#: ../../any.pm:1
#, c-format
msgid "Empty label not allowed"
-msgstr " "
+msgstr "Пустая метка не дазваляецца"
#: ../../any.pm:1 ../../harddrake/v4l.pm:1
#, c-format
msgid "Default"
-msgstr " "
+msgstr "Па дамаўленню"
#: ../../any.pm:1
#, c-format
@@ -359,22 +359,22 @@ msgstr "Initrd"
#: ../../any.pm:1
#, c-format
msgid "Append"
-msgstr ""
+msgstr "Далучыць"
#: ../../any.pm:1
#, c-format
msgid "Label"
-msgstr ""
+msgstr "Метка"
#: ../../any.pm:1
#, c-format
msgid "Unsafe"
-msgstr ""
+msgstr "Ненадзейна"
#: ../../any.pm:1
#, c-format
msgid "Table"
-msgstr "i"
+msgstr "Таблiца"
#: ../../any.pm:1
#, c-format
@@ -384,7 +384,7 @@ msgstr "Root"
#: ../../any.pm:1
#, c-format
msgid "Read-write"
-msgstr "-i"
+msgstr "Чытанне-запiс"
#: ../../any.pm:1
#, c-format
@@ -394,17 +394,17 @@ msgstr "Initrd"
#: ../../any.pm:1
#, c-format
msgid "Video mode"
-msgstr "i-"
+msgstr "Вiдэа-рэжым"
#: ../../any.pm:1
#, c-format
msgid "Image"
-msgstr ""
+msgstr "Вобраз"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "Default OS?"
-msgstr " "
+msgstr "Па дамаўленню"
#: ../../any.pm:1
#, c-format
@@ -429,7 +429,7 @@ msgstr ""
#: ../../any.pm:1
#, c-format
msgid "Boot device"
-msgstr " "
+msgstr "Загрузачная прылада"
#: ../../any.pm:1
#, c-format
@@ -439,54 +439,54 @@ msgstr ""
#: ../../any.pm:1
#, fuzzy, c-format
msgid "Bootloader to use"
-msgstr " i "
+msgstr "Галоўныя опцыi пачатковага загрузчыку"
#: ../../any.pm:1
#, c-format
msgid "Bootloader main options"
-msgstr " i "
+msgstr "Галоўныя опцыi пачатковага загрузчыку"
#: ../../any.pm:1
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-" `` '' "
+"Опцыя ``Абмежаванне опцыяў каманднага радку'' не выкарыстоўваецца без пароля"
#: ../../any.pm:1
#, c-format
msgid "Give the ram size in MB"
-msgstr " RAM M"
+msgstr "Пазначце памер RAM у Mб"
#: ../../any.pm:1
#, c-format
msgid "Enable multiple profiles"
-msgstr " i"
+msgstr "Даступна шмат профiляў"
#: ../../any.pm:1
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
-msgstr " RAM ( %d M)"
+msgstr "Пазначце дакладны памер RAM (знойдзена %d Mб)"
#: ../../any.pm:1
#, c-format
msgid "Clean /tmp at each boot"
-msgstr " /tmp "
+msgstr "Ачышчаць /tmp пры кожнай загрузцы"
#: ../../any.pm:1
#, c-format
msgid "Create a bootdisk"
-msgstr " . "
+msgstr "Стварыць загр. дыск"
#: ../../any.pm:1
#, c-format
msgid "restrict"
-msgstr ""
+msgstr "абмежаванне"
#: ../../any.pm:1
#, c-format
msgid "Restrict command line options"
-msgstr " "
+msgstr "Абмежаванне опцыяў каманднага радка"
#: ../../any.pm:1
#, c-format
@@ -501,62 +501,62 @@ msgstr ""
#: ../../any.pm:1
#, c-format
msgid "Delay before booting default image"
-msgstr " "
+msgstr "Затрымка перад загрузкай вобразу па дамаўленню"
#: ../../any.pm:1
#, c-format
msgid "compact"
-msgstr ""
+msgstr "кампактна"
#: ../../any.pm:1
#, c-format
msgid "Compact"
-msgstr ""
+msgstr "Кампактна"
#: ../../any.pm:1
#, c-format
msgid "Bootloader installation"
-msgstr " "
+msgstr "Усталяванне загрузчыку"
#: ../../any.pm:1
#, c-format
msgid "First sector of boot partition"
-msgstr " "
+msgstr "Першы сектар загрузачнага раздзелу"
#: ../../any.pm:1
#, c-format
msgid "First sector of drive (MBR)"
-msgstr " (MBR)"
+msgstr "Першы сектар прылады (MBR)"
#: ../../any.pm:1
#, c-format
msgid "Where do you want to install the bootloader?"
-msgstr " ?"
+msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
#: ../../any.pm:1
#, c-format
msgid "LILO/grub Installation"
-msgstr " LILO/GRUB"
+msgstr "Усталяванне LILO/GRUB"
#: ../../any.pm:1
#, c-format
msgid "SILO Installation"
-msgstr " SILO"
+msgstr "Усталяванне SILO"
#: ../../any.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Skip"
-msgstr "i"
+msgstr "Прапусцiць"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "On Floppy"
-msgstr " "
+msgstr "Захаванне на дыскету"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "First sector of the root partition"
-msgstr " "
+msgstr "Першы сектар загрузачнага раздзелу"
#: ../../any.pm:1
#, c-format
@@ -571,32 +571,32 @@ msgstr ""
#: ../../any.pm:1
#, c-format
msgid "Creating bootdisk..."
-msgstr " "
+msgstr "Стварэнне загрузачнай дыскеты"
#: ../../any.pm:1
#, fuzzy, c-format
msgid "Insert a floppy in %s"
-msgstr " %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
#: ../../any.pm:1
#, c-format
msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr " , i "
+msgstr "Абярыце дыскавод, у якiм будзе стварацца загрузачная дыскета"
#: ../../any.pm:1
#, c-format
msgid "Second floppy drive"
-msgstr "i "
+msgstr "Другi дыскавод"
#: ../../any.pm:1
#, c-format
msgid "First floppy drive"
-msgstr " "
+msgstr "Першы дыскавод"
#: ../../any.pm:1
#, c-format
msgid "Sorry, no floppy drive available"
-msgstr ", "
+msgstr "Выбачайце, але дыскавод недаступны"
#: ../../any.pm:1
#, c-format
@@ -613,15 +613,15 @@ msgid ""
"failures. Would you like to create a bootdisk for your system?\n"
"%s"
msgstr ""
-" Linux i \n"
-" . , i \n"
-"븢 LILO (i Grub), i i i LILO,\n"
-"i LILO ii. "
-"\n"
-" Mandrake Linux, i \n"
-" i .\n"
+"З дапамогай загрузачнага дыску вы зможаце загружаць Linux таксама як i \n"
+"стандартным загрузчыкам. Гэта можа быць якасна, калi вы не жадаеце \n"
+"ўсталёўваць LILO (цi Grub), калi iншая аперацыйная сiстэма выдаляе LILO,\n"
+"цi LILO не можа працаваць у вашай канфiгурацыi. Загрузачны дыск таксама "
+"можа\n"
+"быць выкарыстаны сумесна з рамонтнай дыскетай Mandrake Linux, якая вельмi \n"
+"палегчыць выратаванне сiстэмы пасля збою.\n"
"\n"
-" ?\n"
+"Жадаеце стварыць загрузачны дыск зараз?\n"
"%s"
#: ../../any.pm:1
@@ -652,25 +652,25 @@ msgid ""
"first\n"
"drive and press \"Ok\"."
msgstr ""
-" Linux \n"
-" . , i \n"
-"븢 SILO, i i i SILO, i SILO \n"
-" ii. \n"
-" Mandrake Linux, i \n"
-" i .\n"
+"З дапамогай загрузачнага дыска вы зможаце загружаць Linux незалежна ад\n"
+" стандартнага загрузчыка. Гэта можа быць якасна, калi вы не жадаеце \n"
+"ўсталёўваць SILO, калi iншая аперацыйная сiстэма выдаляе SILO, цi SILO не \n"
+"можа працаваць у вашай канфiгурацыi. Загрузачны дыск таксама можа быць \n"
+"выкарыстан сумесна з выратавальнай дыскетай Mandrake Linux, якая вельмi \n"
+"палегчыць выратаванне сiстэмы пасля збою.\n"
"\n"
-"i , \n"
-" i ii \"Ok\"."
+"Калi жадаеце стварыць загрузачны дыск зараз, устаўце дыскету ў першы\n"
+"дыскавод i нацiснiце \"Ok\"."
#: ../../bootloader.pm:1
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
-msgstr " ?"
+msgstr "Куды вы жадаеце ўсталяваць пачатковы загрузчык?"
#: ../../bootloader.pm:1
#, c-format
msgid "not enough room in /boot"
-msgstr " /boot"
+msgstr "Не хапае дыскавай прасторы ў /boot"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
@@ -756,27 +756,27 @@ msgstr ""
#: ../../common.pm:1
#, fuzzy, c-format
msgid "Screenshots will be available after install in %s"
-msgstr " , i "
+msgstr "Вы можаце абраць іншыя мовы, якiя будуць даступны пасля ўсталявання"
#: ../../common.pm:1
#, fuzzy, c-format
msgid "Can't make screenshots before partitioning"
-msgstr " "
+msgstr "Дадаць раздзел немагчыма"
#: ../../common.pm:1
#, c-format
msgid "%d seconds"
-msgstr "%d "
+msgstr "%d секундаў"
#: ../../common.pm:1
#, c-format
msgid "1 minute"
-msgstr "1 ii"
+msgstr "1 хвiлiна"
#: ../../common.pm:1
#, c-format
msgid "%d minutes"
-msgstr "%d ii"
+msgstr "%d хвiлiн"
#: ../../common.pm:1
#, c-format
@@ -791,7 +791,7 @@ msgstr ""
#: ../../common.pm:1
#, c-format
msgid "MB"
-msgstr ""
+msgstr "Мб"
#: ../../common.pm:1
#, c-format
@@ -806,13 +806,13 @@ msgstr ""
#: ../../crypto.pm:1 ../../lang.pm:1
#, fuzzy, c-format
msgid "Austria"
-msgstr ""
+msgstr "паслядоўная"
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#: ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "Italy"
-msgstr "Ii"
+msgstr "Iтальянскi"
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
@@ -822,22 +822,22 @@ msgstr ""
#: ../../crypto.pm:1 ../../lang.pm:1
#, fuzzy, c-format
msgid "Sweden"
-msgstr "."
+msgstr "Гл."
#: ../../crypto.pm:1 ../../lang.pm:1
#, fuzzy, c-format
msgid "Norway"
-msgstr "i"
+msgstr "Нарвежскi"
#: ../../crypto.pm:1 ../../lang.pm:1
#, fuzzy, c-format
msgid "Greece"
-msgstr "i"
+msgstr "Грэчаскi"
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Germany"
-msgstr "i"
+msgstr "Нямецкi"
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
@@ -847,12 +847,12 @@ msgstr ""
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Belgium"
-msgstr "ii"
+msgstr "Бельгiйскi"
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "France"
-msgstr ""
+msgstr "Францыя"
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
@@ -862,7 +862,7 @@ msgstr ""
#: ../../fsedit.pm:1
#, c-format
msgid "Error opening %s for writing: %s"
-msgstr " %s i: %s"
+msgstr "Памылка адкрыцця %s для запiсу: %s"
#: ../../fsedit.pm:1
#, c-format
@@ -872,14 +872,14 @@ msgstr ""
#: ../../fsedit.pm:1
#, fuzzy, c-format
msgid "Not enough free space for auto-allocating"
-msgstr " "
+msgstr "Не хапае прасторы для стварэння новых раздзелаў"
#: ../../fsedit.pm:1
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-" i i (ext2, reiserfs)\n"
-" i i\n"
+"Вам неабходна задаць правiльны тып файлавай сiстэмы (ext2, reiserfs)\n"
+"для гэтай кропкi манцiравання\n"
#: ../../fsedit.pm:1
#, fuzzy, c-format
@@ -887,13 +887,13 @@ msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-" i i (ext2, reiserfs)\n"
-" i i\n"
+"Вам неабходна задаць правiльны тып файлавай сiстэмы (ext2, reiserfs)\n"
+"для гэтай кропкi манцiравання\n"
#: ../../fsedit.pm:1
#, c-format
msgid "This directory should remain within the root filesystem"
-msgstr " "
+msgstr "Гэты каталог павінен знаходзіцца ўнутры каранёвай файлавай сістэмы"
#: ../../fsedit.pm:1
#, c-format
@@ -907,14 +907,14 @@ msgid ""
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""
-" i RAID .\n"
-" , i i /boot .\n"
-" /boot, i ."
+"Вы абралi RAID раздзел як каранёвы.\n"
+"Няма загрузчыку, якi б загрузiўся без /boot раздзела.\n"
+"Дадайце раздел /boot, калi ласка."
#: ../../fsedit.pm:1
#, c-format
msgid "There is already a partition with mount point %s\n"
-msgstr " i %s\n"
+msgstr "Ужо ёсць раздзел з пунктам манцiравання %s\n"
#: ../../fsedit.pm:1
#, c-format
@@ -924,17 +924,17 @@ msgstr ""
#: ../../fsedit.pm:1
#, c-format
msgid "Mount points must begin with a leading /"
-msgstr " i i /"
+msgstr "Пункт манцiравання павiнен пачынацца з /"
#: ../../fsedit.pm:1
#, c-format
msgid "You can't use ReiserFS for partitions smaller than 32MB"
-msgstr " i , i 32 "
+msgstr "Вы не можаце разбiваць на разделы, памер якiх меней за 32 Мб"
#: ../../fsedit.pm:1
#, fuzzy, c-format
msgid "You can't use JFS for partitions smaller than 16MB"
-msgstr " i , i 16 "
+msgstr "Вы не можаце разбiваць на разделы, памер якiх меней за 16 Мб"
#: ../../fsedit.pm:1
#, fuzzy, c-format
@@ -946,13 +946,13 @@ msgid ""
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
-"i , :(\n"
-" ii i ( \n"
-" !). I i DrakX i i "
-".\n"
-"( %s)\n"
+"Таблiца раздзелаў не чытаецца, яна занадта сапсаваная для меня :(\n"
+"Паспрабую iсцi далей i буду прапускаць дрэнныя раздзелы (Усе ДАДЕЗЕНЫЯ\n"
+"будуць страчаны!). Iншае рашэнне не дазволiць DrakX змянiць таблiцу "
+"раздзелаў.\n"
+"(памылка ў %s)\n"
"\n"
-"i i ?\n"
+"Цi жадаеце страцiць усе раздзелы?\n"
#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
@@ -961,12 +961,12 @@ msgstr ""
#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
#, c-format
msgid "Error"
-msgstr ""
+msgstr "Памылка"
#: ../../fsedit.pm:1
#, c-format
msgid "server"
-msgstr ""
+msgstr "сервер"
#: ../../fsedit.pm:1
#, c-format
@@ -981,12 +981,12 @@ msgstr ""
#: ../../fs.pm:1
#, fuzzy, c-format
msgid "Enabling swap partition %s"
-msgstr " %s"
+msgstr "Фарматаванне раздзелу %s"
#: ../../fs.pm:1 ../../partition_table.pm:1
#, c-format
msgid "error unmounting %s: %s"
-msgstr " i %s: %s"
+msgstr "памылка разманцiравання %s: %s"
#: ../../fs.pm:1
#, c-format
@@ -996,32 +996,32 @@ msgstr ""
#: ../../fs.pm:1
#, fuzzy, c-format
msgid "Mounting partition %s"
-msgstr " %s"
+msgstr "Фарматаванне раздзелу %s"
#: ../../fs.pm:1
#, fuzzy, c-format
msgid "Checking %s"
-msgstr " : %s\n"
+msgstr "Памеры экрану: %s\n"
#: ../../fs.pm:1
#, c-format
msgid "Formatting partition %s"
-msgstr " %s"
+msgstr "Фарматаванне раздзелу %s"
#: ../../fs.pm:1
#, c-format
msgid "Creating and formatting file %s"
-msgstr " i %s"
+msgstr "Стварэнне i фарматаванне файла %s"
#: ../../fs.pm:1
#, c-format
msgid "I don't know how to format %s in type %s"
-msgstr " %s %s"
+msgstr "Не ведаю як адфарматаваць %s з тыпам %s"
#: ../../fs.pm:1
#, c-format
msgid "%s formatting of %s failed"
-msgstr "%s %s"
+msgstr "%s памылка фарматавання %s"
#: ../../help.pm:1
#, fuzzy, c-format
@@ -1034,13 +1034,13 @@ msgid ""
"Click on \"<- Previous\" to stop this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
-" \"\", \n"
-" . , \n"
+"Націсніце \"Так\", калі жадаеце выдаліць усе дадзеныя\n"
+"і раздзелы на гэтым дыску. Будзце уважлівыя, пасля гэтай аперацыі вы не\n"
"\n"
-" , Windows\n"
+"здолееце аднавіць любыя дадзеныя і раздзелы, улічваючы і дадзеныя Windows\n"
"\n"
"\n"
-" \"\" "
+"Націсніце \"Адмена\" каб адмяніць аперацыю без страты дадзеных і раздзелаў"
#: ../../help.pm:1
#, fuzzy, c-format
@@ -1049,60 +1049,75 @@ msgid ""
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-" \n"
-" Mandrake Linux. , "
-"\n"
-" ."
+"Абярыце жорскі дыск які жадаеце ачысціць для ўсталявання\n"
+"новага раздзелу Mandrake Linux. Будзце ўважлівыя, усе дадзеныя на дыску "
+"будуць\n"
+" знішчаны і іх немагчыма будзе аднавіць."
#: ../../help.pm:1
#, c-format
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
#: ../../help.pm:1
@@ -1206,13 +1221,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1236,7 +1246,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1274,32 +1284,7 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+"(\"On Floppy\")."
msgstr ""
#: ../../help.pm:1
@@ -1320,17 +1305,17 @@ msgid ""
"bootloader menu, but you will need a boot disk in order to boot those other\n"
"operating systems!"
msgstr ""
-"LILO ( LInux LOader) i Grub - i. i "
-"\n"
-"GNU/Linux i i i, .\n"
-", i i i\n"
-"븢. i , i\n"
-". , i .\n"
+"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!"
+"Таксама вы можаце пажадаць i не дабаўляць iншыя аперацыйныя сiстэмы.\n"
+"У такiм выпадку патрэбна выдалiць адпаведныя запiсы. Але ж тады вам \n"
+"патрэбна будзе загрузачная дыскета, каб загрузiцца!"
#: ../../help.pm:1
#, c-format
@@ -1452,9 +1437,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1511,7 +1501,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -1547,33 +1539,33 @@ msgid ""
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
-" \n"
-"Windows. , , , "
-"\n"
-" Mandrake Linux.\n"
+"На вашым дыску было знойдзена болей за адзін раздзел\n"
+"Windows. Калі ласка, абярыце той, памер якога жадаеце змяніць, "
+"кабусталяваць\n"
+"сістэму Mandrake Linux.\n"
"\n"
"\n"
-" i, : \"Linux \", \"Windows\n"
-"\" \"C\".\n"
-"\"Linux \" - \" \", \" \",\" "
-"\n"
-"(, \"hda1\").\n"
+"Для iфармацыі, кожны раздзел адзначаны як: \"Linux імя\", \"Windows\n"
+"імя\" \"Cвойствы\".\n"
+"\"Linux Імя\" кадавана так - \"тып дыску\", \"нумар дыску\",\"нумар "
+"раздзелу\n"
+"(напрыклад, \"hda1\").\n"
"\n"
"\n"
-"\" \" \"hd\", IDE, \"sd\" SCSI.\n"
+"\"Тып дыску\" кадаваны як \"hd\", калі гэта IDE, і \"sd\" калі SCSI.\n"
"\n"
-"\" \" - \"hd\" \"sd\". IDE :\n"
-" * \"\" \"master\" IDE \n"
-" * \"b\" \"slave\" IDE\n"
-" * \"c\" \"master\" IDE\n"
-" * \"d\" \"slave\" IDE\n"
+"\"Нумар дыску\" - сімвал пасля \"hd\" ці \"sd\". Для IDE дыскаў:\n"
+" * \"а\" \"master\" на першасным канале IDE \n"
+" * \"b\" \"slave\" на першасным канале IDE\n"
+" * \"c\" \"master\" на другасным канале IDE\n"
+" * \"d\" \"slave\" на другасным канале IDE\n"
"\n"
"\n"
-" SCSI - \"a\" \" \", \"b\" - \" "
-" \", ..\n"
+"Для SCSI дыскаў - \"a\" гэта \"першасны жорскі дыск\", \"b\" - \"другасны "
+"жорскі дыск\", і г.д.\n"
"\n"
-"\"Windows \" Windows ( \n"
-" \"C:\")."
+"\"Windows Імя\" сімвал вашага дыску ў Windows (першы дыск ці\n"
+"раздзел пазначаецца як \"C:\")."
#: ../../help.pm:1
#, c-format
@@ -1660,9 +1652,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -1673,14 +1663,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
#: ../../help.pm:1
@@ -1711,34 +1701,34 @@ msgid ""
"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
"for bad blocks on the disk."
msgstr ""
-" , \n"
-" ( - ).\n"
+"Усе раздзелы, якія былі толькі вызначаны павінны быць\n"
+"адфарматаваны (фарматаваць - значыць стварыць файлаваю сістэму).\n"
"\n"
"\n"
-" , , \n"
-" . , "
-"\n"
-" .\n"
+"У той жа час, вы можаце перафарматаваць ужо існуючыя раздзелы, каб сцёрці\n"
+"дадзеныя якія яны ўтрымліваюць. Калі вы жадаеце зрабіць гэта, абярыце "
+"раздзелы\n"
+"якія жадаеце адфарматаваць.\n"
"\n"
"\n"
-", . \n"
-" , ( \"/"
+"Заўважце, вы павінны перафарматаваць усе створаныя раздзелы. Вы павінны\n"
+"перафарматаваць раздзелы, якія ўтрымліваюць аперацыйную сістэму (тыпу \"/"
"\",\n"
-"\"/usr\" \"/var\"), , "
-"\n"
-", ( /home).\n"
+"\"/usr\" ці \"/var\"), але не павінны перафарматаваць раздзелы, якія "
+"утрымліваюць\n"
+"дадзеныя, якія вы жадаеце захаваць (звычайна /home).\n"
"\n"
"\n"
-" , , , \n"
-" .\n"
+"Калі ласка, будзце ўважлівыя, абіраючы раздзелы, бо пасля фарматавання\n"
+"усе дадзеныя будуць незваротна выдаленыя.\n"
"\n"
"\n"
-" \"\" .\n"
+"Націсніце \"Так\" калі вы гатовыя фарматаваць раздзеля.\n"
"\n"
"\n"
-" \"\" "
-"\n"
-" Mandrake Linux."
+"Націсніце \"Адмена\" калі жадаеце абраць іншыя раздзелы для "
+"усталяваннявашай\n"
+"новай аперацыйнай сістэмы Mandrake Linux."
#: ../../help.pm:1
#, c-format
@@ -1749,7 +1739,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -1807,7 +1797,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -1832,101 +1822,72 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
-msgstr ""
-" , \n"
-" Mandrake Linux. \n"
-" \n"
-" , . ,\n"
-" \n"
-" Mandrake Linux.\n"
-"\n"
-" , \n"
-" , . \n"
-" . , \n"
-", .\n"
-"\n"
-" , , . \n"
-", (Swap - ).\n"
-"\n"
-" ( \n"
-" ), , \n"
-" .\n"
-"\n"
-"\n"
-" , . \n"
-", , . \n"
-" , :\n"
-"\n"
-"* : .\n"
-" . ,\n"
-" .\n"
-"\n"
-"\n"
-"* : , "
-" \n"
-" Mandrake Linux. , "
-" .\n"
-"\n"
-"\n"
-"* Windows: MicrosoftWindows "
-" \n"
-" , "
-" Linux\n"
-" , Windows (."
-"\" \" \n"
-" \" \") Windows "
-" \n"
-" . , "
-" Mandrake Linux \n"
-" Microsoft Windows '.\n"
-"\n"
-" , , , , "
-" \n"
-" Microsoft Windows .\n"
-"\n"
-"\n"
-"* : , "
-" .\n"
-" . , "
-" \n"
-" . "
-" ."
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
+msgstr ""
+"У гэтым пункце, вы павінны абраць дзе на вашым жорскім \n"
+"дыску усталяваць аперацыйную сістэму Mandrake Linux. Калі дыск пусты\n"
+"альбо ўсталываная аперацыйная аперацыйная сістэма выкарыстоўвае ўсю\n"
+"дыскавую прастору, вы павінны разьбіць яго на раздзелы. У асноўным,\n"
+"разбіццё раздзелаў жорскага дыску складаецца з лагічнага дзялення яго\n"
+"дыскавай прасторы дзеля ўсталявання вашай новай сістэмы Mandrake Linux.\n"
+"\n"
+"Таму як вынікі разбіцця раздзелаў звычайна незваротныя, гэты працэс \n"
+"можа быць пужаючым і напружаным, калі вы невопытны карыстальнік. Гэты\n"
+"майстар спрашчае гэты працэс. Перад тым як пачаць звярніцеся, калі\n"
+"ласка, да даведкі.\n"
+"\n"
+"Вам патрэбна, сама мала, два раздзелы. Першы непасрэдна для аперацыйнай\n"
+"сістэмы, і другі для віртуальнай памяці (Swap - раздзел).\n"
+"\n"
+"Калі раздзелы ўжо вызначаны (у папярэдняе ўсталяванне ці іншым \n"
+"інструмантам вызначэння раздзелаў), вы павінны абраць тыя, якія жадаеце\n"
+"выкарыстоўваць для ўсталявання сістэмы.\n"
+"\n"
+"\n"
+"Калі раздзелы не былі вызначаны, вы павінны іх стварыць. Каб зрабіць \n"
+"гэта, скарыстайце майстра, даступнага вышэй. У залежнасці ад \n"
+"канфігурацыі жорсткага дыску, могжа быць зроблена наступнае:\n"
+"\n"
+"* Выкарыстанне існуючага раздзелу: майстар знайшоў адзін ці некалькі.\n"
+"існуючых раздзелаў на вашым жорскім дыску. Калі вы жадаеце іх захаваць,\n"
+"абярыце гетую опцыю.\n"
+"\n"
+"\n"
+"* Поўная ачыстка дыску: абярыце гэта, калі вы жадаеце выдаліць уседадзеныя і "
+"раздзелы якія існуюць\n"
+" на вашым дыску і замяніць на Mandrake Linux. Будзце уважлівы з гэтайопцыяй, "
+"бо гэты працэс незваротны.\n"
+"\n"
+"\n"
+"* Выкарыстанне вольнай прасторы на раздзеле Windows: калі MicrosoftWindows "
+"усталявана на вашым жорскім\n"
+" дыску і выкарыстоўвае ўсю даступную прастору, вы павінны стварыцьвольную "
+"прастору для дадзеных Linux\n"
+"Каб зрабіць гэта, вы можаце выдаляць ваш раздзел Windows і дадзеныя(гл."
+"\"Ачыстка усяго дыску\" альбо\n"
+" \"Рэжым эксперту\") альбо змяніць памеры вашага раздзелу WindowsЗмяненне "
+"памераў можа быць выканана\n"
+" без страты дадзеных. Гэтая опцыя рэкамендуецца, калі вы "
+"жадаецевыкарыстоўваць Mandrake Linux і\n"
+" Microsoft Windows на адным і тым жа камп'ютэры.\n"
+"\n"
+" Перад выбарам гэтага, калі ласка, зьвярніце ўвагу, на тое, штоколькасьць "
+"даступнай вольнай\n"
+" прасторы пад Microsoft Windows зменшыцца.\n"
+"\n"
+"\n"
+"* Рэжым эксперту: вы можаце абраць гэтую опцыю, калі вы жадаецеразбіць "
+"раздзелы уласна рукамі.\n"
+" Будзце ўважлівыя абіраючы гэта. Гэтая опцыя магутная але даволінебяспечная, "
+"вы можаце\n"
+" лёгка згубіць свае дадзеныя. Таму не абірайце гэтую опцыю калі выне ведаеце "
+"што робіце."
#: ../../help.pm:1
#, c-format
@@ -2057,7 +2018,8 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2077,7 +2039,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -2240,32 +2202,32 @@ msgid ""
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc."
msgstr ""
-" Linux, ,\n"
-" . "
-"\n"
-" , . \n"
-" , , (\"/\"). \n"
-" , \n"
-" . "
-"\n"
-" , \"/home\".\n"
+"Далей адзначаны усе існуючыя раздзелы Linux, знойдзеныя на вашым дыску,\n"
+" якія зроблены майстрам вылучэння дыскаў. Вы можаце пакінуць іх так і "
+"выкарыстўваць\n"
+" далей, бо яны добра падыходзяць для звычайнага выкарыстання. Калі вы\n"
+" ўносіце змены, вы павінны, вылучыць хаця раздзел (\"/\"). Рабіце\n"
+" раздзел не вельмі малым, бо ў адваротным выпадку вы ня здолееце усталяваць\n"
+" дастаткова праграмнага забеспячэння.Калі вы жадаеце захаваць вашыя "
+"дадзеныя\n"
+" на асобным раздзеле, вы павінны абраць пункт манціравання \"/home\".\n"
"\n"
-" \"\", \"\".\n"
+"Кожны раздзел пазначаны наступным чынам \"Імя\", \"Свойствы\".\n"
"\n"
"\n"
-"\"\" - \" \", \" \", \" \" \n"
-"(, \"hda1\").\n"
+"\"Імя\" кадавана так - \"тып дыску\", \"нумар дыску\", \"нумар раздзелу\" \n"
+"(напрыклад, \"hda1\").\n"
"\n"
"\n"
-"\" \" \"hd\", IDE, \"sd\" SCSI.\n"
-" * \"\" \"master\" IDE \n"
-" * \"b\" \"slave\" IDE\n"
-" * \"c\" \"master\" IDE\n"
-" * \"d\" \"slave\" IDE\n"
+"\"Тып дыску\" кадаваны як \"hd\", калі гэта IDE, і \"sd\" калі SCSI.\n"
+" * \"а\" \"master\" на першасным канале IDE \n"
+" * \"b\" \"slave\" на першасным канале IDE\n"
+" * \"c\" \"master\" на другасным канале IDE\n"
+" * \"d\" \"slave\" на другасным канале IDE\n"
"\n"
"\n"
-" SCSI - \"a\" \" \", \"b\" - \" "
-" \", .."
+"Для SCSI дыскаў - \"a\" гэта \"першасны жорскі дыск\", \"b\" - \"другасны "
+"жорскі дыск\", і г.д."
#: ../../help.pm:1
#, c-format
@@ -2337,13 +2299,13 @@ msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-": i \n"
-". i ."
+"Памылка: для стварэння новых файлавых сiстэмаў не знайдзены адпаведныя \n"
+"прылады. Праверце абсталяванне для пошуку iмавернай прычыны."
#: ../../install_any.pm:1 ../../partition_table.pm:1
#, c-format
msgid "Error reading file %s"
-msgstr " %s"
+msgstr "Памылка чытання файлу %s"
#: ../../install_any.pm:1
#, c-format
@@ -2360,12 +2322,12 @@ msgstr ""
#: ../../install_any.pm:1
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
-msgstr " %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
#: ../../install_any.pm:1
#, c-format
msgid "Can't use broadcast with no NIS domain"
-msgstr " broadcast NIS"
+msgstr "Немагчыма выкарыстоўваць broadcast без дамена NIS"
#: ../../install_any.pm:1
#, c-format
@@ -2381,14 +2343,14 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid "No"
-msgstr ""
+msgstr "Не"
#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1 ../../standalone/drakgw:1
#: ../../standalone/harddrake2:1
#, c-format
msgid "Yes"
-msgstr ""
+msgstr "Так"
#: ../../install_any.pm:1
#, c-format
@@ -2407,37 +2369,37 @@ msgstr ""
#: ../../install_gtk.pm:1
#, fuzzy, c-format
msgid "System configuration"
-msgstr ""
+msgstr "Настройка"
#: ../../install_gtk.pm:1
#, fuzzy, c-format
msgid "System installation"
-msgstr " SILO"
+msgstr "Усталяванне SILO"
#: ../../install_interactive.pm:1
#, c-format
msgid "Bringing down the network"
-msgstr " i"
+msgstr "Адлучэнне ад сеткi"
#: ../../install_interactive.pm:1
#, c-format
msgid "Bringing up the network"
-msgstr " i"
+msgstr "Далучэнне да сеткi"
#: ../../install_interactive.pm:1
#, c-format
msgid "Partitioning failed: %s"
-msgstr " : %s"
+msgstr "Падрыхтоўка разделаў не ўдалася: %s"
#: ../../install_interactive.pm:1
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr " i DrakX :"
+msgstr "Майстар падрыхтоўкi раздзелаў DrakX знайшоў наступныя варыянты:"
#: ../../install_interactive.pm:1
#, fuzzy, c-format
msgid "I can't find any room for installing"
-msgstr " "
+msgstr "Дадаць раздзел немагчыма"
#: ../../install_interactive.pm:1
#, c-format
@@ -2445,45 +2407,45 @@ 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'"
+"Вы можаце цяпер разбiць ваш дыск %s\n"
+"Па заканчэннi не забудзьцеся захаваць змяненнi, скарыстаўшы `w'"
#: ../../install_interactive.pm:1
#, c-format
msgid "Use fdisk"
-msgstr " fdisk"
+msgstr "Выкарыстоўваць fdisk"
#: ../../install_interactive.pm:1
#, fuzzy, c-format
msgid "Custom disk partitioning"
-msgstr " i "
+msgstr "Выкарыстоўваць iснуючы раздзел"
#: ../../install_interactive.pm:1
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr " i %s i i "
+msgstr "Усе iснуючыя раздзелы на дыску %s i дадзеныя на iх будуць страчаны"
#: ../../install_interactive.pm:1
#, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
-msgstr " i i Linux?"
+msgstr "На якi з маючыхся жорсткiх дыскаў Вы жадаеце ўсталяваць Linux?"
#: ../../install_interactive.pm:1
#, c-format
msgid "Erase entire disk"
-msgstr "i i "
+msgstr "Сцёрцi дадзеныя на ўсiм дыску"
#: ../../install_interactive.pm:1
#, c-format
msgid "Remove Windows(TM)"
-msgstr "i Windows(TM)"
+msgstr "Выдалiць Windows(TM)"
#: ../../install_interactive.pm:1
#, fuzzy, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
-" FAT \n"
-" i i i (i )"
+"Не знойдзена раздзелаў FAT для змянення памераў альбо выкарыстання\n"
+"ў якасцi вiртуальнай файлавай сiстэмы (цi недастаткова прасторы на дыску)"
#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
@@ -2495,27 +2457,27 @@ msgstr ""
#: ../../install_interactive.pm:1
#, c-format
msgid "FAT resizing failed: %s"
-msgstr " FAT %s"
+msgstr "Аўтазмяненне памераў не атрымалася для раздзелу FAT %s"
#: ../../install_interactive.pm:1
#, c-format
msgid "Resizing Windows partition"
-msgstr "i i Windows"
+msgstr "Вылiчэнне межаў файлавай сiстэмы Windows"
#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Resizing"
-msgstr " "
+msgstr "Змяненне памераў"
#: ../../install_interactive.pm:1
#, c-format
msgid "partition %s"
-msgstr " %s"
+msgstr "Раздзел %s"
#: ../../install_interactive.pm:1
#, c-format
msgid "Which size do you want to keep for Windows on"
-msgstr " Windows?"
+msgstr "Якую прастору захаваць для Windows?"
#: ../../install_interactive.pm:1
#, fuzzy, c-format
@@ -2529,14 +2491,14 @@ msgid ""
"installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
-"!\n"
+"УВАГА!\n"
"\n"
-"DrakX i i Windows.\n"
-" i: . i ii \n"
-" i , i ,"
-" scandisk i defrag , i i\n"
-" i i i .\n"
-"i i, ii Ok."
+"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_interactive.pm:1
#, c-format
@@ -2545,13 +2507,13 @@ msgid ""
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
-" Windows . \n"
-" i ``defrag''"
+"Ваш раздзел з Windows занадта фрагментаваны. \n"
+"Рэкамендуем спачатку запусцiць праграму ``defrag''"
#: ../../install_interactive.pm:1
#, fuzzy, c-format
msgid "Computing the size of the Windows partition"
-msgstr " Windows"
+msgstr "Выкарыстоўваць незанятую прастору на раздзеле Windows"
#: ../../install_interactive.pm:1
#, c-format
@@ -2559,75 +2521,75 @@ msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-" FAT \n"
-" , : %s"
+"У праграмы змены памераў раздзела FAT не атрымалася\n"
+"апрацаваць Ваш раздзел, памылка: %s"
#: ../../install_interactive.pm:1
#, c-format
msgid "Which partition do you want to resize?"
-msgstr " i?"
+msgstr "Памеры якога раздзела вы жадаеце змянiць?"
#: ../../install_interactive.pm:1
#, c-format
msgid "Use the free space on the Windows partition"
-msgstr " Windows"
+msgstr "Выкарыстоўваць незанятую прастору на раздзеле Windows"
#: ../../install_interactive.pm:1
#, fuzzy, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
-" FAT \n"
-" i i i (i )"
+"Не знойдзена раздзелаў FAT для змянення памераў альбо выкарыстання\n"
+"ў якасцi вiртуальнай файлавай сiстэмы (цi недастаткова прасторы на дыску)"
#: ../../install_interactive.pm:1
#, c-format
msgid "Swap partition size in MB: "
-msgstr " swap M:"
+msgstr "Памер swap раздзелу ў Mб:"
#: ../../install_interactive.pm:1
#, c-format
msgid "Root partition size in MB: "
-msgstr " M: "
+msgstr "Каранёвы раздзел ў Mб: "
#: ../../install_interactive.pm:1
#, c-format
msgid "Choose the sizes"
-msgstr " "
+msgstr "Выбар памераў"
#: ../../install_interactive.pm:1
#, fuzzy, c-format
msgid "Which partition do you want to use for Linux4Win?"
-msgstr " i?"
+msgstr "Памеры якога раздзела вы жадаеце змянiць?"
#: ../../install_interactive.pm:1
#, c-format
msgid "Use the Windows partition for loopback"
-msgstr " Windows i i"
+msgstr "Выкарыстоўваць раздзел Windows для вiртуальнай файлавай сiстэмы"
#: ../../install_interactive.pm:1
#, c-format
msgid "There is no existing partition to use"
-msgstr " i , i "
+msgstr "Няма iснуючых раздзелаў, якiя можна выкарыстаць"
#: ../../install_interactive.pm:1
#, c-format
msgid "Use existing partitions"
-msgstr " i "
+msgstr "Выкарыстоўваць iснуючы раздзел"
#: ../../install_interactive.pm:1
#, c-format
msgid "Not enough free space to allocate new partitions"
-msgstr " "
+msgstr "Не хапае прасторы для стварэння новых раздзелаў"
#: ../../install_interactive.pm:1
#, c-format
msgid "Use free space"
-msgstr " "
+msgstr "Выкарыстоўваць незанятую прастору"
#: ../../install_interactive.pm:1 ../../install_steps.pm:1
#, fuzzy, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
-msgstr " i swap"
+msgstr "Вы павiнны мець раздзел swap"
#: ../../install_interactive.pm:1
#, c-format
@@ -2636,9 +2598,9 @@ msgid ""
"\n"
"Continue anyway?"
msgstr ""
-" swap.\n"
+"Няма раздзела swap.\n"
"\n"
-" ?"
+"Усё адно працягваць?"
#: ../../install_interactive.pm:1
#, c-format
@@ -2647,9 +2609,9 @@ msgid ""
"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снуючы).\n"
+"Потым абярыце ``Кропка манцiравання'' i ўстанавiце яе ў `/'"
#: ../../install_interactive.pm:1
#, c-format
@@ -2657,8 +2619,8 @@ msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""
-" .\n"
-" : %s"
+"Пэўнае абсталяванне патрабуе камерцыйных драйвераў для працы.\n"
+"Часткова інфармацыю пра іх можна атрымаць тут: %s"
#: ../../install_messages.pm:1
#, c-format
@@ -2678,19 +2640,19 @@ msgid ""
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-"i, .\n"
-"i i ii enter i.\n"
+"Вiншуем, усталяванне завершана.\n"
+"Выдалiце загрузачны дыск i нацiснiце enter для перазагрузкi.\n"
"\n"
"\n"
-" i i Mandrake Linux,\n"
-" \n"
+"За iнфармацыяй пра змяненнi дадзенага выпуску Mandrake Linux,\n"
+"звяртайцесь на \n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
-"I i -\n"
-" i i i Mandrake Linux."
+"Iнфармацыя па настройке вашай сiстэмы ёсть ў пасля-ўсталёвачнай\n"
+"главе вашага Дапаможнiка Карыстальнiку з Афiцыйнага Mandrake Linux."
#: ../../install_messages.pm:1
#, c-format
@@ -2855,7 +2817,7 @@ msgstr ""
#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
#, c-format
msgid "Entering step `%s'\n"
-msgstr " `%s'\n"
+msgstr "Пераход на крок `%s'\n"
#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
@@ -2864,33 +2826,33 @@ msgstr " `%s'\n"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Help"
-msgstr ""
+msgstr "Дапамога"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "not configured"
-msgstr " X Window"
+msgstr "Настройка X Window"
#: ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
#: ../../standalone/drakboot:1 ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Configure"
-msgstr " X Window"
+msgstr "Настройка X Window"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Go on anyway?"
-msgstr " ?"
+msgstr "Усё роўна працягваць?"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "There was an error installing packages:"
-msgstr " :"
+msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "There was an error ordering packages:"
-msgstr " :"
+msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
@@ -2901,84 +2863,84 @@ msgid ""
"done.\n"
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-"i Cd-Rom!\n"
+"Змянiце ваш Cd-Rom!\n"
"\n"
-"i , Cd-Rom, \"%s\", i ii O "
-".\n"
-"i , ii i, i "
+"Калi ласка, устаўце Cd-Rom, пазначаны \"%s\", у ваш дыскавод i нацiснiце Oк "
+"пасля.\n"
+"Калi вы не маеце яго, нацiснiце Адмянiць, каб адмянiць усталяванне з гэтага "
"Cd."
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Refuse"
-msgstr ""
+msgstr "Адказаць"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#: ../../standalone/drakautoinst:1
#, c-format
msgid "Accept"
-msgstr ""
+msgstr "Прыняць"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Installing package %s"
-msgstr " %s"
+msgstr "Усталяванне пакету %s"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "%d packages"
-msgstr "%d "
+msgstr "%d пакетаў"
#: ../../install_steps_gtk.pm:1
#, fuzzy, c-format
msgid "No details"
-msgstr "i"
+msgstr "Падрабязнасцi"
#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Details"
-msgstr "i"
+msgstr "Падрабязнасцi"
#: ../../install_steps_gtk.pm:1
#, fuzzy, c-format
msgid "Please wait, preparing installation..."
-msgstr " "
+msgstr "Падрыхтоўка ўсталяваньня"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Time remaining "
-msgstr " "
+msgstr "Засталося часу "
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Estimating"
-msgstr ""
+msgstr "Чакаецца"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Installing"
-msgstr "븢"
+msgstr "Усталёўваем"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose the packages you want to install"
-msgstr " "
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../install_steps_gtk.pm:1
#, fuzzy, c-format
msgid "Minimal install"
-msgstr "i i"
+msgstr "Выдалiць з сiстэмы"
#: ../../install_steps_gtk.pm:1
#, fuzzy, c-format
msgid "Updating package selection"
-msgstr "i "
+msgstr "Асабiсты выбар пакетаў"
#: ../../install_steps_gtk.pm:1
#, fuzzy, c-format
msgid "Load/Save on floppy"
-msgstr " "
+msgstr "Захаванне на дыскету"
#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
@@ -2991,7 +2953,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, c-format
msgid "Install"
-msgstr "븢"
+msgstr "Усталёўка"
#: ../../install_steps_gtk.pm:1
#, c-format
@@ -3001,7 +2963,7 @@ msgstr ""
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "You can't unselect this package. It must be upgraded"
-msgstr " i . i"
+msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Яго патрэбна абнавiць"
#: ../../install_steps_gtk.pm:1
#, c-format
@@ -3009,93 +2971,93 @@ msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-" i \n"
-" , i ?"
+"Гэты пакет павiнен быць абноўлены\n"
+"Вы ўпэўнены, што хочаце адмянiць вылучэнне?"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "You can't unselect this package. It is already installed"
-msgstr " i . "
+msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "This is a mandatory package, it can't be unselected"
-msgstr " , i"
+msgstr "Гэта абавязковы пакет, яго вылучэнне нельга адмянiць"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "You can't select/unselect this package"
-msgstr " "
+msgstr "Вы не можаце вылучаць і адмяняць вылучэнне гэтага пакету"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "The following packages are going to be removed"
-msgstr " "
+msgstr "Наступныя пакеты будуць выдалены"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "The following packages are going to be installed"
-msgstr " i"
+msgstr "Наступныя пакеты будуць даданы да сiстэмы"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-" , "
+"Вы не можаце выбраць гэты пакет, таму як не хапае месца для яго ўсталявання"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Importance: %s\n"
-msgstr ": %s\n"
+msgstr "Значнасць: %s\n"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Size: %d KB\n"
-msgstr ": %d K\n"
+msgstr "Памер: %d Kб\n"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Version: %s\n"
-msgstr "i: %s\n"
+msgstr "Версiя: %s\n"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Name: %s\n"
-msgstr "I: %s\n"
+msgstr "Iмя: %s\n"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Bad package"
-msgstr " "
+msgstr "Дрэнны пакет"
#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Other"
-msgstr ""
+msgstr "Іншыя"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Total size: %d / %d MB"
-msgstr " : %d / %d M"
+msgstr "Агульны памер: %d / %d Mб"
#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Next ->"
-msgstr " ->"
+msgstr "Далей ->"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Individual package selection"
-msgstr "i "
+msgstr "Асабiсты выбар пакетаў"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Package Group Selection"
-msgstr " "
+msgstr "Выбар групы пакетаў"
#: ../../install_steps_gtk.pm:1
#, c-format
@@ -3105,25 +3067,25 @@ msgid ""
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-" i , \n"
-" i Mandrake Linux. \n"
-" . ii `F1' i, \n"
-" `text' i ii <ENTER>."
+"У Вашай сiстэме маецца недахоп рэсурсаў, таму магчымы праблемы\n"
+"пры ўсталяваннi Mandrake Linux. У гэтым выпадку паспрабуйце тэкставую\n"
+"праграму ўсталявання. Для гэтага нацiснiце `F1' у час загрузкi, а потым\n"
+"набярыце `text' i нацiснiце <ENTER>."
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Save packages selection"
-msgstr "i "
+msgstr "Асабiсты выбар пакетаў"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Automated"
-msgstr ""
+msgstr "Аўтаматычны"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Replay"
-msgstr "i"
+msgstr "Перазагрузiць"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3138,7 +3100,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Generate auto install floppy"
-msgstr " "
+msgstr "Стварэнне дыскеты для ўсталявання"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
@@ -3152,18 +3114,18 @@ msgid ""
"\n"
"Do you really want to quit now?"
msgstr ""
-" i .\n"
-" i ?"
+"Некаторыя крокi не завершаны.\n"
+"Вы сапраўды жадаеце выйсцi зараз?"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Creating auto install floppy..."
-msgstr " "
+msgstr "Стварэнне дыскеты для ўсталявання"
#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
#, c-format
msgid "Insert a blank floppy in drive %s"
-msgstr " %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3179,12 +3141,12 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Installation of bootloader failed. The following error occured:"
-msgstr " . i :"
+msgstr "Працэс усталявання загрузчыка не атрымаўся. Узнiкла наступная памылка:"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Installing bootloader"
-msgstr " "
+msgstr "Усталяванне загрузчыку"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3192,13 +3154,13 @@ msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-" boot, \n"
-" 븢, ?"
+"Памылка ўсталявання аboot, \n"
+"спрабаваць усталёўваць, негледзячы на магчымасць парушэння першага разделу?"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Do you want to use aboot?"
-msgstr " aboot?"
+msgstr "Вы жадаеце выкарыстоўваць aboot?"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3212,27 +3174,27 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Preparing bootloader..."
-msgstr " "
+msgstr "Падрыхтоўка загрузчыка"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Domain Admin Password"
-msgstr "i "
+msgstr "Падцвердзiць пароль"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Domain Admin User Name"
-msgstr "I "
+msgstr "Iмя дамену"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Windows Domain"
-msgstr " "
+msgstr "Навуковыя прыкладанні"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Authentication Windows Domain"
-msgstr "i"
+msgstr "Аўтэнтыфiкацыя"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3254,7 +3216,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "NIS Server"
-msgstr "NIS :"
+msgstr "NIS сервер:"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3264,17 +3226,17 @@ msgstr "NIS Domain"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Authentication NIS"
-msgstr "i NIS"
+msgstr "Аўтэнтыфiкацыя NIS"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "NIS"
-msgstr " NIS"
+msgstr "Выкарыстоўваць NIS"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "LDAP Server"
-msgstr ""
+msgstr "сервер"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3284,7 +3246,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Authentication LDAP"
-msgstr "i"
+msgstr "Аўтэнтыфiкацыя"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3294,30 +3256,30 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Local files"
-msgstr " "
+msgstr "Лакальны прынтэр"
#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
#: ../../standalone/drakconnect:1 ../../standalone/logdrake:1
#, c-format
msgid "Authentication"
-msgstr "i"
+msgstr "Аўтэнтыфiкацыя"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-" ( i %d i)"
+"Гэты пароль занадта просты (яго даўжыня павiнна быць не меней за %d лiтараў)"
#. -PO: keep this short or else the buttons will not fit in the window
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "No password"
-msgstr " "
+msgstr "Няма паролю"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Set root password"
-msgstr " root"
+msgstr "Пароль для root"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3332,7 +3294,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1 ../../services.pm:1
#, fuzzy, c-format
msgid "Services"
-msgstr ""
+msgstr "прылада"
#: ../../install_steps_interactive.pm:1 ../../services.pm:1
#: ../../standalone/drakbackup:1
@@ -3340,10 +3302,16 @@ msgstr ""
msgid "System"
msgstr "Mouse Systems"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "Порт"
+
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
-msgstr " i "
+msgstr "Галоўныя опцыi пачатковага загрузчыку"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
@@ -3353,12 +3321,12 @@ msgstr "Root"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "disabled"
-msgstr "i"
+msgstr "Таблiца"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "activated"
-msgstr ""
+msgstr "Актыўны"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3368,27 +3336,27 @@ msgstr ""
#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, fuzzy, c-format
msgid "Security"
-msgstr ""
+msgstr "кучаравы"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Security Level"
-msgstr "i i"
+msgstr "Настройкi ўзроўня бяспекi"
#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Network"
-msgstr ":"
+msgstr "Сетка:"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Network & Internet"
-msgstr " i"
+msgstr "Сеткавы iнтэрфейс"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Graphical interface"
-msgstr " X i"
+msgstr "Запуск X пры старце сiстэмы"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3413,33 +3381,33 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Do you have an ISA sound card?"
-msgstr "i i?"
+msgstr "Цi ёсць у вас iншы?"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Sound card"
-msgstr ""
+msgstr "Стандартны"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Remote CUPS server"
-msgstr " CUPS"
+msgstr "Аддалены сервер CUPS"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "No printer"
-msgstr "I i"
+msgstr "Iмя друкаркi"
#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer"
-msgstr ""
+msgstr "Прынтэр"
#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Mouse"
-msgstr " "
+msgstr "Порт мышы"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3449,7 +3417,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1 ../../standalone/keyboarddrake:1
#, c-format
msgid "Keyboard"
-msgstr "i"
+msgstr "Клавiятура"
#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, c-format
@@ -3459,7 +3427,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "NTP Server"
-msgstr "NIS :"
+msgstr "NIS сервер:"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3469,38 +3437,38 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Hardware clock set to GMT"
-msgstr " i ii GMT?"
+msgstr "Ваш сiстэмны гадзiннiк усталяваны на GMT?"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Which is your timezone?"
-msgstr "i ?"
+msgstr "Якi ваш часавы пояс?"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Would you like to try again?"
-msgstr " i ?"
+msgstr "Жадаеце настроiць прынтэр?"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Unable to contact mirror %s"
-msgstr "i "
+msgstr "Зрабiць неактыўным сеткавае злучэнне"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
-msgstr " i "
+msgstr "Сувязь з люрам для атрымання спiсу даступных пакетаў"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose a mirror from which to get the packages"
-msgstr " "
+msgstr "Выбар люстра для атрымання пакетаў"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
-msgstr " i "
+msgstr "Сувязь з люрам для атрымання спiсу даступных пакетаў"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3518,17 +3486,17 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
-msgstr " %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
-msgstr " %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Post-install configuration"
-msgstr " "
+msgstr "Настройка пасля ўсталявання"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3536,18 +3504,18 @@ msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-" %s\n"
+"Усталяванне пакету %s\n"
"%d%%"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Preparing installation"
-msgstr " "
+msgstr "Падрыхтоўка ўсталяваньня"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom \"%s\""
+msgstr "Cd-Rom пазначаны \"%s\""
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3556,14 +3524,14 @@ msgid ""
"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, ii .\n"
-"i i CD , ii i.\n"
-"i CD , i i i ii ."
+"Кал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:1 ../../standalone/drakxtv:1
#, c-format
msgid "All"
-msgstr ""
+msgstr "Усё"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3578,7 +3546,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "With X"
-msgstr ""
+msgstr "Чакайце"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3590,7 +3558,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Type of install"
-msgstr " "
+msgstr "Выбар пакетаў для усталявання"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3600,27 +3568,27 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Insert a floppy containing package selection"
-msgstr " %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Loading from floppy"
-msgstr " "
+msgstr "Аднаўленне з дыскеты"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Package selection"
-msgstr " "
+msgstr "Выбар групы пакетаў"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Save on floppy"
-msgstr " "
+msgstr "Захаванне на дыскету"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Load from floppy"
-msgstr " "
+msgstr "Аднаўленне з дыскеты"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3635,33 +3603,33 @@ msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
-" i i (%d > %d)"
+"Ваша сiстэма не мае дастакова месца для ўсталявання цi абнаўлення (%d > %d)"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Looking for available packages..."
-msgstr " "
+msgstr "Прагляд даступных пакетаў"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Finding packages to upgrade..."
-msgstr " "
+msgstr "Пошук пакетаў для абнаўлення"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Looking at packages already installed..."
-msgstr " i . "
+msgstr "Вы не можаце адмянiць вылучэнне гэтага пакету. Ён ужо ўсталяваны"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Looking for available packages and rebuilding rpm database..."
-msgstr " "
+msgstr "Прагляд даступных пакетаў"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-" i (swap) , i ."
+"Не хапае месца ў буферы падкачкi (swap) для ўсталявання, павялiчце яго."
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3673,17 +3641,17 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Check bad blocks?"
-msgstr " ?"
+msgstr "Праверыць на наяўнасць дрэнных блокаў?"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose the partitions you want to format"
-msgstr " "
+msgstr "Выбар раздзелаў для фарматавання"
#: ../../install_steps_interactive.pm:1
#, c-format
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:1
#, c-format
@@ -3695,7 +3663,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose the mount points"
-msgstr " i"
+msgstr "Абярыце пункты манцiравання"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3705,12 +3673,12 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "No partition available"
-msgstr " "
+msgstr "няма даступных раздзелаў"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Configuring IDE"
-msgstr " IDE"
+msgstr "Настройка IDE"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3720,7 +3688,7 @@ msgstr "IDE"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Configuring PCMCIA cards..."
-msgstr " PCMCIA ..."
+msgstr "Настройка карт PCMCIA ..."
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3745,32 +3713,37 @@ msgstr ""
#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
#, c-format
msgid "Please choose which serial port your mouse is connected to."
-msgstr "i , , ."
+msgstr "Калi ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
#, c-format
msgid "Mouse Port"
-msgstr " "
+msgstr "Порт мышы"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Please choose your type of mouse."
-msgstr "i , ."
+msgstr "калi ласка, пазначце тып вашай мышы."
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Паролi не супадаюць"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Upgrade %s"
-msgstr " %s"
+msgstr "Раздзел %s"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Is this an install or an upgrade?"
-msgstr " i "
+msgstr "Абярыце ўсталяванне цi абнаўленне"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Install/Upgrade"
-msgstr "븢"
+msgstr "Усталёўка"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -3780,7 +3753,7 @@ msgstr ""
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Please choose your keyboard layout."
-msgstr "i , i."
+msgstr "Калi ласка, абярыце тып клавiятуры."
#: ../../install_steps_interactive.pm:1 ../../Xconfig/main.pm:1
#: ../../diskdrake/dav.pm:1 ../../printer/printerdrake.pm:1
@@ -3789,39 +3762,39 @@ msgstr "i , i."
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Quit"
-msgstr ""
+msgstr "Выхад"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "License agreement"
-msgstr "˳ "
+msgstr "Ліцэнзійная дамова"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "An error occurred"
-msgstr " "
+msgstr "Адбылася памылка"
#: ../../install_steps_newt.pm:1
#, c-format
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:1
#, c-format
msgid "Mandrake Linux Installation %s"
-msgstr " Mandrake Linux %s"
+msgstr "Усталяванне Mandrake Linux %s"
#: ../../install_steps.pm:1
#, c-format
msgid "No floppy drive available"
-msgstr " "
+msgstr "Дыскавод недаступны"
#: ../../install_steps.pm:1
#, c-format
msgid "Welcome to %s"
-msgstr "Сардэчна запрашаем у %s"
+msgstr "Сардэчна запрашаем у %s"
#: ../../install_steps.pm:1
#, c-format
@@ -3831,15 +3804,15 @@ msgid ""
"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/*."
+"Некаторыя важныя пакеты не былi ўсталяваны карэктна.\n"
+"Другi ваш cdrom дыск цi ваш cdrom маюць дэфекты.\n"
+"Праверце cdrom на вашым кампутары, выкарыстоўваючы\"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
#: ../../install_steps.pm:1
#, c-format
msgid "Duplicate mount point %s"
-msgstr " i %s"
+msgstr "Дубляванне пункту манцiравання %s"
#: ../../install_steps.pm:1
#, c-format
@@ -3847,15 +3820,15 @@ msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
-"i , ,\n"
-" ."
+"Узнiкла памылка, якую не атрымліваецца карэктна апрацаваць,\n"
+"таму працягвайце на сваю рызыку."
#: ../../interactive.pm:1 ../../harddrake/sound.pm:1
#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
#: ../../standalone/service_harddrake:1
#, c-format
msgid "Please wait"
-msgstr "i , "
+msgstr "Калi ласка, пачакайце"
#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/http.pm:1
@@ -3863,18 +3836,18 @@ msgstr "i , "
#: ../../standalone/drakbackup:1 ../../standalone/draksec:1
#, c-format
msgid "Ok"
-msgstr ""
+msgstr "Ок"
#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
#: ../../interactive/newt.pm:1
#, fuzzy, c-format
msgid "Finish"
-msgstr "ii"
+msgstr "Фiнскi"
#: ../../interactive.pm:1 ../../standalone/draksec:1
#, c-format
msgid "Basic"
-msgstr ""
+msgstr "Простые"
#: ../../interactive.pm:1
#, c-format
@@ -3884,23 +3857,23 @@ msgstr ""
#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
#, fuzzy, c-format
msgid "Remove"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
#, fuzzy, c-format
msgid "Modify"
-msgstr "i RAID"
+msgstr "Змянiць RAID"
#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, c-format
msgid "Add"
-msgstr ""
+msgstr "Дадаць"
#: ../../interactive.pm:1
#, fuzzy, c-format
msgid "Choose a file"
-msgstr " "
+msgstr "Абярыце дзеянне"
#: ../../keyboard.pm:1
#, c-format
@@ -3958,57 +3931,57 @@ msgstr ""
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Yugoslavian (latin)"
-msgstr " (latin)"
+msgstr "Азербайджанскі (latin)"
#: ../../keyboard.pm:1
#, c-format
msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "i \" \" QWERTY"
+msgstr "Вьетнамскi \"нумар радка\" QWERTY"
#: ../../keyboard.pm:1
#, c-format
msgid "US keyboard (international)"
-msgstr "US i (i)"
+msgstr "US клавiятура (мiжнародная)"
#: ../../keyboard.pm:1
#, c-format
msgid "US keyboard"
-msgstr "US i"
+msgstr "US клавiятура"
#: ../../keyboard.pm:1
#, c-format
msgid "UK keyboard"
-msgstr "UK i"
+msgstr "UK клавiятура"
#: ../../keyboard.pm:1
#, c-format
msgid "Ukrainian"
-msgstr "ii"
+msgstr "Украiнскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Turkish (modern \"Q\" model)"
-msgstr "i ( \"Q\" )"
+msgstr "Турэцкi (сучасная \"Q\" мадэль)"
#: ../../keyboard.pm:1
#, c-format
msgid "Turkish (traditional \"F\" model)"
-msgstr "i ( \"F\" )"
+msgstr "Турэцкi (традыцыёная \"F\" мадэль)"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Tajik keyboard"
-msgstr " i"
+msgstr "Тайская клавiятура"
#: ../../keyboard.pm:1
#, c-format
msgid "Thai keyboard"
-msgstr " i"
+msgstr "Тайская клавiятура"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Tamil (Typewriter-layout)"
-msgstr "i (typewriter)"
+msgstr "Армянскi (typewriter)"
#: ../../keyboard.pm:1
#, c-format
@@ -4018,77 +3991,77 @@ msgstr ""
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Serbian (cyrillic)"
-msgstr " ()"
+msgstr "Азербайджанскі (кірыліца)"
#: ../../keyboard.pm:1
#, c-format
msgid "Slovakian (QWERTY)"
-msgstr "i (QWERTY)"
+msgstr "Славацкi (QWERTY)"
#: ../../keyboard.pm:1
#, c-format
msgid "Slovakian (QWERTZ)"
-msgstr "i (QWERTZ)"
+msgstr "Славацкi (QWERTZ)"
#: ../../keyboard.pm:1
#, c-format
msgid "Slovenian"
-msgstr "i"
+msgstr "Славенскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Swedish"
-msgstr "i"
+msgstr "Швецкi"
#: ../../keyboard.pm:1
#, c-format
msgid "Russian (Yawerty)"
-msgstr "i (-----)"
+msgstr "Рускi (Я-В-Е-Р-Т-И)"
#: ../../keyboard.pm:1
#, c-format
msgid "Russian"
-msgstr "i"
+msgstr "Рускi"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Romanian (qwerty)"
-msgstr "i (-----)"
+msgstr "Рускi (Я-В-Е-Р-Т-И)"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Romanian (qwertz)"
-msgstr "i (-----)"
+msgstr "Рускi (Я-В-Е-Р-Т-И)"
#: ../../keyboard.pm:1
#, c-format
msgid "Canadian (Quebec)"
-msgstr "i ()"
+msgstr "Канадскi (Квебэк)"
#: ../../keyboard.pm:1
#, c-format
msgid "Portuguese"
-msgstr "i"
+msgstr "Партугальскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Polish (qwertz layout)"
-msgstr "i (qwertz )"
+msgstr "Польскi (qwertz раскладка)"
#: ../../keyboard.pm:1
#, c-format
msgid "Polish (qwerty layout)"
-msgstr "i ( )"
+msgstr "Польскi (стандартная раскладка)"
#: ../../keyboard.pm:1
#, c-format
msgid "Norwegian"
-msgstr "i"
+msgstr "Нарвежскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Dutch"
-msgstr "i"
+msgstr "Галандскi"
#: ../../keyboard.pm:1
#, c-format
@@ -4103,7 +4076,7 @@ msgstr ""
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Mongolian (cyrillic)"
-msgstr " ()"
+msgstr "Азербайджанскі (кірыліца)"
#: ../../keyboard.pm:1
#, c-format
@@ -4123,47 +4096,47 @@ msgstr ""
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Latvian"
-msgstr ""
+msgstr "Размеркаванне"
#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "ii \"\" QWERTY"
+msgstr "Лiтоўскi \"фанетычны\" QWERTY"
#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian \"number row\" QWERTY"
-msgstr "ii \" \" QWERTY"
+msgstr "Лiтоўскi \"нумар радка\" QWERTY"
#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian AZERTY (new)"
-msgstr "ii AZERTY ()"
+msgstr "Лiтоўскi AZERTY (новы)"
#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian AZERTY (old)"
-msgstr "ii AZERTY ()"
+msgstr "Лiтоўскi AZERTY (стары)"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Laotian"
-msgstr ""
+msgstr "Размеркаванне"
#: ../../keyboard.pm:1
#, c-format
msgid "Latin American"
-msgstr "i-i"
+msgstr "Лацiна-Амерыканскi"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Korean keyboard"
-msgstr "UK i"
+msgstr "UK клавiятура"
#: ../../keyboard.pm:1
#, c-format
msgid "Japanese 106 keys"
-msgstr "i 106 i"
+msgstr "Японскi 106 клавiш"
#: ../../keyboard.pm:1
#, c-format
@@ -4173,37 +4146,37 @@ msgstr ""
#: ../../keyboard.pm:1
#, c-format
msgid "Italian"
-msgstr "Ii"
+msgstr "Iтальянскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Icelandic"
-msgstr "Ii"
+msgstr "Iсландскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Iranian"
-msgstr "Ii"
+msgstr "Iранскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Israeli (Phonetic)"
-msgstr "I ()"
+msgstr "Iўрыт (фанетычны)"
#: ../../keyboard.pm:1
#, c-format
msgid "Israeli"
-msgstr "I"
+msgstr "Iўрыт"
#: ../../keyboard.pm:1
#, c-format
msgid "Croatian"
-msgstr "i"
+msgstr "Харвацкi"
#: ../../keyboard.pm:1
#, c-format
msgid "Hungarian"
-msgstr "i"
+msgstr "Мадьярскi"
#: ../../keyboard.pm:1
#, c-format
@@ -4218,37 +4191,37 @@ msgstr ""
#: ../../keyboard.pm:1
#, c-format
msgid "Greek"
-msgstr "i"
+msgstr "Грэчаскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Georgian (\"Latin\" layout)"
-msgstr "ii (\"i\" )"
+msgstr "Грузiнскi (\"Лацiнская\" раскладка)"
#: ../../keyboard.pm:1
#, c-format
msgid "Georgian (\"Russian\" layout)"
-msgstr "ii (\"\" )"
+msgstr "Грузiнскi (\"Руская\" раскладка)"
#: ../../keyboard.pm:1
#, c-format
msgid "French"
-msgstr "i"
+msgstr "Французскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Finnish"
-msgstr "ii"
+msgstr "Фiнскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Spanish"
-msgstr "Ii"
+msgstr "Iспанскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Estonian"
-msgstr "i"
+msgstr "Эстонскi"
#: ../../keyboard.pm:1
#, fuzzy, c-format
@@ -4258,7 +4231,7 @@ msgstr "Dvorak (US)"
#: ../../keyboard.pm:1
#, c-format
msgid "Dvorak (Norwegian)"
-msgstr "Dvorak (i)"
+msgstr "Dvorak (Нарвежскi)"
#: ../../keyboard.pm:1
#, c-format
@@ -4268,7 +4241,7 @@ msgstr "Dvorak (US)"
#: ../../keyboard.pm:1
#, c-format
msgid "Danish"
-msgstr "i"
+msgstr "Дацкi"
#: ../../keyboard.pm:1
#, c-format
@@ -4278,72 +4251,72 @@ msgstr ""
#: ../../keyboard.pm:1
#, c-format
msgid "German (no dead keys)"
-msgstr "i ( i i)"
+msgstr "Нямецкi (няма заблакiраваных клавiш)"
#: ../../keyboard.pm:1
#, c-format
msgid "German"
-msgstr "i"
+msgstr "Нямецкi"
#: ../../keyboard.pm:1
#, c-format
msgid "Czech (QWERTY)"
-msgstr "i (QWERTY)"
+msgstr "Чешскi (QWERTY)"
#: ../../keyboard.pm:1
#, c-format
msgid "Czech (QWERTZ)"
-msgstr "i (QWERTZ)"
+msgstr "Чешскi (QWERTZ)"
#: ../../keyboard.pm:1
#, c-format
msgid "Swiss (French layout)"
-msgstr "i ( )"
+msgstr "Швейцарскi (Французская раскладка)"
#: ../../keyboard.pm:1
#, c-format
msgid "Swiss (German layout)"
-msgstr "i ( )"
+msgstr "Швейцарскi (Нямецкая раскладка)"
#: ../../keyboard.pm:1
#, c-format
msgid "Belarusian"
-msgstr ""
+msgstr "Беларускі"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Bosnian"
-msgstr "i"
+msgstr "Эстонскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Brazilian (ABNT-2)"
-msgstr "ii (ABNT-2)"
+msgstr "Бразiльскi (ABNT-2)"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Bulgarian (BDS)"
-msgstr "i"
+msgstr "Балгарскi"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Bulgarian (phonetic)"
-msgstr "i ()"
+msgstr "Армянскi (фанетычны)"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Bengali"
-msgstr "i"
+msgstr "Таблiца"
#: ../../keyboard.pm:1
#, c-format
msgid "Belgian"
-msgstr "ii"
+msgstr "Бельгiйскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Azerbaidjani (latin)"
-msgstr " (latin)"
+msgstr "Азербайджанскі (latin)"
#: ../../keyboard.pm:1
#, c-format
@@ -4353,27 +4326,27 @@ msgstr ""
#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (phonetic)"
-msgstr "i ()"
+msgstr "Армянскi (фанетычны)"
#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (typewriter)"
-msgstr "i (typewriter)"
+msgstr "Армянскi (typewriter)"
#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (old)"
-msgstr "i ()"
+msgstr "Армянскi (стары)"
#: ../../keyboard.pm:1
#, fuzzy, c-format
msgid "Albanian"
-msgstr "Ii"
+msgstr "Iранскi"
#: ../../keyboard.pm:1
#, c-format
msgid "Polish"
-msgstr "i"
+msgstr "Польскi"
#: ../../keyboard.pm:1
#, c-format
@@ -4383,7 +4356,7 @@ msgstr "Dvorak"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Zimbabwe"
-msgstr " "
+msgstr "можа быць"
#: ../../lang.pm:1
#, c-format
@@ -4398,7 +4371,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Serbia"
-msgstr ""
+msgstr "паслядоўная"
#: ../../lang.pm:1
#, c-format
@@ -4453,7 +4426,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Vatican"
-msgstr ""
+msgstr "Размеркаванне"
#: ../../lang.pm:1
#, c-format
@@ -4473,12 +4446,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Uganda"
-msgstr ""
+msgstr "Адкат"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Ukraine"
-msgstr "ii"
+msgstr "Украiнскi"
#: ../../lang.pm:1
#, c-format
@@ -4488,7 +4461,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Taiwan"
-msgstr ""
+msgstr "Размеркаванне"
#: ../../lang.pm:1
#, c-format
@@ -4583,7 +4556,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Suriname"
-msgstr "I "
+msgstr "Iмя для размеркаванага рэсурсу"
#: ../../lang.pm:1
#, fuzzy, c-format
@@ -4593,7 +4566,7 @@ msgstr "NIS Domain"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Senegal"
-msgstr "i"
+msgstr "Таблiца"
#: ../../lang.pm:1
#, c-format
@@ -4608,7 +4581,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Slovakia"
-msgstr "i"
+msgstr "Славенскi"
#: ../../lang.pm:1
#, c-format
@@ -4618,7 +4591,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Slovenia"
-msgstr "i"
+msgstr "Славенскi"
#: ../../lang.pm:1
#, c-format
@@ -4638,7 +4611,7 @@ msgstr "SunOS"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Seychelles"
-msgstr ":"
+msgstr "Абалонка:"
#: ../../lang.pm:1
#, c-format
@@ -4658,7 +4631,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Russia"
-msgstr "i"
+msgstr "Рускi"
#: ../../lang.pm:1
#, fuzzy, c-format
@@ -4668,12 +4641,12 @@ msgstr "NIS Domain"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Reunion"
-msgstr " "
+msgstr "Памеры экрану"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Qatar"
-msgstr " "
+msgstr "Стартавае меню"
#: ../../lang.pm:1
#, c-format
@@ -4688,12 +4661,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Portugal"
-msgstr ""
+msgstr "Порт"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Palestine"
-msgstr "i "
+msgstr "Асабiсты выбар пакетаў"
#: ../../lang.pm:1
#, c-format
@@ -4703,7 +4676,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Pitcairn"
-msgstr ""
+msgstr "Прынтэр"
#: ../../lang.pm:1
#, c-format
@@ -4713,7 +4686,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Poland"
-msgstr "Ii"
+msgstr "Iсландскi"
#: ../../lang.pm:1
#, c-format
@@ -4758,7 +4731,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Niue"
-msgstr ""
+msgstr "гальштук"
#: ../../lang.pm:1
#, c-format
@@ -4778,7 +4751,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Nigeria"
-msgstr ""
+msgstr "паслядоўная"
#: ../../lang.pm:1
#, c-format
@@ -4788,7 +4761,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Niger"
-msgstr "i"
+msgstr "Высокi"
#: ../../lang.pm:1
#, c-format
@@ -4813,7 +4786,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Mexico"
-msgstr " "
+msgstr "Порт мышы"
#: ../../lang.pm:1
#, c-format
@@ -4838,7 +4811,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Montserrat"
-msgstr " "
+msgstr "Порт мышы"
#: ../../lang.pm:1
#, c-format
@@ -4893,7 +4866,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Monaco"
-msgstr "i"
+msgstr "Манiтор"
#: ../../lang.pm:1
#, c-format
@@ -4908,7 +4881,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Latvia"
-msgstr ""
+msgstr "Размеркаванне"
#: ../../lang.pm:1
#, c-format
@@ -4928,7 +4901,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Liberia"
-msgstr ""
+msgstr "паслядоўная"
#: ../../lang.pm:1
#, c-format
@@ -4968,12 +4941,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Kuwait"
-msgstr ""
+msgstr "Выхад"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Korea"
-msgstr ""
+msgstr "Перанос"
#: ../../lang.pm:1
#, c-format
@@ -5008,7 +4981,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Kenya"
-msgstr "i"
+msgstr "Клавiятура"
#: ../../lang.pm:1
#, c-format
@@ -5018,7 +4991,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Jordan"
-msgstr "Ii"
+msgstr "Iранскi"
#: ../../lang.pm:1
#, c-format
@@ -5028,12 +5001,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Iceland"
-msgstr "Ii"
+msgstr "Iсландскi"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Iran"
-msgstr "Ii"
+msgstr "Iранскi"
#: ../../lang.pm:1
#, c-format
@@ -5048,27 +5021,27 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "India"
-msgstr "Ii"
+msgstr "Iранскi"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Israel"
-msgstr "I"
+msgstr "Iўрыт"
#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "Ireland"
-msgstr "Ii"
+msgstr "Iсландскi"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Indonesia"
-msgstr ""
+msgstr "няма"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Hungary"
-msgstr "i"
+msgstr "Мадьярскi"
#: ../../lang.pm:1
#, c-format
@@ -5078,7 +5051,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Croatia"
-msgstr "i"
+msgstr "Харвацкi"
#: ../../lang.pm:1
#, c-format
@@ -5108,12 +5081,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Guam"
-msgstr ""
+msgstr "Забавы"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Guatemala"
-msgstr ""
+msgstr "Шлюз"
#: ../../lang.pm:1
#, c-format
@@ -5133,7 +5106,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Guinea"
-msgstr ""
+msgstr "Агульны"
#: ../../lang.pm:1
#, c-format
@@ -5143,7 +5116,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Greenland"
-msgstr "Ii"
+msgstr "Iсландскi"
#: ../../lang.pm:1
#, c-format
@@ -5158,12 +5131,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "French Guiana"
-msgstr "i"
+msgstr "Французскi"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Georgia"
-msgstr "i"
+msgstr "Нарвежскi"
#: ../../lang.pm:1
#, c-format
@@ -5183,7 +5156,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Faroe Islands"
-msgstr "Ii"
+msgstr "Iсландскi"
#: ../../lang.pm:1
#, c-format
@@ -5198,7 +5171,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Fiji"
-msgstr "ii"
+msgstr "Фiнскi"
#: ../../lang.pm:1
#, c-format
@@ -5208,17 +5181,17 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Ethiopia"
-msgstr "i"
+msgstr "Эстонскi"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Spain"
-msgstr "Ii"
+msgstr "Iспанскi"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Eritrea"
-msgstr ""
+msgstr "Эксперт"
#: ../../lang.pm:1
#, c-format
@@ -5228,12 +5201,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Egypt"
-msgstr ""
+msgstr "Пуста"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Estonia"
-msgstr "i"
+msgstr "Эстонскi"
#: ../../lang.pm:1
#, c-format
@@ -5243,7 +5216,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Algeria"
-msgstr ""
+msgstr "паслядоўная"
#: ../../lang.pm:1
#, c-format
@@ -5263,7 +5236,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Djibouti"
-msgstr "i"
+msgstr "Адмянiць"
#: ../../lang.pm:1
#, c-format
@@ -5278,7 +5251,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Cape Verde"
-msgstr " "
+msgstr "Згарнуць дрэва"
#: ../../lang.pm:1
#, c-format
@@ -5303,7 +5276,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Chile"
-msgstr " "
+msgstr "Порт мышы"
#: ../../lang.pm:1
#, c-format
@@ -5343,22 +5316,22 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Canada"
-msgstr "i ()"
+msgstr "Канадскi (Квебэк)"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Belize"
-msgstr " "
+msgstr "Змяненне памераў"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Belarus"
-msgstr ""
+msgstr "Беларускі"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Botswana"
-msgstr "i"
+msgstr "Эстонскi"
#: ../../lang.pm:1
#, c-format
@@ -5393,12 +5366,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Bermuda"
-msgstr "i"
+msgstr "Нямецкi"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Benin"
-msgstr "ii"
+msgstr "Бельгiйскi"
#: ../../lang.pm:1
#, c-format
@@ -5413,7 +5386,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Bulgaria"
-msgstr "i"
+msgstr "Мадьярскi"
#: ../../lang.pm:1
#, c-format
@@ -5438,7 +5411,7 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Azerbaijan"
-msgstr "Ii"
+msgstr "Iранскi"
#: ../../lang.pm:1
#, fuzzy, c-format
@@ -5448,7 +5421,7 @@ msgstr "Grub"
#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "Australia"
-msgstr ""
+msgstr "паслядоўная"
#: ../../lang.pm:1
#, c-format
@@ -5478,12 +5451,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Armenia"
-msgstr "i ()"
+msgstr "Армянскi (стары)"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Albania"
-msgstr "Ii"
+msgstr "Iранскi"
#: ../../lang.pm:1
#, c-format
@@ -5503,12 +5476,12 @@ msgstr ""
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Andorra"
-msgstr ""
+msgstr "Адкат"
#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Afghanistan"
-msgstr "Ii"
+msgstr "Iранскi"
#: ../../lang.pm:1
#, c-format
@@ -5518,7 +5491,7 @@ msgstr "default:LTR"
#: ../../loopback.pm:1
#, c-format
msgid "Circular mounts %s\n"
-msgstr "i %s\n"
+msgstr "Манцiраванне дыску %s\n"
#: ../../lvm.pm:1
#, c-format
@@ -5534,47 +5507,47 @@ msgstr ""
#: ../../mouse.pm:1
#, c-format
msgid "MOVE YOUR WHEEL!"
-msgstr " !"
+msgstr "Рушце колам мышы!"
#: ../../mouse.pm:1
#, fuzzy, c-format
msgid "To activate the mouse,"
-msgstr " , ."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
#: ../../mouse.pm:1
#, c-format
msgid "Please test the mouse"
-msgstr " , ."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
#: ../../mouse.pm:1
#, c-format
msgid "No mouse"
-msgstr " "
+msgstr "Няма мышы"
#: ../../mouse.pm:1
#, c-format
msgid "none"
-msgstr ""
+msgstr "няма"
#: ../../mouse.pm:1
#, c-format
msgid "3 buttons"
-msgstr "3 i"
+msgstr "3 кнопкi"
#: ../../mouse.pm:1
#, c-format
msgid "2 buttons"
-msgstr "2 i"
+msgstr "2 кнопкi"
#: ../../mouse.pm:1
#, fuzzy, c-format
msgid "1 button"
-msgstr "2 i"
+msgstr "2 кнопкi"
#: ../../mouse.pm:1
#, fuzzy, c-format
msgid "busmouse"
-msgstr " "
+msgstr "Няма мышы"
#: ../../mouse.pm:1
#, c-format
@@ -5584,7 +5557,7 @@ msgstr "Kensington Thinking Mouse"
#: ../../mouse.pm:1
#, c-format
msgid "Logitech Mouse (serial, old C7 type)"
-msgstr "Logitech Mouse (, C7)"
+msgstr "Logitech Mouse (паслядоўная, стары тып C7)"
#: ../../mouse.pm:1
#, c-format
@@ -5629,17 +5602,17 @@ msgstr "Microsoft IntelliMouse"
#: ../../mouse.pm:1
#, c-format
msgid "Generic 3 Button Mouse"
-msgstr " 3 "
+msgstr "Звычайная мыш з 3 кнопкамі"
#: ../../mouse.pm:1
#, c-format
msgid "Generic 2 Button Mouse"
-msgstr " 2 "
+msgstr "Звычайная мыш з 2 кнопкамі"
#: ../../mouse.pm:1
#, c-format
msgid "serial"
-msgstr ""
+msgstr "паслядоўная"
#: ../../mouse.pm:1
#, fuzzy, c-format
@@ -5649,12 +5622,12 @@ msgstr "Microsoft IntelliMouse"
#: ../../mouse.pm:1
#, c-format
msgid "Wheel"
-msgstr " "
+msgstr "З колам"
#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
#, c-format
msgid "Generic"
-msgstr ""
+msgstr "Агульны"
#: ../../mouse.pm:1
#, c-format
@@ -5669,7 +5642,7 @@ msgstr "GlidePoint"
#: ../../mouse.pm:1
#, fuzzy, c-format
msgid "Generic PS2 Wheel Mouse"
-msgstr " 2 "
+msgstr "Звычайная мыш з 2 кнопкамі"
#: ../../mouse.pm:1
#, c-format
@@ -5679,37 +5652,37 @@ msgstr "Logitech MouseMan+"
#: ../../mouse.pm:1 ../../security/level.pm:1
#, c-format
msgid "Standard"
-msgstr ""
+msgstr "Стандартны"
#: ../../mouse.pm:1
#, c-format
msgid "Sun - Mouse"
-msgstr "Sun - "
+msgstr "Sun - Мыш"
#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Toggle between flat and group sorted"
-msgstr " i i "
+msgstr "Пераключэнне памiж упарадкаваннем па групе i асобках"
#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Collapse Tree"
-msgstr " "
+msgstr "Згарнуць дрэва"
#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Expand Tree"
-msgstr " "
+msgstr "Разгарнуць дрэва"
#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Info"
-msgstr "I"
+msgstr "Iнфармацыя"
#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Is this correct?"
-msgstr " ?"
+msgstr "Гэта дакладна?"
#: ../../my_gtk.pm:1
#, c-format
@@ -5719,17 +5692,17 @@ msgstr ""
#: ../../partition_table.pm:1
#, c-format
msgid "Error writing to file %s"
-msgstr " i %s"
+msgstr "Памылка запiсу ў файл %s"
#: ../../partition_table.pm:1
#, c-format
msgid "Bad backup file"
-msgstr " ii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../partition_table.pm:1
#, c-format
msgid "Restoring from file %s failed: %s"
-msgstr " %s : %s"
+msgstr "Аднаўленне з файла %s не атрымалася: %s"
#: ../../partition_table.pm:1
#, c-format
@@ -5738,74 +5711,74 @@ msgid ""
"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\n"
-" (extended) "
+"Вы маеце дзiрку ў таблiцы радзелаў, але я не маю магчымасцi яе скарыстаць.\n"
+"Адзiны выхад у тым, каб перамясцiць першасныя раздзелы так, каб дзiрка iшла\n"
+"адразу за пашыраным (extended) раздзелам"
#: ../../partition_table.pm:1
#, c-format
msgid "Extended partition not supported on this platform"
-msgstr " i "
+msgstr "Пашыраны раздзел не падтрымлiваецца гэтай платформай"
#: ../../partition_table.pm:1
#, c-format
msgid "mount failed: "
-msgstr " i: "
+msgstr "памылка манцiравання: "
#: ../../pkgs.pm:1
#, c-format
msgid "maybe"
-msgstr " "
+msgstr "можа быць"
#: ../../pkgs.pm:1
#, c-format
msgid "nice"
-msgstr ""
+msgstr "добра"
#: ../../pkgs.pm:1
#, c-format
msgid "very nice"
-msgstr "i "
+msgstr "вельмi добра"
#: ../../pkgs.pm:1
#, c-format
msgid "important"
-msgstr ""
+msgstr "важна"
#: ../../pkgs.pm:1
#, c-format
msgid "must have"
-msgstr "i "
+msgstr "павiнны мець"
#: ../../raid.pm:1
#, c-format
msgid "Not enough partitions for RAID level %d\n"
-msgstr " RAID %d\n"
+msgstr "Недастаткова раздзелаў для RAID узроўня %d\n"
#: ../../raid.pm:1
#, c-format
msgid "mkraid failed"
-msgstr "mkraid "
+msgstr "mkraid не працаздольны"
#: ../../raid.pm:1
#, c-format
msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid ( raid i?)"
+msgstr "mkraid не працаздольны (можа raid прылады адсутнiчаюць?)"
#: ../../raid.pm:1
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
-msgstr " i _i_ RAID md%d"
+msgstr "Не атрымлiваецца дадаць раздзел на _адфармацiраваны_ RAID md%d"
#: ../../services.pm:1
#, fuzzy, c-format
msgid "Stop"
-msgstr ""
+msgstr "Сектар"
#: ../../services.pm:1
#, fuzzy, c-format
msgid "Start"
-msgstr " "
+msgstr "Стартавае меню"
#: ../../services.pm:1
#, fuzzy, c-format
@@ -5827,27 +5800,27 @@ msgstr ""
#: ../../services.pm:1
#, fuzzy, c-format
msgid "stopped"
-msgstr ""
+msgstr "Далучыць"
#: ../../services.pm:1
#, fuzzy, c-format
msgid "running"
-msgstr "!"
+msgstr "Увага!"
#: ../../services.pm:1
#, c-format
msgid "Choose which services should be automatically started at boot time"
-msgstr ", i i "
+msgstr "Абярыце, якiя сервiсы запускаць аўтаматычна пры загрузцы"
#: ../../services.pm:1
#, fuzzy, c-format
msgid "Database Server"
-msgstr " "
+msgstr "Сервер друку"
#: ../../services.pm:1
#, fuzzy, c-format
msgid "Remote Administration"
-msgstr "i lpd"
+msgstr "Опцыi аддаленага прынтэру lpd"
#: ../../services.pm:1
#, c-format
@@ -5857,17 +5830,17 @@ msgstr ""
#: ../../services.pm:1
#, fuzzy, c-format
msgid "Internet"
-msgstr "i"
+msgstr "цiкава"
#: ../../services.pm:1
#, fuzzy, c-format
msgid "Printing"
-msgstr ""
+msgstr "Прынтэр"
#: ../../services.pm:1
#, fuzzy, c-format
msgid "Starts the X Font Server (this is mandatory for XFree to run)."
-msgstr " i X Font Server i i."
+msgstr "Запускае i прыпыняе X Font Server пры загрузцы i выключэннi."
#: ../../services.pm:1
#, c-format
@@ -5880,9 +5853,9 @@ 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 ."
+"Syslog - гэта сродак, з дапамогай якога многiя дэманы запiсваюць "
+"паведамленнi\n"
+"ў розныя файлы статыстыкi. Гэта вельмi добра для агляду працы розных службаў."
#: ../../services.pm:1
#, c-format
@@ -5895,8 +5868,8 @@ 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)."
+"Пратакол rwho дае магчымасць карыстальнiкам атрымаць спiс ўсiх\n"
+"карыстальнiкаў, увайшоўшых на машыну, выканаў rwho дэман (падобны на finger)."
#: ../../services.pm:1
#, c-format
@@ -5904,8 +5877,8 @@ 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 ."
+"Пратакол rusers дазваляе карыстальнiкам сеткi вызначаць, хто\n"
+"ўвайшоў i працуе на машынах ў сетцы."
#: ../../services.pm:1
#, c-format
@@ -5913,8 +5886,8 @@ 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."
+"Пратакол rstat дазваляе карыстальнiкам сеткi атрымлiваць\n"
+"памеры нагрузкi для кожнай машыны сеткi."
#: ../../services.pm:1
#, c-format
@@ -5923,9 +5896,9 @@ msgid ""
"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 - ii ."
+"Дэман маршрутызацыi дазваляе дынамiчным таблiцам IP маршрутызацыi\n"
+"аднаўляцца праз RIP пратакол. RIP выкарыстоўваецца ў малых сетках, больш\n"
+"складаныя пратаколы маршрутызацыi - у вялiкiх сетках."
#: ../../services.pm:1
#, c-format
@@ -5940,8 +5913,8 @@ msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
-" i i i i i\n"
-" ."
+"Захаваць i аднавiць сiстэмны энтрапiйны пул для высокай якасцi\n"
+"генерацыі выпадковых лікаў."
#: ../../services.pm:1
#, fuzzy, c-format
@@ -5949,8 +5922,8 @@ msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
msgstr ""
-"Postfix - , , \n"
-" ."
+"Postfix - гэта паштовы транспартны агент, праграма, якая\n"
+"перамяшчае пошту з адной машыны на йншую."
#: ../../services.pm:1
#, c-format
@@ -5960,10 +5933,10 @@ msgid ""
"machines\n"
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-"Portmapper (i ) i RPC i, i \n"
-" ii i NFS i NIS. Portmap i "
-"\n"
-" i , i RPC."
+"Portmapper (аглядальнiк партоў) кiруе RPC злучэннямi, якiя звычайна\n"
+"выкарыстоўваюцца такiмi пратаколамi як NFS i NIS. Portmap сервер павiнен "
+"выконвацца\n"
+"на машынах якiя працуюць як серверы для пратаколаў, якiя скарыстоўваюць RPC."
#: ../../services.pm:1
#, c-format
@@ -5973,9 +5946,9 @@ msgid ""
"have\n"
"it installed on machines that don't need it."
msgstr ""
-" PCMCIA - i , Ethernet i\n"
-" . i i i, i \n"
-" i , i ."
+"Падтрымка PCMCIA - гэта звычайна падтрымка такiх рэчаў, як Ethernet i\n"
+"мадэмы ў наўтбуках. Вам няма неабходнасцi канфiгураваць iх, калi на вашай\n"
+"машыне iх няма, цi яна не наўтбук."
#: ../../services.pm:1
#, c-format
@@ -5995,8 +5968,8 @@ 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."
+"NFS - гэта вядомы пратакол для доступу да файлаў праз TCP/IP\n"
+"сеткi. Гэтая служба ўплывае на наяўнасць сувязi памiж NFS файламi."
#: ../../services.pm:1
#, c-format
@@ -6005,9 +5978,9 @@ msgid ""
"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 ."
+"NFS - гэта вядомы пратакол для доступу да файлаў праз TCP/IP сеткi.\n"
+"Гэтая служба забяспечваецца NFS серверам, якi канфiгурыруеца праз\n"
+"/etc/exports файл."
#: ../../services.pm:1
#, c-format
@@ -6015,8 +5988,8 @@ msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
-"i/i i, i \n"
-" i."
+"Актывiзаваць/дэактывiзаваць усе сеткавыя iнтэрфейсы, сканфiгураваныя для\n"
+"старту пры загрузцы сiстэмы."
#: ../../services.pm:1
#, c-format
@@ -6024,8 +5997,8 @@ 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раваць i разманцiраваць усе сеткавыя файлавыя сiстэмы (NFS),\n"
+" SMB (Lan Manager/Windows) i NCP (Netware) пункты манцiравання."
#: ../../services.pm:1
#, fuzzy, c-format
@@ -6033,8 +6006,8 @@ msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
msgstr ""
-"named (BIND) - i, i \n"
-" i IP ."
+"named (BIND) - гэта сервер даменных iмёнаў, якi выкарыстоўваецца для\n"
+"перакладання iмён вузлоў у IP адрасы."
#: ../../services.pm:1
#, c-format
@@ -6049,8 +6022,8 @@ 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 ()."
+"lpd - гэты дэман друку, патрэбны для карэктнай працы lpr. Гэта\n"
+"сервер, якi кiруе працай прынтэру(аў)."
#: ../../services.pm:1
#, c-format
@@ -6078,10 +6051,10 @@ msgid ""
"/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. "
+"Гэты пакет загружае абраную раскладку клавiятуры як набор з\n"
+"/etc/sysconfig/keyboard. Ёна можа быць абрана таксама з дапамогай "
"kbdconfig.\n"
-" i ."
+"Вы можаце зрабiць даступнай яе для шматлікіх машынаў."
#: ../../services.pm:1
#, c-format
@@ -6100,20 +6073,20 @@ msgid ""
"disables\n"
"all of the services it is responsible for."
msgstr ""
-"I - ( inetd) \n"
-" i , i . "
-" \n"
-" , telnet, ftp, rsh i rlogin. inetd, "
-"\n"
-" , i ."
+"Iнтэрнэт суперсервер-дэман (завецца inetd) запускае пры старце \n"
+"колькасць розных iнтэрнэт службаў, якiя неабходны. Яго можна выкарыстоўваць "
+"для пуску\n"
+"шматлікіх службаў, уключаючы telnet, ftp, rsh i rlogin. Блакуючы inetd, "
+"блакуем\n"
+"усе службы, за якiя ён адказвае."
#: ../../services.pm:1
#, c-format
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
-"Apache - World Wide Web . \n"
-"HTML i CGI."
+"Apache - гэта World Wide Web сервер. Ён выкарыстоўзваеца для абслугоўвання\n"
+"HTML файлаў i CGI."
#: ../../services.pm:1
#, c-format
@@ -6130,10 +6103,10 @@ msgid ""
"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""
-"GPM , i ,\n"
-"i Midnight Commander. "
-"ii i ,\n"
-"i (pop-up) ."
+"GPM дадае падтрымку мышы да праграмаў, якiя працуюць у тэкставым рэжыме,\n"
+"такiх як Midnight Commander. Гэта дазваляе выкарыстоўваць мыш пры "
+"капiраваннi i ўстаўцы,\n"
+"i ўключае падтрымку ўсплываючых (pop-up) меню ў тэкставым рэжыме."
#: ../../services.pm:1
#, c-format
@@ -6143,10 +6116,10 @@ msgid ""
"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."
+"cron - стандартная UNIX праграма, якая выконвае праграмы карыстальнiка\n"
+"праз пазначаныя перыяды часу. Vixie cron дадае рад дапаўненняў да "
+"стандартнага\n"
+"UNIX cron, уключаючы лепшы ўзровень бяспекi i моцныя канфiгурацыйныя опцыi."
#: ../../services.pm:1
#, c-format
@@ -6154,8 +6127,8 @@ 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 ."
+"Каманды, якiя выконваюцца, фiксуюцца па камандзе i часе яе выканання\n"
+"i выконваюцца групы каманд, калi загрузка памяцi нiжэй дастатковай."
#: ../../services.pm:1
#, c-format
@@ -6163,14 +6136,14 @@ msgid ""
"apmd is used for monitoring battery 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"
-" ii i."
+"ampd выкарыстоўваецца для адслежвання статусу батарэi i вядзення "
+"статыстыкi.\n"
+"Яго можна выкарыстоўваць для выключэння машыны пры нiзкiм зарадзе батарэi."
#: ../../services.pm:1
#, c-format
msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron, i."
+msgstr "Anacron, перыядычны камандны планавальнiк."
#: ../../services.pm:1
#, c-format
@@ -6180,7 +6153,7 @@ msgstr ""
#: ../../standalone.pm:1
#, fuzzy, c-format
msgid "Installing packages..."
-msgstr " %s"
+msgstr "Усталяванне пакету %s"
#: ../../standalone.pm:1
#, c-format
@@ -6244,7 +6217,7 @@ msgstr ""
#: ../../standalone.pm:1
#, fuzzy, c-format
msgid "[keyboard]"
-msgstr "i"
+msgstr "Клавiятура"
#: ../../standalone.pm:1
#, c-format
@@ -6329,82 +6302,82 @@ msgstr ""
#: ../../steps.pm:1
#, c-format
msgid "Exit install"
-msgstr " "
+msgstr "Заканчэнне ўсталявання"
#: ../../steps.pm:1
#, fuzzy, c-format
msgid "Install updates"
-msgstr " i"
+msgstr "Усталяванне сiстэмы"
#: ../../steps.pm:1
#, c-format
msgid "Configure services"
-msgstr " "
+msgstr "Настройка службаў"
#: ../../steps.pm:1
#, c-format
msgid "Configure X"
-msgstr " X Window"
+msgstr "Настройка X Window"
#: ../../steps.pm:1
#, c-format
msgid "Install bootloader"
-msgstr " "
+msgstr "Усталяванне загрузчыку"
#: ../../steps.pm:1
#, c-format
msgid "Configure networking"
-msgstr " i"
+msgstr "Настройка сеткi"
#: ../../steps.pm:1
#, c-format
msgid "Add a user"
-msgstr " i"
+msgstr "Дадаць карыстальнiка"
#: ../../steps.pm:1
#, c-format
msgid "Root password"
-msgstr " root"
+msgstr "Пароль для root"
#: ../../steps.pm:1
#, c-format
msgid "Install system"
-msgstr " i"
+msgstr "Усталяванне сiстэмы"
#: ../../steps.pm:1
#, c-format
msgid "Choose packages to install"
-msgstr " "
+msgstr "Выбар пакетаў"
#: ../../steps.pm:1
#, c-format
msgid "Format partitions"
-msgstr " "
+msgstr "Фарматаванне раздзелаў"
#: ../../steps.pm:1
#, fuzzy, c-format
msgid "Partitioning"
-msgstr ""
+msgstr "Прынтэр"
#: ../../steps.pm:1
#, c-format
msgid "Choose your keyboard"
-msgstr " i"
+msgstr "Выбар клавiятуры"
#: ../../steps.pm:1
#, c-format
msgid "Select installation class"
-msgstr " "
+msgstr "Клас усталявання"
#: ../../steps.pm:1
#, c-format
msgid "Hard drive detection"
-msgstr " "
+msgstr "Вызначэнне жорсткага дыску"
#: ../../steps.pm:1
#, c-format
msgid "Configure mouse"
-msgstr " "
+msgstr "Настройка мышы"
#: ../../steps.pm:1
#, c-format
@@ -6414,7 +6387,7 @@ msgstr ""
#: ../../steps.pm:1
#, c-format
msgid "Language"
-msgstr " "
+msgstr "Выбар мовы"
#: ../../ugtk2.pm:1
#, c-format
@@ -6450,27 +6423,27 @@ 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 %"
+"Ваша вiдэакарта можа мець 3D-паскарэнне, якое падтрымлiваецца толькi XFree %"
"s.\n"
-" , I I \n"
-"I '."
+"МАЙЦЕ НА ЎВАЗЕ, ШТО ГЭТА ЭКСПЕРЫМЕНТАЛЬНАЯ ПАДТРЫМКА I МОЖА ПРЫВЕСЦI ДА\n"
+"ЗАВIСАННЯ ВАШАГА КАМП'ЮТЭРУ."
#: ../../Xconfig/card.pm:1
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s 3D-"
+msgstr "XFree %s з эксперыментальнай падтрымкай 3D-паскарэння"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-" i 3D-, i i XFree %"
+"Ваша вiдэакарта можа мець 3D-паскарэнне, якое падтрымлiваецца толькi XFree %"
"s."
#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s 3D-"
+msgstr "XFree %s з падтрымкай 3D-паскарэння"
#: ../../Xconfig/card.pm:1
#, c-format
@@ -6479,11 +6452,11 @@ msgid ""
"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 %"
+"Ваша вiдэакарта можа мець 3D-паскарэнне, якое падтрымлiваецца толькi XFree %"
"s.\n"
-" , I I \n"
-"I '. i i XFree %s, i\n"
-" i 2D-."
+"МАЙЦЕ НА ЎВАЗЕ, ШТО ГЭТА ЭКСПЕРЫМЕНТАЛЬНАЯ ПАДТРЫМКА I МОЖА ПРЫВЕСЦI ДА\n"
+"ЗАВIСАННЯ ВАШАГА КАМП'ЮТЭРУ. Ваша вiдэакарта падтрымлiваецца XFree %s, якi\n"
+"лепей падтрымлiвае карты з 2D-паскарэннем."
#: ../../Xconfig/card.pm:1
#, c-format
@@ -6491,18 +6464,18 @@ 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- ."
+"Падтрымка 3D-паскарэння ў Вашай відэакарце выканана толькі ў XFree %s.\n"
+"XFree %s можа выкарыстоўваць толькі 2D-паскарэнне для гэтай відэакарты."
#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
msgid "XFree %s"
-msgstr " XFree86 %s"
+msgstr "Сервер XFree86 %s"
#: ../../Xconfig/card.pm:1
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
-msgstr "i "
+msgstr "Канфiгураваць маю карту"
#: ../../Xconfig/card.pm:1
#, c-format
@@ -6517,17 +6490,17 @@ msgstr ""
#: ../../Xconfig/card.pm:1
#, c-format
msgid "Which configuration of XFree do you want to have?"
-msgstr " i XFree ?"
+msgstr "Якую канфiгурацыю XFree вы жадаеце атрымаць?"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "XFree configuration"
-msgstr " XFree"
+msgstr "Настройка XFree"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "Select the memory size of your graphics card"
-msgstr " ii"
+msgstr "Пазначце памер вiдэапамяцi"
#: ../../Xconfig/card.pm:1
#, c-format
@@ -6539,62 +6512,62 @@ msgstr ""
#: ../../Xconfig/card.pm:1
#, fuzzy, c-format
msgid "Multi-head configuration"
-msgstr " i"
+msgstr "чытанне настройкi"
#: ../../Xconfig/card.pm:1
#, fuzzy, c-format
msgid "Choose an X server"
-msgstr " X "
+msgstr "Абярыце X сервер"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "X server"
-msgstr "X "
+msgstr "X сервер"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "64 MB or more"
-msgstr "64 i "
+msgstr "64 Мб цi болей"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "32 MB"
-msgstr "32 "
+msgstr "32 Мб"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "16 MB"
-msgstr "16 "
+msgstr "16 Мб"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "8 MB"
-msgstr "8 "
+msgstr "8 Мб"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "4 MB"
-msgstr "4 "
+msgstr "4 Мб"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "2 MB"
-msgstr "2 "
+msgstr "2 Мб"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "1 MB"
-msgstr "1 "
+msgstr "1 Мб"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "512 kB"
-msgstr "512 "
+msgstr "512 Кб"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "256 kB"
-msgstr "256 "
+msgstr "256 Кб"
#: ../../Xconfig/main.pm:1
#, c-format
@@ -6604,8 +6577,8 @@ msgid ""
"\n"
"%s"
msgstr ""
-"ֳ ?\n"
-" :\n"
+"Ці жадаеце Вы захаваць змяненні?\n"
+"Бягучая канфігурацыя:\n"
"\n"
"%s"
@@ -6614,7 +6587,7 @@ msgstr ""
#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Options"
-msgstr "i"
+msgstr "Опцыi"
#: ../../Xconfig/main.pm:1
#, c-format
@@ -6624,27 +6597,27 @@ msgstr ""
#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Resolution"
-msgstr " "
+msgstr "Памеры экрану"
#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
#, c-format
msgid "Monitor"
-msgstr "i"
+msgstr "Манiтор"
#: ../../Xconfig/main.pm:1
#, fuzzy, c-format
msgid "Graphic Card"
-msgstr "i"
+msgstr "Вiдэакарта"
#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Vertical refresh rate"
-msgstr " i"
+msgstr "Часціня вертыкальнай разгорткi"
#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Horizontal refresh rate"
-msgstr " i"
+msgstr "Часціня гарызантальный разгорткi"
#: ../../Xconfig/monitor.pm:1
#, c-format
@@ -6660,15 +6633,15 @@ msgid ""
"monitor.\n"
" If in doubt, choose a conservative setting."
msgstr ""
-" - i, i\n"
-" , -\n"
-" iii i, i \n"
-" .\n"
+"Два крытычных параметры - гэта часціня вертыкальнай разгорткi, цi\n"
+"часціня аднаўлення ўсяго экрану, а таксама болей важны параметр -\n"
+"часціня гарызантальнай сiнхранiзацыi разгорткi, цi часціня вываду\n"
+"радкоў экрану.\n"
"\n"
-"I , i i iii, \n"
-" i i: i \n"
-" i.\n"
-"i , i."
+"ВЕЛЬМI ВАЖНА, каб абраны вамi манiтор меў часціню сiнхранiзацыi, якая\n"
+"не перавышае фактычныя магчымасцi вашага манiтору: у процiлеглым выпадку\n"
+"вы можаце сапсаваць манiтор.\n"
+"Калi вы сумняваецеся, абярыце кансерватыўныя настройкi."
#: ../../Xconfig/monitor.pm:1
#, c-format
@@ -6678,7 +6651,7 @@ msgstr ""
#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Vendor"
-msgstr ""
+msgstr "Адкат"
#: ../../Xconfig/monitor.pm:1
#, c-format
@@ -6688,57 +6661,57 @@ msgstr ""
#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Choose a monitor"
-msgstr " i"
+msgstr "Абярыце манiтор"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Graphics card: %s"
-msgstr "i: %s"
+msgstr "Вiдэакарта: %s"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Choose the resolution and the color depth"
-msgstr " i ii "
+msgstr "Выбар памераў экрану i глыбiнi колеру"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Resolutions"
-msgstr " "
+msgstr "Памеры экрану"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "4 billion colors (32 bits)"
-msgstr "4 ii (24 i)"
+msgstr "4 мiлiярда колераў (24 бiты)"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "16 million colors (24 bits)"
-msgstr "16 i (24 i)"
+msgstr "16 мiльёнаў колераў (24 бiты)"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "65 thousand colors (16 bits)"
-msgstr "65 (16 i)"
+msgstr "65 тысяч колераў (16 бiтаў)"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "32 thousand colors (15 bits)"
-msgstr "32 (15 i)"
+msgstr "32 тысячы колераў (15 бiтаў)"
#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "256 colors (8 bits)"
-msgstr "256 (8 i)"
+msgstr "256 колераў (8 бiтаў)"
#: ../../Xconfig/test.pm:1
#, fuzzy, c-format
msgid "Is this the correct setting?"
-msgstr " ?"
+msgstr "Гэта дакладна?"
#: ../../Xconfig/test.pm:1
#, fuzzy, c-format
msgid "Leaving in %d seconds"
-msgstr "%d "
+msgstr "%d секундаў"
#: ../../Xconfig/test.pm:1
#, c-format
@@ -6751,22 +6724,22 @@ msgstr ""
#: ../../Xconfig/test.pm:1
#, fuzzy, c-format
msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ": i i "
+msgstr "Папярэджанне: тэсцiраванне на гэтай вiдэакарце небяспечна"
#: ../../Xconfig/test.pm:1
#, c-format
msgid "Do you want to test the configuration?"
-msgstr "i i i?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#: ../../Xconfig/test.pm:1
#, c-format
msgid "Test of the configuration"
-msgstr " i"
+msgstr "Праверка параметраў настройкi"
#: ../../Xconfig/various.pm:1
#, fuzzy, c-format
msgid "What norm is your TV using?"
-msgstr "i ISDN ?"
+msgstr "Якi тып вашага ISDN злучэння?"
#: ../../Xconfig/various.pm:1
#, c-format
@@ -6788,88 +6761,88 @@ msgid ""
"(XFree) upon booting.\n"
"Would you like XFree to start when you reboot?"
msgstr ""
-" i i X i.\n"
-", X ?"
+"Можна настроiць сiстэму для аўтаматычнага запуску X пасля старту сiстэмы.\n"
+"Жадаеце, каб X стартаваў пры рэстарце?"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphical interface at startup"
-msgstr " X i"
+msgstr "Запуск X пры старце сiстэмы"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "XFree86 driver: %s\n"
-msgstr " XFree86: %s\n"
+msgstr "Сервер XFree86: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "XFree86 server: %s\n"
-msgstr " XFree86: %s\n"
+msgstr "Сервер XFree86: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Resolution: %s\n"
-msgstr " : %s\n"
+msgstr "Памеры экрану: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Color depth: %s\n"
-msgstr " ii : %s\n"
+msgstr "Параметры глыбiнi колеру: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphics memory: %s kB\n"
-msgstr "i: %s \n"
+msgstr "Вiдэапамяць: %s Кб\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphics card: %s\n"
-msgstr "i: %s\n"
+msgstr "Вiдэакарта: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor VertRefresh: %s\n"
-msgstr " .. i: %s\n"
+msgstr "Часціня верт.разг. манiтору: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor HorizSync: %s\n"
-msgstr " .. i: %s\n"
+msgstr "Часціня гар.разг. манiтору: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor: %s\n"
-msgstr "i: %s\n"
+msgstr "Манiтор: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Mouse device: %s\n"
-msgstr ": %s\n"
+msgstr "Мыш: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Mouse type: %s\n"
-msgstr " : %s\n"
+msgstr "Тып мышы: %s\n"
#: ../../Xconfig/various.pm:1
#, c-format
msgid "Keyboard layout: %s\n"
-msgstr " i: %s\n"
+msgstr "Тып клавiятуры: %s\n"
#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Options: %s"
-msgstr "i: %s"
+msgstr "Опцыi: %s"
#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Mount point: "
-msgstr " i:"
+msgstr "Пункт манцiравання:"
#: ../../diskdrake/dav.pm:1
#, fuzzy, c-format
msgid "Server: "
-msgstr ""
+msgstr "сервер"
#: ../../diskdrake/dav.pm:1
#, c-format
@@ -6879,35 +6852,35 @@ msgstr ""
#: ../../diskdrake/dav.pm:1
#, fuzzy, c-format
msgid "Please enter the WebDAV server URL"
-msgstr " , ."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Mount point"
-msgstr " i"
+msgstr "Кропка манцiравання"
#: ../../diskdrake/dav.pm:1
#, fuzzy, c-format
msgid "Server"
-msgstr ""
+msgstr "сервер"
#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Mount"
-msgstr "i"
+msgstr "Манцiраванне"
#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Unmount"
-msgstr "i"
+msgstr "Разманцiраваць"
#: ../../diskdrake/dav.pm:1
#, c-format
msgid "New"
-msgstr ""
+msgstr "Новы"
#: ../../diskdrake/dav.pm:1
#, c-format
@@ -6921,43 +6894,43 @@ msgstr ""
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Use ``%s'' instead"
-msgstr " ``%s'' "
+msgstr "Выкарыстоўвайце ``%s'' замест"
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Type"
-msgstr ""
+msgstr "Тып"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Use ``Unmount'' first"
-msgstr " i ``Unmount''"
+msgstr "Спачатку зрабiце ``Unmount''"
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Delete"
-msgstr "i"
+msgstr "Знiшчыць"
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Create"
-msgstr ""
+msgstr "Стварыць"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Filesystem types:"
-msgstr " i:"
+msgstr "Тыпы файлавых сiстэмаў:"
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Empty"
-msgstr ""
+msgstr "Пуста"
#: ../../diskdrake/hd_gtk.pm:1
#, fuzzy, c-format
msgid "Windows"
-msgstr " "
+msgstr "Навуковыя прыкладанні"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
@@ -6977,7 +6950,7 @@ msgstr "Swap"
#: ../../diskdrake/hd_gtk.pm:1
#, fuzzy, c-format
msgid "Journalised FS"
-msgstr " i"
+msgstr "памылка манцiравання"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
@@ -6987,12 +6960,12 @@ msgstr "Ext2"
#: ../../diskdrake/hd_gtk.pm:1
#, fuzzy, c-format
msgid "No hard drives found"
-msgstr " "
+msgstr "Лакальны прынтэр"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Please click on a partition"
-msgstr " "
+msgstr "Націсніце на раздзел"
#: ../../diskdrake/hd_gtk.pm:1
#, fuzzy, c-format
@@ -7001,20 +6974,20 @@ msgid ""
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
-" i i ii FAT\n"
-"( MS Dos/Windows).\n"
-", -, i \n"
-"(ii , \" \")"
+"Зараз вы маеце толькi адзiн вялiкi раздзел FAT\n"
+"(які звычайна выкарыстоўвае MS Dos/Windows).\n"
+"Прапаную, па-першае, змянiць памеры раздзела\n"
+"(клiкнiце на яго, а потым на \"змяненне памераў\")"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Choose action"
-msgstr " "
+msgstr "Абярыце дзеянне"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Wizard"
-msgstr " "
+msgstr "Майстар стварэння"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
@@ -7023,18 +6996,18 @@ msgid ""
"enough)\n"
"at the beginning of the disk"
msgstr ""
-"i boot , i \n"
-" 2048 "
+"Калi вы плануеце выкарыстоўваць boot вобласць, тады размясцiце яе\n"
+" не далей за 2048 сектароў ад пачатку дыска"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Please make a backup of your data first"
-msgstr "-, i i "
+msgstr "Па-першае, зрабiце рэзервовую копiю вашых дадзеных"
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Read carefully!"
-msgstr " i!"
+msgstr "Чытайце ўважлiва!"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7049,13 +7022,13 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "The encryption keys do not match"
-msgstr "i "
+msgstr "Паролi не супадаюць"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
-" ( i %d i)"
+"Гэты пароль занадта просты (яго даўжыня павiнна быць не меней за %d лiтараў)"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7065,42 +7038,42 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Filesystem encryption key"
-msgstr " i:"
+msgstr "Тып файлавай сiстэмы:"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Type: "
-msgstr ": "
+msgstr "Тып: "
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "on channel %d id %d\n"
-msgstr " %d id %d\n"
+msgstr "на шыне %d id %d\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table type: %s\n"
-msgstr " i : %s\n"
+msgstr "Тып таблiцы раздзелаў: %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "LVM-disks %s\n"
-msgstr "LVM-i %s\n"
+msgstr "LVM-дыскi %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Info: "
-msgstr "I: "
+msgstr "Iнфармацыя: "
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
-msgstr ": %s i, %s , %s \n"
+msgstr "Геаметрыя: %s цылiндраў, %s галовак, %s сектараў\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size: %s\n"
-msgstr ": %s\n"
+msgstr "Памер: %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7110,7 +7083,7 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Device: "
-msgstr ":"
+msgstr "Прылада:"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7133,22 +7106,22 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback file name: %s"
-msgstr "I i i: %s"
+msgstr "Iмя файлу вiртуальнай файлавай сiстэмы: %s"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "RAID-disks %s\n"
-msgstr "RAID-i %s\n"
+msgstr "RAID-дыскi %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Chunk size %s\n"
-msgstr " %s\n"
+msgstr "Памер фрагменту %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Level %s\n"
-msgstr " %s\n"
+msgstr "Узровень %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7156,15 +7129,15 @@ msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-" \n"
-" ( i MS-DOS, lilo)\n"
+"Загрузачны раздзел па дамаўленню\n"
+" (для загрузкi MS-DOS, а не для lilo)\n"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
-msgstr "() i i: %s\n"
+msgstr "Файл(ы) вiртуальнай файлавай сiстэмы: %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7174,47 +7147,47 @@ msgstr "RAID md%s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Mounted\n"
-msgstr "i\n"
+msgstr "Заманцiравана\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Not formatted\n"
-msgstr " \n"
+msgstr "Не адфарматавана\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Formatted\n"
-msgstr "\n"
+msgstr "Фарматаванне\n"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
-msgstr "i %d %d\n"
+msgstr "Цылiндры з %d па %d\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ", %s sectors"
-msgstr ", %s "
+msgstr ", %s сектараў"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size: %s"
-msgstr ": %s"
+msgstr "Памер: %s"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Start: sector %s\n"
-msgstr ": %s\n"
+msgstr "Пачатак: сектар %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Name: "
-msgstr "I: "
+msgstr "Iмя: "
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "i DOS-: %s ()\n"
+msgstr "Лiтара для DOS-дыску: %s (наўгад)\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7224,7 +7197,7 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Removing %s"
-msgstr " : %s\n"
+msgstr "Памеры экрану: %s\n"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7234,7 +7207,7 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Moving files to the new partition"
-msgstr " "
+msgstr "Не хапае прасторы для стварэння новых раздзелаў"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7246,57 +7219,57 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Hide files"
-msgstr "mkraid "
+msgstr "mkraid не працаздольны"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Move files to the new partition"
-msgstr " "
+msgstr "Не хапае прасторы для стварэння новых раздзелаў"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr " %s "
+msgstr "Усе дадзеные ў раздзеле %s будуць страчаны пасля фарматавання"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "You'll need to reboot before the modification can take place"
-msgstr " i ii , i"
+msgstr "Каб змяненнi ўступiлi ў дзеянне, необходна перазагрузiцца"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
-msgstr "i %s i !"
+msgstr "Таблiца размяшчэння прылады %s будзе запiсана на дыск!"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "The package %s is needed. Install it?"
-msgstr " "
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "What type of partitioning?"
-msgstr "i i ?"
+msgstr "Якi тып друкаркi вы маеце?"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Be careful: this operation is dangerous."
-msgstr " i. i"
+msgstr "Будзьце уважлiвы. Гэтую аперацыю нельга адмянiць"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "chunk size"
-msgstr " "
+msgstr "памер блоку"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "level"
-msgstr ""
+msgstr "узровень"
#: ../../diskdrake/interactive.pm:1 ../../standalone/drakfloppy:1
#, c-format
msgid "device"
-msgstr ""
+msgstr "прылада"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7306,49 +7279,49 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Mount options"
-msgstr "i :"
+msgstr "Опцыi модулю:"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "File already exists. Use it?"
-msgstr " i. ?"
+msgstr "Файл ужо iснуе. Выкарыстаць яго?"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "File is already used by another loopback, choose another one"
msgstr ""
-" i i i. i , \n"
-" i "
+"Файл ужо выкарыстоўваецца iншай вiртуальнай сiстэмай. Калi ласка, \n"
+"абярыце iншую назву"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Give a file name"
-msgstr " i"
+msgstr "Уласнае iмя"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Filesystem type: "
-msgstr " i:"
+msgstr "Тып файлавай сiстэмы:"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size in MB: "
-msgstr " :"
+msgstr "Памер у Мб:"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback file name: "
-msgstr "I i "
+msgstr "Iмя вiртуальнага раздзелу"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback"
-msgstr "i i (loopback)"
+msgstr "Вiртуальная файлавая сiстэма (loopback)"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This partition can't be used for loopback"
-msgstr " i i"
+msgstr "Гэты раздзел не можа быць выкарыстаны пад вiртуальную файлавую сiстэму"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7358,87 +7331,87 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "new"
-msgstr ""
+msgstr "новы"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose an existing LVM to add to"
-msgstr " i LVM "
+msgstr "Выбярыце iснуючы LVM для дабаўлення"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose an existing RAID to add to"
-msgstr " i RAID "
+msgstr "Абярыце iснуючы RAID для дадання"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving partition..."
-msgstr " ..."
+msgstr "Пераносіцца раздзел..."
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving"
-msgstr ""
+msgstr "Пераносім"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Which sector do you want to move it to?"
-msgstr " i ?"
+msgstr "На якi сектар перанесці?"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Sector"
-msgstr ""
+msgstr "Сектар"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Which disk do you want to move it to?"
-msgstr " i ?"
+msgstr "На якi дыск перанесці?"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Move"
-msgstr ""
+msgstr "Перанос"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "New size in MB: "
-msgstr " :"
+msgstr "Памер у Мб:"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose the new size"
-msgstr " "
+msgstr "Выбар новых памераў"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Resize"
-msgstr " "
+msgstr "Змяненне памераў"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
-msgstr " %s "
+msgstr "Усе дадзеныя ў раздзеле %s будуць страчаны"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All data on this partition should be backed-up"
-msgstr " i i"
+msgstr "Усе дадзеныя ў гэтым раздзеле павiнны быць зархiваваныя"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "This partition is not resizeable"
-msgstr " i?"
+msgstr "Памеры якога раздзела вы жадаеце змянiць?"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Computing FAT filesystem bounds"
-msgstr " i FAT"
+msgstr "Падлік межаў файлавай сiстэмы FAT"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Where do you want to mount %s?"
-msgstr " i %s?"
+msgstr "Куды вы жадаеце манцiраваць прыладу %s?"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7446,19 +7419,19 @@ 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"
+"Нельга ўсталяваць пункт манцiравання, таму што раздел выкарыстоўваецца для\n"
+"вiртуальнай файлавай сiстэмы.\n"
+"Спачатку выдалiце вiртуальную сiстэму"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Where do you want to mount device %s?"
-msgstr " i %s?"
+msgstr "Куды вы жадаеце манцiраваць прыладу %s?"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Where do you want to mount the loopback file %s?"
-msgstr " i i %s?"
+msgstr "Куды вы жадаеце манцiраваць вiртуальную прыладу %s?"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7468,23 +7441,23 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
#, fuzzy, c-format
msgid "Which filesystem do you want?"
-msgstr " i ?"
+msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Change partition type"
-msgstr "i "
+msgstr "Змянiць тып раздзелу"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
-msgstr " %s "
+msgstr "Усе дадзеныя ў раздзеле %s будуць страчаны пасля змены яго тыпу"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Remove the loopback file?"
-msgstr " i %s"
+msgstr "Фарматаванне вiртуальнага раздзелу %s"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7497,62 +7470,62 @@ msgstr ""
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Preference: "
-msgstr ": "
+msgstr "Параметры: "
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Start sector: "
-msgstr " :"
+msgstr "Пачатковы сектар:"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Create a new partition"
-msgstr " "
+msgstr "Стварэнне новага раздзелу"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Use for loopback"
-msgstr " i i"
+msgstr "Выкарыстоўваць для вiртуальнай файлавай сiстэмы"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Modify RAID"
-msgstr "i RAID"
+msgstr "Змянiць RAID"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from LVM"
-msgstr "i LVM"
+msgstr "Выдалiць з LVM"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from RAID"
-msgstr "i RAID"
+msgstr "Выдалiць з RAID"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Add to LVM"
-msgstr " LVM"
+msgstr "Дадаць да LVM"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Add to RAID"
-msgstr " RAID"
+msgstr "Дадаць да RAID"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Format"
-msgstr ""
+msgstr "Фарматаванне"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Detailed information"
-msgstr "I"
+msgstr "Iнфармацыя"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Trying to rescue partition table"
-msgstr " i "
+msgstr "Паспрабуем выратаваць таблiцу раздзелаў"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7560,19 +7533,19 @@ msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
-" \n"
-" "
+"Устаўце дыскету ў дыскавод\n"
+"Усе дадзеныя на гэтай дыскеце будуць страчаны"
#: ../../diskdrake/interactive.pm:1 ../../harddrake/sound.pm:1
#: ../../network/modem.pm:1
#, c-format
msgid "Warning"
-msgstr "!"
+msgstr "Увага!"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Select file"
-msgstr " "
+msgstr "Абярыце файл"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7580,33 +7553,33 @@ msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
-"i i \n"
-" ?"
+"Таблiца размяшчэння рэзервовага дыску мае iншы памер\n"
+"Працягваць далей?"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Removable media automounting"
-msgstr "i "
+msgstr "Аўтаманцiраванне зменных назапашвальнікаў"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Reload partition table"
-msgstr " i "
+msgstr "Дадатковая таблiца раздзелаў"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Rescue partition table"
-msgstr " i "
+msgstr "Дадатковая таблiца раздзелаў"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Restore partition table"
-msgstr " i "
+msgstr "Дадатковая таблiца раздзелаў"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Save partition table"
-msgstr "i i "
+msgstr "Запiс таблiцы раздзелаў"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -7614,68 +7587,68 @@ 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/interactive.pm:1
#, c-format
msgid "I can't add any more partition"
-msgstr " "
+msgstr "Дадаць раздзел немагчыма"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All primary partitions are used"
-msgstr " "
+msgstr "Усе першасныя раздзелы выкарыстаны"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Hard drive information"
-msgstr "I"
+msgstr "Iнфармацыя"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Auto allocate"
-msgstr " "
+msgstr "Размеркаваць аўтаматычна"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Clear all"
-msgstr "i "
+msgstr "Ачысцiць усё"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Do you want to save /etc/fstab modifications"
-msgstr "i i i?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Quit without writing the partition table?"
-msgstr "i i i "
+msgstr "Выйсцi без запiсу таблiцы раздзелаў"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Quit without saving"
-msgstr "i "
+msgstr "Выйсцi без захавання"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Continue anyway?"
-msgstr " ?"
+msgstr "Сапраўды працягваць?"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Toggle to expert mode"
-msgstr " "
+msgstr "Рэжым эксперту"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Toggle to normal mode"
-msgstr " "
+msgstr "Звычайны рэжым"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Undo"
-msgstr ""
+msgstr "Адкат"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
@@ -7685,22 +7658,22 @@ msgstr "Ext2"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Choose a partition"
-msgstr " "
+msgstr "Абярыце дзеянне"
#: ../../diskdrake/interactive.pm:1
#, fuzzy, c-format
msgid "Choose another partition"
-msgstr " "
+msgstr "Стварэнне новага раздзелу"
#: ../../diskdrake/removable.pm:1
#, fuzzy, c-format
msgid "Change type"
-msgstr "i "
+msgstr "Змянiць тып раздзелу"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, fuzzy, c-format
msgid "Search servers"
-msgstr "DNS "
+msgstr "DNS сервер"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, fuzzy, c-format
@@ -7710,7 +7683,7 @@ msgstr "NIS Domain"
#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Username"
-msgstr "I i:"
+msgstr "Iмя карыстальнiку:"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
@@ -7721,17 +7694,17 @@ msgstr ""
#: ../../diskdrake/smbnfs_gtk.pm:1
#, fuzzy, c-format
msgid "Domain Authentication Required"
-msgstr "i"
+msgstr "Аўтэнтыфiкацыя"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, fuzzy, c-format
msgid "Another one"
-msgstr "i"
+msgstr "цiкава"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, fuzzy, c-format
msgid "Which username"
-msgstr "I i:"
+msgstr "Iмя карыстальнiку:"
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
@@ -7776,12 +7749,12 @@ msgstr ""
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Scanner"
-msgstr " i"
+msgstr "Абярыце вiдэакарту"
#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Unknown/Others"
-msgstr ""
+msgstr "Агульны"
#: ../../harddrake/data.pm:1
#, c-format
@@ -7791,12 +7764,12 @@ msgstr ""
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Modem"
-msgstr " "
+msgstr "Порт мышы"
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Ethernetcard"
-msgstr "i"
+msgstr "цiкава"
#: ../../harddrake/data.pm:1
#, c-format
@@ -7811,12 +7784,12 @@ msgstr ""
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Soundcard"
-msgstr ""
+msgstr "Стандартны"
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Other MultiMedia devices"
-msgstr ""
+msgstr "Іншыя"
#: ../../harddrake/data.pm:1
#, c-format
@@ -7826,12 +7799,12 @@ msgstr ""
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Videocard"
-msgstr "i-"
+msgstr "Вiдэа-рэжым"
#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Tape"
-msgstr ": "
+msgstr "Тып: "
#: ../../harddrake/data.pm:1
#, c-format
@@ -7851,7 +7824,7 @@ msgstr ""
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Disk"
-msgstr "i"
+msgstr "Дацкi"
#: ../../harddrake/data.pm:1
#, c-format
@@ -7861,7 +7834,7 @@ msgstr ""
#: ../../harddrake/data.pm:1
#, fuzzy, c-format
msgid "Floppy"
-msgstr " "
+msgstr "Захаванне на дыскету"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -7871,7 +7844,7 @@ msgstr ""
#: ../../harddrake/sound.pm:1
#, fuzzy, c-format
msgid "Driver:"
-msgstr ""
+msgstr "сервер"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -7952,7 +7925,7 @@ msgstr ""
#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Please Wait... Applying the configuration"
-msgstr " i"
+msgstr "Праверка параметраў настройкi"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -8008,7 +7981,7 @@ msgstr ""
#: ../../harddrake/sound.pm:1
#, fuzzy, c-format
msgid "Sound configuration"
-msgstr ""
+msgstr "Настройка"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -8035,7 +8008,7 @@ msgstr ""
#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
msgid "PLL setting:"
-msgstr ""
+msgstr "фарматаванне"
#: ../../harddrake/v4l.pm:1
#, c-format
@@ -8050,12 +8023,12 @@ msgstr ""
#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
msgid "Tuner type:"
-msgstr "i "
+msgstr "Змянiць тып раздзелу"
#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
msgid "Card model:"
-msgstr " (DMA)"
+msgstr "Адрасы памяці карты (DMA)"
#: ../../harddrake/v4l.pm:1
#, c-format
@@ -8069,7 +8042,7 @@ msgstr ""
#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
msgid "Unknown|Generic"
-msgstr ""
+msgstr "Агульны"
#: ../../harddrake/v4l.pm:1
#, c-format
@@ -8084,22 +8057,22 @@ msgstr ""
#: ../../harddrake/v4l.pm:1
#, fuzzy, c-format
msgid "Auto-detect"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../interactive/newt.pm:1
#, fuzzy, c-format
msgid "Do"
-msgstr ""
+msgstr "Зроблена"
#: ../../interactive/stdio.pm:1
#, c-format
msgid "Your choice? (default %s) "
-msgstr " ? ( %s) "
+msgstr "Ваш выбар? (змоўчанне %s) "
#: ../../interactive/stdio.pm:1
#, c-format
msgid "Bad choice, try again\n"
-msgstr " , \n"
+msgstr "Дрэнны выбар, паспрабуйце яшче\n"
#: ../../interactive/stdio.pm:1
#, c-format
@@ -8129,7 +8102,7 @@ msgstr ""
#: ../../interactive/stdio.pm:1
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
-msgstr " ? ( %s) "
+msgstr "Ваш выбар? (змоўчанне %s) "
#: ../../interactive/stdio.pm:1
#, c-format
@@ -8139,17 +8112,17 @@ msgstr ""
#: ../../interactive/stdio.pm:1
#, fuzzy, c-format
msgid "Do you want to click on this button?"
-msgstr " aboot?"
+msgstr "Вы жадаеце выкарыстоўваць aboot?"
#: ../../interactive/stdio.pm:1
#, fuzzy, c-format
msgid "Button `%s': %s"
-msgstr "i: %s"
+msgstr "Опцыi: %s"
#: ../../interactive/stdio.pm:1
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
-msgstr " ? ( %s) "
+msgstr "Ваш выбар? (змоўчанне %s) "
#: ../../interactive/stdio.pm:1
#, c-format
@@ -8164,18 +8137,18 @@ msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
-" %s .\n"
-" ii i?"
+"Загрузка модулю %s не прайшла.\n"
+"Жадаеце паспрабаваць з iншымi параметрамi?"
#: ../../modules/interactive.pm:1
#, c-format
msgid "Specify options"
-msgstr " "
+msgstr "Пазначце параметры"
#: ../../modules/interactive.pm:1
#, c-format
msgid "Autoprobe"
-msgstr ""
+msgstr "Аўтапошук"
#: ../../modules/interactive.pm:1
#, c-format
@@ -8188,22 +8161,22 @@ msgid ""
"should\n"
"not cause any damage."
msgstr ""
-" %s i,\n"
-" . i \n"
-" i, i i i \n"
-" ii? , i \n"
-" ', i ."
+"У некаторых выпадках %s драйверу патрэбна некаторая дадатковая iнфармацыя,\n"
+"але звычайна гэта не патрабуецца. Цi не жадаеце вы задаць для яго\n"
+"дадатковыя опцыi, цi дазволiце драйверу пратэсцiраваць машыну\n"
+"ў пошуках неабходнай iнфармацыi? Магчыма, тэсцiраванне прывядзе\n"
+"да спынення камп'ютэру, але яно нiчога не сапсуе."
#. -PO: the %s is the driver type (scsi, network, sound,...)
#: ../../modules/interactive.pm:1
#, c-format
msgid "Which %s driver should I try?"
-msgstr "i %s ?"
+msgstr "Якi драйвер %s паспрабаваць?"
#: ../../modules/interactive.pm:1
#, c-format
msgid "Module options:"
-msgstr "i :"
+msgstr "Опцыi модулю:"
#: ../../modules/interactive.pm:1
#, c-format
@@ -8212,9 +8185,9 @@ msgid ""
"Options are in format ``name=value name2=value2 ...''.\n"
"For instance, ``io=0x300 irq=7''"
msgstr ""
-" i %s.\n"
-"i - ``i= i2=2 ...''.\n"
-", ``io=0x300 irq=7''"
+"Вы не можаце задаць опцыi модулю %s.\n"
+"Опцыi - у фармаце ``iмя=значэнне iмя2=значэнне2 ...''.\n"
+"Напрыклад, ``io=0x300 irq=7''"
#: ../../modules/interactive.pm:1
#, c-format
@@ -8226,34 +8199,34 @@ msgstr ""
#: ../../modules/interactive.pm:1
#, c-format
msgid "(module %s)"
-msgstr "( %s)"
+msgstr "(модуль %s)"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: ../../modules/interactive.pm:1
#, c-format
msgid "Installing driver for %s card %s"
-msgstr " %s %s"
+msgstr "Усталяванне драйверу для %s карты %s"
#: ../../modules/interactive.pm:1
#, c-format
msgid "See hardware info"
-msgstr ". i "
+msgstr "Гл. апiсанне абсталявання"
#: ../../modules/interactive.pm:1
#, c-format
msgid "Do you have any %s interfaces?"
-msgstr "i %s i?"
+msgstr "Цi ёсць у вас %s iнтэрфейс?"
#: ../../modules/interactive.pm:1
#, c-format
msgid "Do you have another one?"
-msgstr "i i?"
+msgstr "Цi ёсць у вас iншы?"
#: ../../modules/interactive.pm:1
#, c-format
msgid "Found %s %s interfaces"
-msgstr " %s %s i"
+msgstr "Знойдзены %s %s iнтэрфейсы"
#: ../../modules/interactive.pm:1
#, c-format
@@ -8263,7 +8236,7 @@ msgstr ""
#: ../../modules/parameters.pm:1
#, fuzzy, c-format
msgid "comma separated strings"
-msgstr " "
+msgstr "Фарматаванне раздзелаў"
#: ../../modules/parameters.pm:1
#, c-format
@@ -8283,7 +8256,7 @@ msgstr ""
#: ../../modules/parameters.pm:1
#, fuzzy, c-format
msgid "a number"
-msgstr " "
+msgstr "Нумар тэлефону"
#: ../../network/adsl.pm:1
#, c-format
@@ -8305,7 +8278,7 @@ msgstr ""
#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
#, c-format
msgid "Connect to the Internet"
-msgstr " I"
+msgstr "Далучэнне да Iнтэрнэту"
#: ../../network/adsl.pm:1
#, c-format
@@ -8325,22 +8298,22 @@ msgstr ""
#: ../../network/adsl.pm:1
#, fuzzy, c-format
msgid "use pptp"
-msgstr " pppoe"
+msgstr "выкарыстоўваць pppoe"
#: ../../network/adsl.pm:1
#, c-format
msgid "use pppoe"
-msgstr " pppoe"
+msgstr "выкарыстоўваць pppoe"
#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "Other ports"
-msgstr "I i"
+msgstr "Iншыя краiны"
#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "Everything (no firewall)"
-msgstr " i!"
+msgstr "Ўсё сканфiгуравана!"
#: ../../network/drakfirewall.pm:1
#, c-format
@@ -8385,27 +8358,27 @@ msgstr ""
#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "No network card"
-msgstr " "
+msgstr "сеткавая карта не знойдзена"
#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "POP and IMAP Server"
-msgstr ""
+msgstr "сервер"
#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "Mail Server"
-msgstr " "
+msgstr "Сервер друку"
#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "Domain Name Server"
-msgstr "I "
+msgstr "Iмя дамену"
#: ../../network/drakfirewall.pm:1
#, fuzzy, c-format
msgid "Web Server"
-msgstr ""
+msgstr "сервер"
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
@@ -8415,12 +8388,12 @@ msgstr ""
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Host name"
-msgstr "I "
+msgstr "Iмя машыны"
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, fuzzy, c-format
msgid "Zeroconf Host name"
-msgstr "I "
+msgstr "Iмя машыны"
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
@@ -8434,26 +8407,21 @@ msgstr ""
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Configuring network"
-msgstr " i"
-
-#: ../../network/ethernet.pm:1
-#, c-format
-msgid "no network card found"
-msgstr " "
+msgstr "Настройка сеткi"
#: ../../network/ethernet.pm:1
#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
-"i , , i "
-" i"
+"Калi ласка, пазначце сеткавы адаптар, якi плануеце выкарыстоўваць для "
+"далучэння да iнтэрнэт"
#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
#: ../../standalone/drakpxe:1
#, c-format
msgid "Choose the network interface"
-msgstr " i"
+msgstr "Пазначце сеткавы iнтэрфейс"
#: ../../network/ethernet.pm:1
#, fuzzy, c-format
@@ -8461,8 +8429,8 @@ msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
msgstr ""
-"i ethernet i . i , "
-" i i."
+"Нi водны ethernet сеткавы адаптар у вашай сiстэме не вызначаны. Калi ласка, "
+"скарыстайце канфiгурацыйны iнструмэнт."
#: ../../network/ethernet.pm:1
#, c-format
@@ -8470,13 +8438,13 @@ msgid ""
"Which dhcp client do you want to use?\n"
"Default is dhcp-client."
msgstr ""
-"i dhcp i ?\n"
-" , dhcp-client"
+"Якi dhcp клiент вы плануеце выкарыстоўваць?\n"
+"Па змоўчанню, гэта dhcp-client"
#: ../../network/isdn.pm:1
#, c-format
msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr " ISDN PCI . i , ."
+msgstr "Карта ISDN PCI не знойдзена. Калi ласка, пазначце на наступным экране."
#: ../../network/isdn.pm:1
#, c-format
@@ -8484,28 +8452,28 @@ msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
msgstr ""
-" ISDN PCI , . i , PCI "
-" ."
+"Вызначана ISDN PCI карта, але невядомы яе тып. Калi ласка, пазначце PCI "
+"карту на наступным экране."
#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "Which of the following is your ISDN card?"
-msgstr " ISDN ?"
+msgstr "Якая ў вас ISDN карта?"
#: ../../network/isdn.pm:1
#, c-format
msgid "ISDN Configuration"
-msgstr " ISDN"
+msgstr "Настройка ISDN"
#: ../../network/isdn.pm:1
#, c-format
msgid "Abort"
-msgstr "i"
+msgstr "Адмянiць"
#: ../../network/isdn.pm:1
#, c-format
msgid "Continue"
-msgstr ""
+msgstr "Працягнуць"
#: ../../network/isdn.pm:1
#, c-format
@@ -8517,15 +8485,15 @@ msgid ""
"card.\n"
msgstr ""
"\n"
-"i ISA , ii i "
-"i.\n"
+"Калi вы маеце ISA карту, велiчынi на наступным экране павiнны быць "
+"сапраўднымi.\n"
"\n"
-"i PCMCIA , i irq i io .\n"
+"Калi вы маеце PCMCIA карту, вы павiнны ведаць irq i io вашай карты.\n"
#: ../../network/isdn.pm:1
#, c-format
msgid "I don't know"
-msgstr " "
+msgstr "Не вядома"
#: ../../network/isdn.pm:1
#, c-format
@@ -8540,7 +8508,7 @@ msgstr "ISA / PCMCIA"
#: ../../network/isdn.pm:1
#, c-format
msgid "What kind of card do you have?"
-msgstr "i ?"
+msgstr "Якi тып карты вы маеце?"
#: ../../network/isdn.pm:1
#, c-format
@@ -8550,12 +8518,12 @@ msgstr ""
#: ../../network/isdn.pm:1
#, c-format
msgid "Which protocol do you want to use?"
-msgstr "i ?"
+msgstr "Якi пратакол вы жадаеце выкарыстоўваць?"
#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "Protocol for the rest of the world"
-msgstr ""
+msgstr "Падключэнне"
#: ../../network/isdn.pm:1
#, fuzzy, c-format
@@ -8563,18 +8531,18 @@ msgid ""
"Protocol for the rest of the world\n"
"No D-Channel (leased lines)"
msgstr ""
-" \n"
-" D- ( )"
+"Падключэнне \n"
+" не праз D-канал (вылучаныя каналы)"
#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "European protocol"
-msgstr "Ţ (EDSS1)"
+msgstr "Еўропа (EDSS1)"
#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "European protocol (EDSS1)"
-msgstr "Ţ (EDSS1)"
+msgstr "Еўропа (EDSS1)"
#: ../../network/isdn.pm:1
#, c-format
@@ -8582,38 +8550,38 @@ msgid ""
"Select your provider.\n"
"If it isn't listed, choose Unlisted."
msgstr ""
-" .\n"
-"i i, ``I''"
+"Абярыце вашага правайдара.\n"
+"калi яго няма ў гэтым спiсе, абярыце тып ``Iншы''"
#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "External ISDN modem"
-msgstr " ISDN "
+msgstr "Унутраная ISDN карта"
#: ../../network/isdn.pm:1
#, c-format
msgid "Internal ISDN card"
-msgstr " ISDN "
+msgstr "Унутраная ISDN карта"
#: ../../network/isdn.pm:1
#, c-format
msgid "What kind is your ISDN connection?"
-msgstr "i ISDN ?"
+msgstr "Якi тып вашага ISDN злучэння?"
#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Network Configuration Wizard"
-msgstr "i i"
+msgstr "Канфiгурацыя сеткi"
#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "Old configuration (isdn4net)"
-msgstr " (firewall)!"
+msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
#: ../../network/isdn.pm:1
#, fuzzy, c-format
msgid "New configuration (isdn-light)"
-msgstr " (firewall)!"
+msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
#: ../../network/isdn.pm:1
#, c-format
@@ -8632,12 +8600,12 @@ msgstr ""
#: ../../network/modem.pm:1
#, fuzzy, c-format
msgid "Do nothing"
-msgstr ""
+msgstr "Чакаецца"
#: ../../network/modem.pm:1
#, fuzzy, c-format
msgid "Install rpm"
-msgstr "븢"
+msgstr "Усталёўка"
#: ../../network/modem.pm:1
#, c-format
@@ -8648,7 +8616,7 @@ msgstr ""
#: ../../network/modem.pm:1
#, fuzzy, c-format
msgid "Title"
-msgstr "i"
+msgstr "Таблiца"
#: ../../network/modem.pm:1
#, c-format
@@ -8660,17 +8628,17 @@ msgstr ""
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Second DNS Server (optional)"
-msgstr "i DNS:"
+msgstr "Другi сервер DNS:"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "First DNS Server (optional)"
-msgstr " DNS"
+msgstr "Першы сервер DNS"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Domain name"
-msgstr "I "
+msgstr "Iмя дамену"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
@@ -8680,12 +8648,12 @@ msgstr "CHAP"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Script-based"
-msgstr " "
+msgstr "на аснове скрыпту"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Terminal-based"
-msgstr " i"
+msgstr "на аснове тэрмiналу"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
@@ -8695,32 +8663,32 @@ msgstr "PAP"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Login ID"
-msgstr "I (login ID)"
+msgstr "Iмя (login ID)"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Phone number"
-msgstr " "
+msgstr "Нумар тэлефону"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection name"
-msgstr "I "
+msgstr "Iмя злучэння"
#: ../../network/modem.pm:1
#, c-format
msgid "Dialup options"
-msgstr " (Dialup)"
+msgstr "Параметры камутаванага злучэння (Dialup)"
#: ../../network/modem.pm:1
#, c-format
msgid "Please choose which serial port your modem is connected to."
-msgstr " ?"
+msgstr "Да якога паслядоўнага порту далучаны мадэм?"
#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Network Configuration"
-msgstr "i i"
+msgstr "Канфiгурацыя сеткi"
#: ../../network/netconnect.pm:1
#, c-format
@@ -8751,27 +8719,27 @@ msgid ""
"A problem occured while restarting the network: \n"
"\n"
"%s"
-msgstr "i i i?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr " "
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Network configuration"
-msgstr "i i"
+msgstr "Канфiгурацыя сеткi"
#: ../../network/netconnect.pm:1
#, c-format
msgid "Do you want to start the connection at boot?"
-msgstr " , ?"
+msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Internet connection"
-msgstr " I-"
+msgstr "Сумеснае Iнтэрнэт-злучэнне"
#: ../../network/netconnect.pm:1
#, c-format
@@ -8784,7 +8752,7 @@ msgstr ""
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Choose the connection you want to configure"
-msgstr " i, i "
+msgstr "Абярыце iнструмент, якi жадаеце скарыстаць"
#: ../../network/netconnect.pm:1
#, c-format
@@ -8794,27 +8762,27 @@ msgstr ""
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "LAN connection"
-msgstr ""
+msgstr "Размеркаванне"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "cable connection detected"
-msgstr " "
+msgstr "Злучэнне прынтэру"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Cable connection"
-msgstr " "
+msgstr "Злучэнне прынтэру"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "detected"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "ADSL connection"
-msgstr ""
+msgstr "Размеркаванне"
#: ../../network/netconnect.pm:1
#, c-format
@@ -8824,17 +8792,17 @@ msgstr ""
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "ISDN connection"
-msgstr " ISDN"
+msgstr "Настройка ISDN"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Winmodem connection"
-msgstr " "
+msgstr "Злучэнне прынтэру"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "detected on port %s"
-msgstr " i %s"
+msgstr "Дубляванне пункту манцiравання %s"
#: ../../network/netconnect.pm:1
#, c-format
@@ -8844,13 +8812,13 @@ msgstr ""
#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Detecting devices..."
-msgstr " ..."
+msgstr "Вызначэнне прыладаў..."
#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Expert Mode"
-msgstr ""
+msgstr "Эксперт"
#: ../../network/netconnect.pm:1
#, c-format
@@ -8860,7 +8828,7 @@ msgstr ""
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Choose the profile to configure"
-msgstr " i:"
+msgstr "Абярыце асноўнага карыстальнiка:"
#: ../../network/netconnect.pm:1
#, c-format
@@ -8892,34 +8860,34 @@ msgid ""
"Press OK to continue."
msgstr ""
"\n"
-" ."
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
-" ."
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
#: ../../network/netconnect.pm:1
#, c-format
msgid "Internet connection & configuration"
-msgstr "I i i"
+msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Configure the connection"
-msgstr " i"
+msgstr "Настройка сеткi"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Disconnect"
-msgstr " ISDN"
+msgstr "Настройка ISDN"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "Connect"
-msgstr "I "
+msgstr "Iмя злучэння"
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
@@ -8928,7 +8896,7 @@ msgid ""
"You can reconfigure your connection."
msgstr ""
"\n"
-" ."
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
@@ -8937,12 +8905,12 @@ msgid ""
"You can connect to the Internet or reconfigure your connection."
msgstr ""
"\n"
-" ."
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "You are not currently connected to the Internet."
-msgstr " I?"
+msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
#: ../../network/netconnect.pm:1
#, c-format
@@ -8951,22 +8919,22 @@ msgid ""
"You can disconnect or reconfigure your connection."
msgstr ""
"\n"
-" ."
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "You are currently connected to the Internet."
-msgstr " I?"
+msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
-msgstr "Proxy i http://..."
+msgstr "Proxy павiнен быць http://..."
#: ../../network/network.pm:1
#, c-format
msgid "Proxy should be http://..."
-msgstr "Proxy i http://..."
+msgstr "Proxy павiнен быць http://..."
#: ../../network/network.pm:1
#, c-format
@@ -8981,22 +8949,22 @@ msgstr "HTTP proxy"
#: ../../network/network.pm:1
#, c-format
msgid "Proxies configuration"
-msgstr " proxy "
+msgstr "Настройка proxy кэшуючых сервераў"
#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "Gateway address should be in format 1.2.3.4"
-msgstr "IP i 1.2.3.4"
+msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "DNS server address should be in format 1.2.3.4"
-msgstr "IP i 1.2.3.4"
+msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
#: ../../network/network.pm:1
#, c-format
msgid "Gateway device"
-msgstr "-"
+msgstr "Прылада-шлюз"
#: ../../network/network.pm:1
#, c-format
@@ -9006,7 +8974,7 @@ msgstr ""
#: ../../network/network.pm:1
#, c-format
msgid "DNS server"
-msgstr "DNS "
+msgstr "DNS сервер"
#: ../../network/network.pm:1
#, c-format
@@ -9016,10 +8984,10 @@ msgid ""
"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 ."
+"Увядзiце iмя сваёй машыны (host).\n"
+"Iмя вашай машыны павiнна быць зададзена поўнасцю,\n"
+"напрыклад ``mybox.mylab.myco.com''.\n"
+"Вы можаце таксама ўвесцi IP адрас шлюзу, калi ён у вас ёсць."
#: ../../network/network.pm:1
#, c-format
@@ -9038,22 +9006,22 @@ msgstr ""
#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "IP address should be in format 1.2.3.4"
-msgstr "IP i 1.2.3.4"
+msgstr "IP адрас павiнен быць у фармаце 1.2.3.4"
#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "Start at boot"
-msgstr " . "
+msgstr "Стварыць загр. дыск"
#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "Assign host name from DHCP address"
-msgstr " , ."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "Network Hotplugging"
-msgstr "i i"
+msgstr "Канфiгурацыя сеткi"
#: ../../network/network.pm:1
#, c-format
@@ -9063,19 +9031,19 @@ msgstr ""
#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "DHCP host name"
-msgstr "I "
+msgstr "Iмя машыны"
#: ../../network/network.pm:1 ../../standalone/drakconnect:1
#: ../../standalone/drakgw:1
#, c-format
msgid "Netmask"
-msgstr " i"
+msgstr "Маска сеткi"
#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakconnect:1
#, c-format
msgid "IP address"
-msgstr "IP "
+msgstr "IP адрас"
#: ../../network/network.pm:1
#, fuzzy, c-format
@@ -9085,17 +9053,17 @@ msgstr "(bootp/dhcp)"
#: ../../network/network.pm:1
#, c-format
msgid "Automatic IP"
-msgstr " IP"
+msgstr "Аўтаматычны IP"
#: ../../network/network.pm:1
#, fuzzy, c-format
msgid " (driver %s)"
-msgstr " XFree86: %s\n"
+msgstr "Сервер XFree86: %s\n"
#: ../../network/network.pm:1
#, c-format
msgid "Configuring network device %s"
-msgstr " %s"
+msgstr "Настройка сеткавай прылады %s"
#: ../../network/network.pm:1
#, c-format
@@ -9104,9 +9072,9 @@ msgid ""
"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)."
+"Калi ласка, увядзiце IP канфiгурацыю для вашай машыны.\n"
+"Кожны пункт павiнен быць запоўнены як IP адрас ў дзесяткова-кропкавай \n"
+"натацыi (напрыклад, 1.2.3.4)."
#: ../../network/network.pm:1
#, c-format
@@ -9123,103 +9091,103 @@ msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fixes after installation."
msgstr ""
-"! i i (firewall). "
-" ."
+"Увага! Знойдзена існуючая сiстэма сеткавай бяспекi (firewall). Вам магчыма "
+"спатрэбіцца скарэктаваць яе пасля ўсталявання."
#: ../../network/shorewall.pm:1
#, c-format
msgid "Firewalling configuration detected!"
-msgstr " (firewall)!"
+msgstr "Знойдзена сістэма сеткавай бяспекі (firewall)!"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Password"
-msgstr " "
+msgstr "Пароль для ўваходу"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Login (user name)"
-msgstr "I (i i)"
+msgstr "Iмя для ўваходу (iмя карыстальнiку)"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Connection timeout (in sec)"
-msgstr "I "
+msgstr "Iмя злучэння"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Connection speed"
-msgstr "I "
+msgstr "Iмя злучэння"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Dialing mode"
-msgstr " "
+msgstr "Рэжым злучэння"
#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "Choose your country"
-msgstr " i"
+msgstr "Выбар клавiятуры"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Provider dns 2 (optional)"
-msgstr "DNS 2 "
+msgstr "DNS 2 правайдару"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Provider dns 1 (optional)"
-msgstr "DNS 1 "
+msgstr "DNS 1 правайдару"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider phone number"
-msgstr " "
+msgstr "Нумар тэлефону правайдара"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider name (ex provider.net)"
-msgstr "I , .net"
+msgstr "Iмя правайдару, напрыклад правайдар.net"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Your personal phone number"
-msgstr " i "
+msgstr "Ваш асабiсты тэлефонны нумар"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO_1"
-msgstr "IO_1 "
+msgstr "IO_1 карты"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO_0"
-msgstr "IO_0 "
+msgstr "IO_0 карты"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO"
-msgstr "IO "
+msgstr "IO карты"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card mem (DMA)"
-msgstr " (DMA)"
+msgstr "Адрасы памяці карты (DMA)"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IRQ"
-msgstr "IRQ "
+msgstr "IRQ карты"
#: ../../network/tools.pm:1
#, c-format
msgid "Please fill or check the field below"
-msgstr "i , i i i"
+msgstr "Калi ласка, запоўнiце цi пазначце поле нiжэй"
#: ../../network/tools.pm:1
#, c-format
msgid "Connection Configuration"
-msgstr " I"
+msgstr "Настройка далучэння да Iнтэрнэту"
#: ../../network/tools.pm:1
#, fuzzy, c-format
@@ -9228,7 +9196,7 @@ msgid ""
"Try to reconfigure your connection."
msgstr ""
"\n"
-" ."
+"Вы можаце адключыцца ці пераканфігураваць вашае злучэнне."
#: ../../network/tools.pm:1
#, c-format
@@ -9238,22 +9206,22 @@ msgstr ""
#: ../../network/tools.pm:1
#, fuzzy, c-format
msgid "The system is now connected to the Internet."
-msgstr " I?"
+msgstr "Як вы плануеце далучыцца да Iнтэрнэту?"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Testing your connection..."
-msgstr "i ISDN ?"
+msgstr "Якi тып вашага ISDN злучэння?"
#: ../../network/tools.pm:1
#, c-format
msgid "Do you want to try to connect to the Internet now?"
-msgstr "i I?"
+msgstr "Цi жадаеце зараз паспрабаваць далучыцца да Iнтэрнэту?"
#: ../../network/tools.pm:1
#, c-format
msgid "Internet configuration"
-msgstr " I"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../partition_table/raw.pm:1
#, c-format
@@ -9267,17 +9235,17 @@ msgstr ""
#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid " (Default)"
-msgstr " ( )"
+msgstr " (Па дамаўленню)"
#: ../../printer/cups.pm:1
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
-msgstr "IP SMB"
+msgstr "IP сервера SMB"
#: ../../printer/cups.pm:1 ../../printer/main.pm:1
#, fuzzy, c-format
msgid "Remote Printers"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../printer/cups.pm:1 ../../printer/data.pm:1
#, c-format
@@ -9292,7 +9260,7 @@ msgstr ""
#: ../../printer/cups.pm:1
#, fuzzy, c-format
msgid "(on %s)"
-msgstr "( %s)"
+msgstr "(модуль %s)"
#: ../../printer/data.pm:1
#, c-format
@@ -9342,27 +9310,27 @@ msgstr ""
#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid "%s (Port %s)"
-msgstr ""
+msgstr "Порт"
#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid "Host %s"
-msgstr "I "
+msgstr "Iмя машыны"
#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid "Network %s"
-msgstr ":"
+msgstr "Сетка:"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Interface \"%s\""
-msgstr " i"
+msgstr "Сеткавы iнтэрфейс"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Local network(s)"
-msgstr " "
+msgstr "сеткавая карта не знойдзена"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
@@ -9397,7 +9365,7 @@ msgstr ""
#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid ", printing to %s"
-msgstr " i %s"
+msgstr "Памылка запiсу ў файл %s"
#: ../../printer/main.pm:1
#, c-format
@@ -9422,7 +9390,7 @@ msgstr ""
#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid ", USB printer"
-msgstr "I i"
+msgstr "Iмя друкаркi"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
@@ -9437,7 +9405,7 @@ msgstr ""
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Local Printers"
-msgstr " "
+msgstr "Лакальны прынтэр"
#: ../../printer/main.pm:1
#, c-format
@@ -9447,12 +9415,12 @@ msgstr ""
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Enter a printer device URI"
-msgstr "URI "
+msgstr "URI прынтэру"
#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid "Printer on NetWare server"
-msgstr " "
+msgstr "Сервер друку"
#: ../../printer/main.pm:1
#, fuzzy, c-format
@@ -9462,62 +9430,62 @@ msgstr "SMB/Windows 95/98/NT"
#: ../../printer/main.pm:1
#, c-format
msgid "Network printer (TCP/Socket)"
-msgstr " (TCP/Socket)"
+msgstr "Сеткавы прынтэр (TCP/Socket)"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer on remote lpd server"
-msgstr " lpd"
+msgstr "Аддалены сервер lpd"
#: ../../printer/main.pm:1
#, fuzzy, c-format
msgid "Printer on remote CUPS server"
-msgstr " CUPS"
+msgstr "Аддалены сервер CUPS"
#: ../../printer/main.pm:1
#, c-format
msgid "Remote printer"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../printer/main.pm:1
#, c-format
msgid "Local printer"
-msgstr " "
+msgstr "Лакальны прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Configuring applications..."
-msgstr " "
+msgstr "Настройка прынтэру"
#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Printerdrake"
-msgstr ""
+msgstr "Прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
-msgstr " CUPS"
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "i i i?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remove printer"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Learn how to use this printer"
-msgstr "i i i?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Print test pages"
-msgstr " "
+msgstr "Друк тэставых старонак"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9571,7 +9539,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Default printer"
-msgstr " "
+msgstr "Лакальны прынтэр"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9581,7 +9549,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer options"
-msgstr "i "
+msgstr "Опцыi прынтэру"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9596,22 +9564,22 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
-msgstr " CUPS"
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer name, description, location"
-msgstr " "
+msgstr "Злучэнне прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer connection type"
-msgstr " I-"
+msgstr "Сумеснае Iнтэрнэт-злучэнне"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Raw printer"
-msgstr "I i"
+msgstr "Iмя друкаркi"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9623,45 +9591,45 @@ msgstr ""
#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Close"
-msgstr " "
+msgstr "Порт мышы"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
-msgstr "i i i?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Modify printer configuration"
-msgstr " I"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Add a new printer"
-msgstr "I i"
+msgstr "Iмя друкаркi"
#: ../../printer/printerdrake.pm:1 ../../standalone/drakconnect:1
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Normal Mode"
-msgstr ""
+msgstr "Звычайны"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Change the printing system"
-msgstr " i"
+msgstr "Настройка сеткi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer sharing"
-msgstr ""
+msgstr "Прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "CUPS configuration"
-msgstr ""
+msgstr "Настройка"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9680,19 +9648,8 @@ msgid ""
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-" i .\n"
-" , i i."
-
-#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-" i .\n"
-" , i i."
+"Тут змяшчаюцца чэргi друку.\n"
+"Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9707,47 +9664,47 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Installing Foomatic..."
-msgstr " %s"
+msgstr "Усталяванне пакету %s"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Failed to configure printer \"%s\"!"
-msgstr " "
+msgstr "Настройка прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
-msgstr " "
+msgstr "Настройка прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Reading printer data..."
-msgstr " CUPS"
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Which printing system (spooler) do you want to use?"
-msgstr " i ?"
+msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Select Printer Spooler"
-msgstr " "
+msgstr "Выбар тыпу злучэння прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Setting Default Printer..."
-msgstr " "
+msgstr "Лакальны прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Installing %s ..."
-msgstr " %s"
+msgstr "Усталяванне пакету %s"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Removing %s ..."
-msgstr " : %s\n"
+msgstr "Памеры экрану: %s\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9766,7 +9723,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Starting the printing system at boot time"
-msgstr " i ?"
+msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9791,22 +9748,22 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "paranoid"
-msgstr "i"
+msgstr "Паранаiдальны"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "high"
-msgstr "i"
+msgstr "Высокi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Restarting printing system..."
-msgstr " i ?"
+msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Configuration of a remote printer"
-msgstr " "
+msgstr "Настройка прынтэру"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9830,12 +9787,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Configure the network now"
-msgstr " i"
+msgstr "Настройка сеткi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Go on without configuring the network"
-msgstr " i"
+msgstr "Настройка сеткi"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9849,17 +9806,17 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Network functionality not configured"
-msgstr "i "
+msgstr "Манiтор пакуль не настроены"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Starting network..."
-msgstr "i ISDN ?"
+msgstr "Якi тып вашага ISDN злучэння?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Refreshing printer data..."
-msgstr " CUPS"
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9871,7 +9828,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Transfer printer configuration"
-msgstr " I"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9881,7 +9838,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "New printer name"
-msgstr "I i"
+msgstr "Iмя друкаркi"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -9996,32 +9953,32 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing test page(s)..."
-msgstr " "
+msgstr "Друк тэставых старонак"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Print option list"
-msgstr "i "
+msgstr "Опцыi прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
-msgstr " i"
+msgstr "Адлучэнне ад сеткi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printing/Photo Card Access on \"%s\""
-msgstr " i"
+msgstr "Адлучэнне ад сеткi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
-msgstr " i"
+msgstr "Адлучэнне ад сеткi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr " i"
+msgstr "Адлучэнне ад сеткi"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10124,9 +10081,9 @@ msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-" i .\n"
-" , , i .\n"
-" ?"
+"Тэставыя старонкi адпраўлены дэману друку.\n"
+"Перад тым, як прынтэр запрацуе, можа прайсцi пэўны час.\n"
+"Ён працуе нармальна?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
@@ -10137,27 +10094,27 @@ msgid ""
"%s\n"
"\n"
msgstr ""
-" i .\n"
-" , , i .\n"
-" :\n"
+"Тэставыя старонкi адпраўлены дэману друку.\n"
+"Перад тым, як прынтэр запрацуе, можа прайсцi пэўны час.\n"
+"Статус друку:\n"
"%s\n"
"\n"
-" ?"
+"Ён працуе нармальна?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Do not print any test page"
-msgstr " "
+msgstr "Друк тэставых старонак"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Photo test page"
-msgstr " "
+msgstr "Друк тэставых старонак"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Alternative test page (A4)"
-msgstr " "
+msgstr "Друк тэставых старонак"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10167,17 +10124,17 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Standard test page"
-msgstr ""
+msgstr "Стандартны"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Print"
-msgstr ""
+msgstr "Прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "No test pages"
-msgstr ", i "
+msgstr "Так, надрукаваць абедзве старонкi тэксту"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10191,14 +10148,14 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Test pages"
-msgstr " "
+msgstr "Праверка партоў"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
-msgstr " i ?"
+msgstr "Жадаеце пратэсцiраваць друк?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10216,6 +10173,11 @@ msgid "Option %s must be an integer number!"
msgstr ""
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Злучэнне прынтэру"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -10271,7 +10233,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Lexmark inkjet configuration"
-msgstr " I"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10296,7 +10258,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "OKI winprinter configuration"
-msgstr " I"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10318,27 +10280,27 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Which printer model do you have?"
-msgstr "i i ?"
+msgstr "Якi тып друкаркi вы маеце?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer model selection"
-msgstr " "
+msgstr "Злучэнне прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Reading printer database..."
-msgstr " CUPS"
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Select model manually"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "The model is correct"
-msgstr " ?"
+msgstr "Гэта дакладна?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10358,27 +10320,27 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Your printer model"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Preparing printer database..."
-msgstr " CUPS"
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Location"
-msgstr ""
+msgstr "Размеркаванне"
#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Description"
-msgstr "i"
+msgstr "Апiсанне"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Name of printer"
-msgstr "I i"
+msgstr "Iмя друкаркi"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10410,12 +10372,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Installing mtools packages..."
-msgstr " %s"
+msgstr "Усталяванне пакету %s"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Installing SANE packages..."
-msgstr " %s"
+msgstr "Усталяванне пакету %s"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10425,7 +10387,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Installing HPOJ package..."
-msgstr " %s"
+msgstr "Усталяванне пакету %s"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10443,7 +10405,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Command line"
-msgstr "I "
+msgstr "Iмя дамену"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10460,7 +10422,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Detected model: %s %s"
-msgstr " i %s"
+msgstr "Дубляванне пункту манцiравання %s"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10470,7 +10432,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer Device URI"
-msgstr "URI "
+msgstr "URI прынтэру"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10483,12 +10445,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Port"
-msgstr ""
+msgstr "Порт"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer host name or IP"
-msgstr "I "
+msgstr "Iмя прынтэру"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10498,7 +10460,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer host name or IP missing!"
-msgstr "I "
+msgstr "Iмя прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
@@ -10508,8 +10470,8 @@ msgid ""
"JetDirect servers the port number is usually 9100, on other servers it can "
"vary. See the manual of your hardware."
msgstr ""
-" i, \n"
-"i i ."
+"Каб друкаваць праз сокет друкаркi, вам неабходна забяспечыць\n"
+"iмя прынтэру i магчыма яго нумар порту."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10521,7 +10483,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "TCP/Socket Printer Options"
-msgstr "i "
+msgstr "Опцыi сокету прынтэру"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10536,12 +10498,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Scanning network..."
-msgstr "i ISDN ?"
+msgstr "Якi тып вашага ISDN злучэння?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer auto-detection"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10556,12 +10518,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print Queue Name"
-msgstr "I i "
+msgstr "Iмя чаргi друку"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer Server"
-msgstr " "
+msgstr "Сервер друку"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
@@ -10571,14 +10533,14 @@ msgid ""
"print queue name for the printer you wish to access and any applicable user "
"name and password."
msgstr ""
-" NetWare i NetWare "
-"( i TCP/IP) i i i , "
-" , i i i ."
+"Для друку на прынтэры NetWare неабходна пазначыць iмя серверу друку NetWare "
+"(не заўсёды супадае з iменем у сетцы TCP/IP) i iмя чаргi друку, якая "
+"адпавядае абранаму прынтэру, а таксама iмя карыстальнiку i пароль."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NetWare Printer Options"
-msgstr "i NetWare"
+msgstr "Опцыi прынтэру NetWare"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10640,27 +10602,27 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Auto-detected"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Workgroup"
-msgstr " "
+msgstr "Працоўная група"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Share name"
-msgstr "I "
+msgstr "Iмя для размеркаванага рэсурсу"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB server IP"
-msgstr "IP SMB"
+msgstr "IP сервера SMB"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB server host"
-msgstr "I SMB"
+msgstr "Iмя серверу SMB"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10677,20 +10639,20 @@ msgid ""
"the print server, as well as the share name for the printer you wish to "
"access and any applicable user name, password, and workgroup information."
msgstr ""
-" SMB i SMB ( "
-" i TCP/IP) i IP , i "
-", i , i i, i "
-"i ."
+"Для друку на прынтэры SMB неабходна пазначыць iмя хосту SMB (не заўсёды "
+"супадае з iменем у сетцы TCP/IP) i адрас IP сервера друку, а таксама iмя "
+"рэсурсу, якi спалучаны з выбраным прынтэрам, iмя карыстальнiку, пароль i "
+"iнфармацыю аб працоўнай групе."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "i SMB (Windows 9x/NT)"
+msgstr "Опцыi прынтэру SMB (Windows 9x/NT)"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer \"%s\" on server \"%s\""
-msgstr " i"
+msgstr "Адлучэнне ад сеткi"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10700,22 +10662,22 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remote printer name missing!"
-msgstr " "
+msgstr "Аддалены вузел"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remote host name missing!"
-msgstr " "
+msgstr "Аддалены вузел"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remote printer name"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remote host name"
-msgstr " "
+msgstr "Аддалены вузел"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
@@ -10723,24 +10685,24 @@ msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-" i i \n"
-" i i i i ,\n"
-" i."
+"Для настройкi аддаленай чаргi друку вам патрэбна\n"
+"пазначыць iмя аддаленага сервера i iмя чаргi друку,\n"
+"у якую аддалены сервер будзе адпраўляць заданнi."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote lpd Printer Options"
-msgstr "i lpd"
+msgstr "Опцыi аддаленага прынтэру lpd"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Manual configuration"
-msgstr ""
+msgstr "Настройка"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "You must choose/enter a printer/device!"
-msgstr "URI "
+msgstr "URI прынтэру"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10752,7 +10714,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Please choose the port that your printer is connected to."
-msgstr " ?"
+msgstr "Да якога паслядоўнага порту далучаны мадэм?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10764,7 +10726,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Please choose the printer to which the print jobs should go."
-msgstr " ?"
+msgstr "Да якога паслядоўнага порту далучаны мадэм?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10796,7 +10758,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "The following printer was auto-detected. "
-msgstr " "
+msgstr "Наступныя пакеты будуць выдалены"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10828,17 +10790,17 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Available printers"
-msgstr " "
+msgstr "Даступныя пакеты"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "No printer found!"
-msgstr " "
+msgstr "Лакальны прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "You must enter a device or file name!"
-msgstr "URI "
+msgstr "URI прынтэру"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10852,17 +10814,17 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Local Printer"
-msgstr " "
+msgstr "Лакальны прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "USB printer \\#%s"
-msgstr "I i"
+msgstr "Iмя друкаркi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer on parallel port \\#%s"
-msgstr "I "
+msgstr "Iмя прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
@@ -10872,12 +10834,12 @@ msgstr "SMB/Windows 95/98/NT"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Network printer \"%s\", port %s"
-msgstr " (TCP/Socket)"
+msgstr "Сеткавы прынтэр (TCP/Socket)"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Detected %s"
-msgstr " i %s"
+msgstr "Дубляванне пункту манцiравання %s"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
@@ -10917,7 +10879,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Auto-detect printers connected to this machine"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11020,12 +10982,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Configuring printer ..."
-msgstr " "
+msgstr "Настройка прынтэру"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Searching for new printers..."
-msgstr " "
+msgstr "Даступныя пакеты"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11042,12 +11004,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr " , ?"
+msgstr "Вы жадаеце, каб гэтае злучэнне стартавала пры загрузцы?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr " i ?"
+msgstr "Жадаеце пратэсцiраваць друк?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11059,7 +11021,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr " ?"
+msgstr "Да якога паслядоўнага порту далучаны мадэм?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11088,7 +11050,7 @@ msgid ""
"\n"
"%s%s\n"
"is directly connected to your system"
-msgstr " i !"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
@@ -11097,7 +11059,7 @@ msgid ""
"\n"
"%s%s\n"
"are directly connected to your system"
-msgstr " i !"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
@@ -11106,27 +11068,27 @@ msgid ""
"\n"
"%s%s\n"
"are directly connected to your system"
-msgstr " i !"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "and %d unknown printers"
-msgstr "I i"
+msgstr "Iмя друкаркi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "and one unknown printer"
-msgstr "I i"
+msgstr "Iмя друкаркi"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Checking your system..."
-msgstr " i ?"
+msgstr "Якую сiстэму друку Вы жадаеце выкарыстоўваць?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Restarting CUPS..."
-msgstr ""
+msgstr "абмежаванне"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11141,12 +11103,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "The entered IP is not correct.\n"
-msgstr " ?"
+msgstr "Гэта дакладна?"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Server IP missing!"
-msgstr "I "
+msgstr "Iмя прынтэру"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11156,22 +11118,22 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Accessing printers on remote CUPS servers"
-msgstr " CUPS"
+msgstr "Аддалены сервер CUPS"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remove selected server"
-msgstr "i "
+msgstr "Выдалiць чаргу друку"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Edit selected server"
-msgstr "i "
+msgstr "Выдалiць чаргу друку"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Add server"
-msgstr " i"
+msgstr "Дадаць карыстальнiка"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11211,12 +11173,12 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Sharing of local printers"
-msgstr " "
+msgstr "Даступныя пакеты"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Remove selected host/network"
-msgstr "i "
+msgstr "Выдалiць чаргу друку"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11255,7 +11217,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Automatic correction of CUPS configuration"
-msgstr " "
+msgstr "Настройка мадэму"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11273,27 +11235,27 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "None"
-msgstr ""
+msgstr "Зроблена"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Additional CUPS servers: "
-msgstr "IP SMB"
+msgstr "IP сервера SMB"
#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "No remote machines"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Custom configuration"
-msgstr ""
+msgstr "Настройка"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer sharing on hosts/networks: "
-msgstr ""
+msgstr "Прынтэр"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11322,7 +11284,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "CUPS printer sharing configuration"
-msgstr " I"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11336,19 +11298,19 @@ msgid ""
"Printers on remote CUPS servers do not need to be configured here; these "
"printers will be automatically detected."
msgstr ""
-" CUPS \n"
-" , .\n"
-" , \" CUPS\"."
+"Аддалены CUPS сервер не патрабуе ад Вас настройкі прынтэру\n"
+"на гэтай машыне, ён будзе знойдзены аўтаматычна.\n"
+"Калі Вы не ўпэўнены, абярыце \"Аддалены сервер CUPS\"."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "How is the printer connected?"
-msgstr " ?"
+msgstr "Як прынтар далучаны?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Select Printer Connection"
-msgstr " "
+msgstr "Выбар тыпу злучэння прынтэру"
#: ../../security/help.pm:1
#, c-format
@@ -11740,22 +11702,22 @@ msgstr ""
#: ../../security/level.pm:1
#, fuzzy, c-format
msgid "Use libsafe for servers"
-msgstr " i "
+msgstr "Абярыце дадатковыя настройкi для сервера"
#: ../../security/level.pm:1
#, fuzzy, c-format
msgid "Security level"
-msgstr "i i"
+msgstr "Настройкi ўзроўня бяспекi"
#: ../../security/level.pm:1
#, fuzzy, c-format
msgid "Please choose the desired security level"
-msgstr " i"
+msgstr "Узровень бяспекi"
#: ../../security/level.pm:1
#, fuzzy, c-format
msgid "DrakSec Basic Options"
-msgstr "i"
+msgstr "Опцыi"
#: ../../security/level.pm:1
#, fuzzy, c-format
@@ -11763,8 +11725,8 @@ msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
-" ii 4 , i .\n"
-" i i."
+"Прымаюцца ўласцiвасцi 4 узроўня, але зараз сiстэма поўнасцю зачынена.\n"
+"Параметры бяспекi ўстаноўлены на максiмум."
#: ../../security/level.pm:1
#, fuzzy, c-format
@@ -11776,9 +11738,9 @@ msgid ""
"connections from many clients. Note: if your machine is only a client on the "
"Internet, you should choose a lower level."
msgstr ""
-" i i i\n"
-". i i \n"
-", i i iii ii."
+"На гэтам узроўне бяспекi магчыма выкарыстанне сiстэмы ў якасцi\n"
+"серверу. Узровень бяспекi дастаткова высокi для работы\n"
+"серверу, якi дапускае злучэннi са шматлiкiмi клiентамi."
#: ../../security/level.pm:1
#, c-format
@@ -11793,9 +11755,9 @@ msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-" i, i ',\n"
-"i Internet i i. i\n"
-"i."
+"Гэта стандартны узровень бяспекi, якi рэкамендаваны для камп'ютэру,\n"
+"якi далучаны да Internet у якасцi клiенту. Даданыя новыя праверкi\n"
+"бяспекi."
#: ../../security/level.pm:1
#, c-format
@@ -11803,8 +11765,8 @@ msgid ""
"Passwords are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-" , ' i \n"
-" ."
+"Пароль зараз уключаны, але выкарыстанне камп'ютэру ў якасцi сеткавага\n"
+"таксама не рэкамендавана."
#: ../../security/level.pm:1
#, c-format
@@ -11813,48 +11775,48 @@ 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, i : i "
-"\n"
-" , i i i Internet. "
-"."
+"Гэты узровень неабходна выкарыстоўваць з асцярогай. Сiстэма будзе прасцей\n"
+"у карыстаннi, але i больш чутнай: гэты узровень бяспекi нельга "
+"выкарыстоўваць\n"
+"на машынах, якiя далучаны да сеткi цi да Internet. Уваход не абаронены "
+"паролем."
#: ../../security/level.pm:1
#, c-format
msgid "Paranoid"
-msgstr "i"
+msgstr "Паранаiдальны"
#: ../../security/level.pm:1
#, fuzzy, c-format
msgid "Higher"
-msgstr "i"
+msgstr "Высокi"
#: ../../security/level.pm:1
#, c-format
msgid "High"
-msgstr "i"
+msgstr "Высокi"
#: ../../security/level.pm:1
#, c-format
msgid "Poor"
-msgstr " "
+msgstr "Зусім слабы"
#: ../../security/level.pm:1
#, c-format
msgid "Welcome To Crackers"
-msgstr " Crackers"
+msgstr "Сардэчна запрашаем у Crackers"
#: ../../share/advertising/01-thanks.pl:1
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
@@ -11865,190 +11827,150 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
+msgid ""
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
#: ../../share/advertising/02-community.pl:1
-#, fuzzy, c-format
-msgid "Get involved in the Free Software world"
-msgstr ""
-
-#: ../../share/advertising/03-internet.pl:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+msgid "Build the future of Linux!"
msgstr ""
-#: ../../share/advertising/03-internet.pl:1
-#, fuzzy, c-format
-msgid "Get the most from the Internet"
-msgstr " I"
-
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr ""
-
-#: ../../share/advertising/06-mcc.pl:1
-#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Control Center"
-msgstr " I"
-
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, fuzzy, c-format
-msgid "User interfaces"
-msgstr " i"
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Настройка злучэння з Iнтэрнэтам"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "A customizable environment"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
-#, fuzzy, c-format
-msgid "Development simplified"
-msgstr ""
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "This product is available on MandrakeStore website"
+msgid ""
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
+msgid "Turn your computer into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies\", are available on our e-store:"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "Optimize your security"
+msgid "The official MandrakeSoft Store"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
-"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
-msgid "Strategic partners"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+msgid "Optimize your security by using Mandrake Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Certify yourself on Linux"
+msgid "This product is available on the MandrakeStore Web site."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -12056,60 +11978,44 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, fuzzy, c-format
msgid "Become a MandrakeExpert"
-msgstr ""
+msgstr "эксперт"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, fuzzy, c-format
msgid "MandrakeExpert Corporate"
-msgstr ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
+msgstr "эксперт"
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
-msgstr "i , i %s i "
+msgstr "Калi ласка, перайдзiце ў %s для актывацыi змяненняў"
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "i , i, Ctrl-Alt-BackSpace"
+msgstr "Калi ласка, выйдзiце, а потым скарыстайце Ctrl-Alt-BackSpace"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12134,7 +12040,7 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "No floppy drive available!"
-msgstr " "
+msgstr "Дыскавод недаступны"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12149,12 +12055,12 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Please insert floppy disk:"
-msgstr " %s"
+msgstr "Устаўце дыскету ў дыскавод %s"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Write Config"
-msgstr " X Window"
+msgstr "Настройка X Window"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12172,7 +12078,7 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "dhcpd Server Configuration"
-msgstr " i"
+msgstr "Заканчэнне настройкi"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12187,12 +12093,12 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Name Servers:"
-msgstr "NIS :"
+msgstr "NIS сервер:"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Domain Name:"
-msgstr "I "
+msgstr "Iмя дамену"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12212,7 +12118,7 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Netmask:"
-msgstr " i"
+msgstr "Маска сеткi"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12229,12 +12135,12 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "dhcpd Config..."
-msgstr " IDE"
+msgstr "Настройка IDE"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Delete Client"
-msgstr "i"
+msgstr "Знiшчыць"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12264,7 +12170,7 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "type: %s"
-msgstr ": "
+msgstr "Тып: "
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12274,7 +12180,7 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Add User -->"
-msgstr " i"
+msgstr "Дадаць карыстальнiка"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12287,12 +12193,12 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Delete All NBIs"
-msgstr " "
+msgstr "Абярыце файл"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "<-- Delete"
-msgstr "i"
+msgstr "Знiшчыць"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12307,7 +12213,7 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "No NIC selected!"
-msgstr ""
+msgstr "Размеркаванне"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12499,7 +12405,7 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Add/Del Users"
-msgstr " i"
+msgstr "Дадаць карыстальнiка"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -12509,47 +12415,47 @@ msgstr ""
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Etherboot Floppy/ISO"
-msgstr " . "
+msgstr "Стварыць загр. дыск"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Stop Server"
-msgstr "NIS :"
+msgstr "NIS сервер:"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Start Server"
-msgstr "NIS :"
+msgstr "NIS сервер:"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Disable Server"
-msgstr " "
+msgstr "Сервер друку"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Enable Server"
-msgstr " "
+msgstr "Сервер друку"
#: ../../standalone/drakTermServ:1
#, fuzzy, c-format
msgid "Mandrake Terminal Server Configuration"
-msgstr " I"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "Remove the last item"
-msgstr " i %s"
+msgstr "Фарматаванне вiртуальнага раздзелу %s"
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "Add an item"
-msgstr " i"
+msgstr "Дадаць карыстальнiка"
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "Auto Install"
-msgstr "븢"
+msgstr "Усталёўка"
#: ../../standalone/drakautoinst:1
#, c-format
@@ -12562,7 +12468,7 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Congratulations!"
-msgstr " ii!"
+msgstr "Прыміце вiншаваннi!"
#: ../../standalone/drakautoinst:1
#, c-format
@@ -12576,7 +12482,7 @@ msgstr ""
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "Creating auto install floppy"
-msgstr " "
+msgstr "Стварэнне дыскеты для ўсталявання"
#: ../../standalone/drakautoinst:1
#, c-format
@@ -12593,12 +12499,12 @@ msgstr ""
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "Automatic Steps Configuration"
-msgstr " "
+msgstr "Настройка мадэму"
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "replay"
-msgstr "i"
+msgstr "Перазагрузiць"
#: ../../standalone/drakautoinst:1
#, c-format
@@ -12619,7 +12525,7 @@ msgstr ""
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "Auto Install Configurator"
-msgstr " "
+msgstr "Настройка пасля ўсталявання"
#: ../../standalone/drakautoinst:1
#, c-format
@@ -12629,7 +12535,7 @@ msgstr ""
#: ../../standalone/drakautoinst:1
#, fuzzy, c-format
msgid "Error!"
-msgstr ""
+msgstr "Памылка"
#: ../../standalone/drakbackup:1
#, c-format
@@ -12832,37 +12738,37 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore"
-msgstr " "
+msgstr "Аднаўленне з файлу"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup Now"
-msgstr ". i"
+msgstr "Настр. файлавых сiстэмаў"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Advanced Configuration"
-msgstr " i"
+msgstr "Заканчэнне настройкi"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Wizard Configuration"
-msgstr ""
+msgstr "Настройка"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "View Backup Configuration."
-msgstr "i i"
+msgstr "Канфiгурацыя сеткi"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup Now from configuration file"
-msgstr "i i"
+msgstr "Канфiгурацыя сеткi"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Drakbackup Configuration"
-msgstr "i i"
+msgstr "Канфiгурацыя сеткi"
#: ../../standalone/drakbackup:1
#, c-format
@@ -12872,7 +12778,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Sending files..."
-msgstr " "
+msgstr "Захаванне ў файл"
#: ../../standalone/drakbackup:1
#, c-format
@@ -12882,17 +12788,17 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup other files"
-msgstr " ii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup user files"
-msgstr " ii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup system files"
-msgstr " ii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, c-format
@@ -12914,22 +12820,22 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please select data to backup..."
-msgstr "i , ."
+msgstr "Калi ласка, абярыце мову для карыстання."
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please select media for backup..."
-msgstr "i , ."
+msgstr "Калi ласка, абярыце мову для карыстання."
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please select data to restore..."
-msgstr "i , ."
+msgstr "Калi ласка, абярыце мову для карыстання."
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "The following packages need to be installed:\n"
-msgstr " i"
+msgstr "Наступныя пакеты будуць даданы да сiстэмы"
#: ../../standalone/drakbackup:1
#, c-format
@@ -12949,7 +12855,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Next"
-msgstr ""
+msgstr "Тэкст"
#: ../../standalone/drakbackup:1
#, c-format
@@ -12960,22 +12866,22 @@ msgstr ""
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Save"
-msgstr " "
+msgstr "Стартавае меню"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Build Backup"
-msgstr " ii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore Progress"
-msgstr " "
+msgstr "Аднаўленне з файлу"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore From Catalog"
-msgstr " i "
+msgstr "Дадатковая таблiца раздзелаў"
#: ../../standalone/drakbackup:1
#, c-format
@@ -12990,7 +12896,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Custom Restore"
-msgstr " "
+msgstr "Па выбару"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13000,7 +12906,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore Failed..."
-msgstr " "
+msgstr "Аднаўленне з файлу"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13015,17 +12921,17 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Hostname required"
-msgstr "I "
+msgstr "Iмя машыны"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Username required"
-msgstr "I i:"
+msgstr "Iмя карыстальнiку:"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Password required"
-msgstr ""
+msgstr "Пароль"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13035,7 +12941,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Host Name"
-msgstr "I "
+msgstr "Iмя машыны"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13045,7 +12951,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore Via Network"
-msgstr "i "
+msgstr "Пераканфiгураваць лакальную сетку"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13062,7 +12968,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore From Tape"
-msgstr " i "
+msgstr "Дадатковая таблiца раздзелаў"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13079,7 +12985,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore From CD"
-msgstr " "
+msgstr "Аднаўленне з дыскеты"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13091,14 +12997,14 @@ msgstr ""
msgid ""
"Change\n"
"Restore Path"
-msgstr " "
+msgstr "Аднаўленне з файлу"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid ""
"Restore Selected\n"
"Files"
-msgstr "i "
+msgstr "Выдалiць чаргу друку"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13120,32 +13026,32 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "select path to restore (instead of /)"
-msgstr "i , ."
+msgstr "калi ласка, пазначце тып вашай мышы."
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore Other"
-msgstr " "
+msgstr "Аднаўленне з файлу"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore Users"
-msgstr " "
+msgstr "Аднаўленне з файлу"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore system"
-msgstr " i"
+msgstr "Усталяванне сiстэмы"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Other Media"
-msgstr ""
+msgstr "Іншыя"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Select another media to restore from"
-msgstr "i , ."
+msgstr "калi ласка, пазначце тып вашай мышы."
#: ../../standalone/drakbackup:1
#, c-format
@@ -13155,12 +13061,12 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Restore from Hard Disk."
-msgstr " "
+msgstr "Аднаўленне з дыскеты"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Use quota for backup files."
-msgstr " ii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13172,22 +13078,22 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please enter the directory to save:"
-msgstr " , ."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Use Hard Disk to backup"
-msgstr " ii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "please choose the date to restore"
-msgstr "i , ."
+msgstr "калi ласка, пазначце тып вашай мышы."
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup the system files before:"
-msgstr " ii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13202,7 +13108,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid " Restore Configuration "
-msgstr "i i"
+msgstr "Канфiгурацыя сеткi"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13222,7 +13128,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please uncheck or remove it on next time."
-msgstr " ?"
+msgstr "Да якога паслядоўнага порту далучаны мадэм?"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13266,7 +13172,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "\t-Tape \n"
-msgstr ": "
+msgstr "Тып: "
#: ../../standalone/drakbackup:1
#, c-format
@@ -13305,7 +13211,7 @@ msgstr ""
msgid ""
"\n"
"- Options:\n"
-msgstr "i"
+msgstr "Опцыi"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13341,7 +13247,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid " on device: %s"
-msgstr ": %s\n"
+msgstr "Мыш: %s\n"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13410,17 +13316,17 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup system"
-msgstr ". i"
+msgstr "Настр. файлавых сiстэмаў"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please choose what you want to backup"
-msgstr " "
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "on Tape Device"
-msgstr " "
+msgstr "Порт прынтэру"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13430,7 +13336,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "across Network"
-msgstr ":"
+msgstr "Сетка:"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13440,27 +13346,27 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please choose where you want to backup"
-msgstr " "
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "More Options"
-msgstr "i :"
+msgstr "Опцыi модулю:"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "When"
-msgstr " "
+msgstr "З колам"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Where"
-msgstr " "
+msgstr "З колам"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "What"
-msgstr ""
+msgstr "Чакайце"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13485,19 +13391,19 @@ msgstr ""
msgid ""
"Please choose the\n"
"media for backup."
-msgstr "i , ."
+msgstr "Калi ласка, абярыце мову для карыстання."
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid ""
"Please choose the time \n"
"interval between each backup"
-msgstr " "
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Use daemon"
-msgstr "I i:"
+msgstr "Iмя карыстальнiку:"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13532,22 +13438,22 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please enter the directory to save to:"
-msgstr " , ."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check if you want to eject your tape after the backup."
-msgstr " "
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check if you want to erase your tape before the backup."
-msgstr " "
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check if you want to use the non-rewinding device."
-msgstr " "
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13557,12 +13463,12 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Use tape to backup"
-msgstr " ii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "No CD device defined!"
-msgstr " "
+msgstr "Абярыце файл"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13574,12 +13480,12 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check if you are using a DVDRAM device"
-msgstr " "
+msgstr "Націсніце на раздзел"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check if you are using a DVDR device"
-msgstr " "
+msgstr "Націсніце на раздзел"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13589,22 +13495,22 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr " "
+msgstr "Націсніце на раздзел"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check if you are using CDRW media"
-msgstr " "
+msgstr "Націсніце на раздзел"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check for multisession CD"
-msgstr " "
+msgstr "Націсніце на раздзел"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please choose your CD/DVD media size (Mb)"
-msgstr "i , i."
+msgstr "Калi ласка, абярыце тып клавiятуры."
#: ../../standalone/drakbackup:1
#, c-format
@@ -13627,17 +13533,17 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Remember this password"
-msgstr " "
+msgstr "Няма паролю"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please enter your password"
-msgstr " "
+msgstr "Паспрабуйце яшчэ раз"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please enter your login"
-msgstr " "
+msgstr "Паспрабуйце яшчэ раз"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13649,7 +13555,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please enter the host name or IP."
-msgstr " , ."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
#: ../../standalone/drakbackup:1
#, c-format
@@ -13685,17 +13591,17 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Use network connection to backup"
-msgstr " ii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Users"
-msgstr "I i:"
+msgstr "Iмя карыстальнiку:"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Windows (FAT32)"
-msgstr "i Windows(TM)"
+msgstr "Выдалiць Windows(TM)"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13705,7 +13611,7 @@ msgstr ""
#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Remove Selected"
-msgstr "i "
+msgstr "Выдалiць чаргу друку"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13715,7 +13621,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Please check all users that you want to include in your backup."
-msgstr " "
+msgstr "Выбар пакетаў для ўсталявання"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13737,7 +13643,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup your System files. (/etc directory)"
-msgstr " ii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13760,7 +13666,7 @@ msgstr ""
#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "File Selection"
-msgstr " "
+msgstr "Выбар групы пакетаў"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13770,7 +13676,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid " Error while sending mail. \n"
-msgstr " %s"
+msgstr "Памылка чытання файлу %s"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13814,17 +13720,17 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "No changes to backup!"
-msgstr " ii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Hard Disk Backup files..."
-msgstr " ii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup Other files..."
-msgstr " ii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13834,7 +13740,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Backup User files..."
-msgstr " ii"
+msgstr "Дрэнны файл рэзервовай копii"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13884,7 +13790,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Total progess"
-msgstr " "
+msgstr "Праверка партоў"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13905,7 +13811,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Can't find %s on %s"
-msgstr " %s i: %s"
+msgstr "Памылка адкрыцця %s для запiсу: %s"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13915,7 +13821,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, fuzzy, c-format
msgid "Bad password on %s"
-msgstr " "
+msgstr "Няма паролю"
#: ../../standalone/drakbackup:1
#, c-format
@@ -13990,7 +13896,7 @@ msgstr ""
#: ../../standalone/drakboot:1
#, c-format
msgid "Installation of %s failed. The following error occured:"
-msgstr " %s . i :"
+msgstr "Усталяванне %s не атрымалася. Узнiкла наступная памылка:"
#: ../../standalone/drakboot:1
#, c-format
@@ -14035,19 +13941,19 @@ msgstr ""
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Themes"
-msgstr ""
+msgstr "Дрэва"
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Splash selection"
-msgstr "i "
+msgstr "Асабiсты выбар пакетаў"
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
-msgstr " I-"
+msgstr "Сумеснае Iнтэрнэт-злучэнне"
#: ../../standalone/drakboot:1
#, c-format
@@ -14057,12 +13963,12 @@ msgstr ""
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Theme installation failed!"
-msgstr " "
+msgstr "Клас усталявання"
#: ../../standalone/drakboot:1 ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "Notice"
-msgstr ""
+msgstr "гальштук"
#: ../../standalone/drakboot:1
#, c-format
@@ -14096,7 +14002,7 @@ msgstr ""
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Write %s"
-msgstr " XFree86 %s"
+msgstr "Сервер XFree86 %s"
#: ../../standalone/drakboot:1
#, c-format
@@ -14121,7 +14027,7 @@ msgstr ""
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Create new theme"
-msgstr " "
+msgstr "Стварэнне новага раздзелу"
#: ../../standalone/drakboot:1
#, c-format
@@ -14133,17 +14039,17 @@ msgstr ""
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Install themes"
-msgstr " i"
+msgstr "Усталяванне сiстэмы"
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Lilo/grub mode"
-msgstr " "
+msgstr "Рэжым злучэння"
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Yaboot mode"
-msgstr " "
+msgstr "Загрузачная прылада"
#: ../../standalone/drakboot:1 ../../standalone/drakfloppy:1
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
@@ -14161,17 +14067,17 @@ msgstr ""
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "/_File"
-msgstr ":\n"
+msgstr "Файлы:\n"
#: ../../standalone/drakboot:1
#, fuzzy, c-format
msgid "Boot Style Configuration"
-msgstr " "
+msgstr "Настройка мадэму"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "No browser available! Please install one"
-msgstr " , i "
+msgstr "Вы можаце абраць іншыя мовы, якiя будуць даступны пасля ўсталявання"
#: ../../standalone/drakbug:1
#, c-format
@@ -14181,22 +14087,22 @@ msgstr ""
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Package not installed"
-msgstr " "
+msgstr "Заканчэнне ўсталявання"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Not installed"
-msgstr " "
+msgstr "Заканчэнне ўсталявання"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Standalone Tools"
-msgstr " "
+msgstr "Кансольныя інструментальныя сродкі"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Report"
-msgstr ""
+msgstr "Порт"
#: ../../standalone/drakbug:1
#, c-format
@@ -14214,7 +14120,7 @@ msgstr ""
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Release: "
-msgstr "i , "
+msgstr "Калi ласка, пачакайце"
#: ../../standalone/drakbug:1
#, c-format
@@ -14224,27 +14130,27 @@ msgstr ""
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Package: "
-msgstr ""
+msgstr "Пакет"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Application:"
-msgstr ""
+msgstr "Размеркаванне"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Configuration Wizards"
-msgstr "i i"
+msgstr "Канфiгурацыя сеткi"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Userdrake"
-msgstr " DiskDrake"
+msgstr "Выкарыстоўваць DiskDrake"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Windows Migration tool"
-msgstr " "
+msgstr "Навуковыя прыкладанні"
#: ../../standalone/drakbug:1
#, c-format
@@ -14254,27 +14160,27 @@ msgstr ""
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Software Manager"
-msgstr "I "
+msgstr "Iмя для размеркаванага рэсурсу"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Remote Control"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Msec"
-msgstr " "
+msgstr "Порт мышы"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Menudrake"
-msgstr ""
+msgstr "абавязкова"
#: ../../standalone/drakbug:1
#, fuzzy, c-format
msgid "Mandrake Online"
-msgstr " I"
+msgstr "Далучэнне да Iнтэрнэту"
#: ../../standalone/drakbug:1
#, c-format
@@ -14292,6 +14198,11 @@ msgid "First Time Wizard"
msgstr ""
#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Mandrake Control Center"
+msgstr "Далучэнне да Iнтэрнэту"
+
+#: ../../standalone/drakbug:1
#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -14304,7 +14215,7 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Internet Connection Configuration"
-msgstr "I i i"
+msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
#: ../../standalone/drakconnect:1
#, c-format
@@ -14319,22 +14230,22 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, c-format
msgid "Gateway"
-msgstr ""
+msgstr "Шлюз"
#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Connection type: "
-msgstr "I "
+msgstr "Iмя злучэння"
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Profile: "
-msgstr " i: "
+msgstr "памылка манцiравання: "
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Internet connection configuration"
-msgstr "I i i"
+msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
#: ../../standalone/drakconnect:1
#, c-format
@@ -14353,12 +14264,12 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "activate now"
-msgstr ""
+msgstr "Актыўны"
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "deactivate now"
-msgstr ""
+msgstr "Актыўны"
#: ../../standalone/drakconnect:1
#, c-format
@@ -14383,12 +14294,12 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "LAN Configuration"
-msgstr ""
+msgstr "Настройка"
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "LAN configuration"
-msgstr " ADSL"
+msgstr "Настройка ADSL"
#: ../../standalone/drakconnect:1
#, c-format
@@ -14410,12 +14321,12 @@ msgstr ""
#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Not connected"
-msgstr ""
+msgstr "Размеркаванне"
#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Connected"
-msgstr "I "
+msgstr "Iмя злучэння"
#: ../../standalone/drakconnect:1
#, c-format
@@ -14432,12 +14343,12 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, c-format
msgid "Gateway:"
-msgstr ":"
+msgstr "Шлюз:"
#: ../../standalone/drakconnect:1
#, c-format
msgid "Apply"
-msgstr ""
+msgstr "Применить"
#: ../../standalone/drakconnect:1
#, c-format
@@ -14447,7 +14358,7 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, c-format
msgid "Wizard..."
-msgstr " ..."
+msgstr "Майстар стварэння..."
#: ../../standalone/drakconnect:1
#, c-format
@@ -14457,7 +14368,7 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Type:"
-msgstr ": "
+msgstr "Тып: "
#: ../../standalone/drakconnect:1
#, c-format
@@ -14467,22 +14378,22 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Hostname: "
-msgstr "I "
+msgstr "Iмя машыны"
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Configure Local Area Network..."
-msgstr " i"
+msgstr "Настройка лакальнай сеткi"
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "State"
-msgstr " "
+msgstr "Стартавае меню"
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Driver"
-msgstr ""
+msgstr "сервер"
#: ../../standalone/drakconnect:1
#, c-format
@@ -14492,12 +14403,12 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Interface"
-msgstr " i"
+msgstr "Сеткавы iнтэрфейс"
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Configure Internet Access..."
-msgstr " "
+msgstr "Настройка службаў"
#: ../../standalone/drakconnect:1 ../../standalone/net_monitor:1
#, c-format
@@ -14529,7 +14440,7 @@ msgstr ""
#: ../../standalone/drakconnect:1
#, fuzzy, c-format
msgid "Network configuration (%d adapters)"
-msgstr "i i"
+msgstr "Канфiгурацыя сеткi"
#: ../../standalone/drakedm:1
#, c-format
@@ -14555,7 +14466,7 @@ msgstr ""
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Unable to fork: %s"
-msgstr "i "
+msgstr "Зрабiць неактыўным сеткавае злучэнне"
#: ../../standalone/drakfloppy:1
#, c-format
@@ -14582,17 +14493,17 @@ msgstr ""
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Remove a module"
-msgstr " "
+msgstr "Адваротны парадак старонак"
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Add a module"
-msgstr " i"
+msgstr "Дадаць карыстальнiка"
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "omit scsi modules"
-msgstr " "
+msgstr "Рэжым злучэння"
#: ../../standalone/drakfloppy:1
#, c-format
@@ -14607,7 +14518,7 @@ msgstr ""
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "force"
-msgstr ""
+msgstr "Перанос"
#: ../../standalone/drakfloppy:1
#, c-format
@@ -14617,52 +14528,52 @@ msgstr ""
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Expert Area"
-msgstr ""
+msgstr "Эксперт"
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "kernel version"
-msgstr " I"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../standalone/drakfloppy:1
#, c-format
msgid "default"
-msgstr " "
+msgstr "Па дамаўленню"
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "General"
-msgstr ""
+msgstr "Агульны"
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "boot disk creation"
-msgstr " "
+msgstr "Настройка пасля ўсталявання"
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "drakfloppy"
-msgstr " "
+msgstr "Аднаўленне з дыскеты"
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Size"
-msgstr ": %s"
+msgstr "Памер: %s"
#: ../../standalone/drakfloppy:1
#, fuzzy, c-format
msgid "Module name"
-msgstr "i :"
+msgstr "Опцыi модулю:"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Post Uninstall"
-msgstr " "
+msgstr "Заканчэнне ўсталявання"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Remove fonts on your system"
-msgstr " i !"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
#: ../../standalone/drakfont:1
#, c-format
@@ -14672,7 +14583,7 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Post Install"
-msgstr "븢"
+msgstr "Усталёўка"
#: ../../standalone/drakfont:1
#, c-format
@@ -14682,17 +14593,17 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Copy fonts on your system"
-msgstr " i !"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Remove List"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Selected All"
-msgstr " "
+msgstr "Абярыце файл"
#: ../../standalone/drakfont:1
#, c-format
@@ -14712,7 +14623,7 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Install List"
-msgstr " i"
+msgstr "Усталяванне сiстэмы"
#: ../../standalone/drakfont:1
#, c-format
@@ -14732,17 +14643,17 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Generic Printers"
-msgstr ""
+msgstr "Прынтэр"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Abiword"
-msgstr "i"
+msgstr "Адмянiць"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "StarOffice"
-msgstr ""
+msgstr "добра"
#: ../../standalone/drakfont:1
#, c-format
@@ -14752,7 +14663,7 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Choose the applications that will support the fonts:"
-msgstr " "
+msgstr "Выбар раздзелаў для фарматавання"
#: ../../standalone/drakfont:1
#, c-format
@@ -14791,22 +14702,22 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "About"
-msgstr "i"
+msgstr "Адмянiць"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Font List"
-msgstr " i"
+msgstr "Кропка манцiравання"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Advanced Options"
-msgstr " i"
+msgstr "Заканчэнне настройкi"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Uninstall Fonts"
-msgstr " RPM- i"
+msgstr "Выдаленне выбраных RPM-пакетаў з сiстэмы"
#: ../../standalone/drakfont:1
#, c-format
@@ -14816,17 +14727,17 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Import Fonts"
-msgstr " "
+msgstr "Фарматаванне раздзелаў"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "done"
-msgstr ""
+msgstr "Зроблена"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "xfs restart"
-msgstr ""
+msgstr "абмежаванне"
#: ../../standalone/drakfont:1
#, c-format
@@ -14836,7 +14747,7 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Restart XFS"
-msgstr ""
+msgstr "абмежаванне"
#: ../../standalone/drakfont:1
#, c-format
@@ -14881,12 +14792,12 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "True Type fonts installation"
-msgstr " "
+msgstr "Падрыхтоўка ўсталяваньня"
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "Fonts copy"
-msgstr " "
+msgstr "Фарматаваць дыскету"
#: ../../standalone/drakfont:1
#, c-format
@@ -14911,7 +14822,7 @@ msgstr ""
#: ../../standalone/drakfont:1
#, fuzzy, c-format
msgid "no fonts found"
-msgstr " i %s"
+msgstr "Не знайшлi %s"
#: ../../standalone/drakfont:1
#, c-format
@@ -14936,17 +14847,17 @@ msgid ""
"%s\n"
"\n"
"Click on Configure to launch the setup wizard."
-msgstr " I-"
+msgstr "Сумеснае Iнтэрнэт-злучэнне"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Internet Connection Sharing configuration"
-msgstr "I i i"
+msgstr "Iнтэрнэт злучэнне i канфiгурацыя"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "No Internet Connection Sharing has ever been configured."
-msgstr " I- "
+msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
#: ../../standalone/drakgw:1
#, c-format
@@ -14965,30 +14876,30 @@ msgid ""
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-" .\n"
-" Internet\n"
-" ' , \n"
-" (DHCP)."
+"Усе адканфігуравана.\n"
+"Зараз вы можаце сумесна выкарыстоўваць падключэнне да Internet\n"
+"з іншымі камп'ютэрамі ў вашай ЛВС, карыстаючыся аўтаматычным\n"
+"канфігураваннем (DHCP)."
#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
#, c-format
msgid "Problems installing package %s"
-msgstr " %s"
+msgstr "Праблемы з усталяваннем пакету %s"
#: ../../standalone/drakgw:1
#, c-format
msgid "Configuring scripts, installing software, starting servers..."
-msgstr " , , ..."
+msgstr "Канфігурацыя сцэнараў, усталяванне ПЗ, запуск службаў..."
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Configuring..."
-msgstr " IDE"
+msgstr "Настройка IDE"
#: ../../standalone/drakgw:1
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
-msgstr " i i %s!\n"
+msgstr "Патэнцыйны адрас ЛВС канфлiктуе з бягучай канфiгурацыяй %s!\n"
#: ../../standalone/drakgw:1
#, c-format
@@ -15023,17 +14934,17 @@ msgstr ""
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "The internal domain name"
-msgstr "I i"
+msgstr "Iмя друкаркi"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "The DNS Server IP"
-msgstr "IP SMB"
+msgstr "IP сервера SMB"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "(This) DHCP Server IP"
-msgstr "IP SMB"
+msgstr "IP сервера SMB"
#: ../../standalone/drakgw:1
#, c-format
@@ -15048,7 +14959,7 @@ msgstr ""
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Local Network adress"
-msgstr " "
+msgstr "сеткавая карта не знойдзена"
#: ../../standalone/drakgw:1
#, c-format
@@ -15080,12 +14991,12 @@ msgstr ""
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Current interface configuration"
-msgstr " I"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Show current interface configuration"
-msgstr " I"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../standalone/drakgw:1
#, c-format
@@ -15095,7 +15006,7 @@ msgstr ""
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Automatic reconfiguration"
-msgstr " "
+msgstr "Настройка мадэму"
#: ../../standalone/drakgw:1
#, c-format
@@ -15110,7 +15021,7 @@ msgstr ""
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Network interface already configured"
-msgstr "i "
+msgstr "Манiтор пакуль не настроены"
#: ../../standalone/drakgw:1
#, c-format
@@ -15118,8 +15029,8 @@ msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-"i , , "
-" i."
+"Калi ласка, абярыце сеткавы адаптар, які будзе выкарыстаны для далучэння да "
+"вашай лакальнай сеткi."
#: ../../standalone/drakgw:1
#, c-format
@@ -15134,7 +15045,7 @@ msgstr ""
#: ../../standalone/drakgw:1
#, c-format
msgid "Network interface"
-msgstr " i"
+msgstr "Сеткавы iнтэрфейс"
#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
#, c-format
@@ -15142,18 +15053,18 @@ msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-"i ethernet i . i , "
-" i i."
+"Нi водны ethernet сеткавы адаптар у вашай сiстэме не вызначаны. Калi ласка, "
+"скарыстайце канфiгурацыйны iнструмэнт."
#: ../../standalone/drakgw:1 ../../standalone/drakpxe:1
#, c-format
msgid "No network adapter on your system!"
-msgstr " i !"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Interface %s"
-msgstr " i"
+msgstr "Сеткавы iнтэрфейс"
#: ../../standalone/drakgw:1
#, c-format
@@ -15162,6 +15073,22 @@ msgstr ""
#: ../../standalone/drakgw:1
#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Сервер друку"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -15173,22 +15100,22 @@ msgid ""
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
"(LAN)."
msgstr ""
-" ' \n"
-" (Internet Connection Sharing)?\n"
+"Ваш камп'ютар можа быць сканфігураваны на сумеснае выкарыстанне\n"
+" Інтэрнэту (Internet Connection Sharing)?\n"
"\n"
-": .\n"
+"Заўвага: вам патрэбны сеткавы адаптар для падключэння да ЛВС.\n"
"\n"
-" Internet?"
+"Вы жадаеце усталяваць сумесны доступ да Internet?"
#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing"
-msgstr " I-"
+msgstr "Сумеснае Iнтэрнэт-злучэнне"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Internet Connection Sharing is now enabled."
-msgstr " I- "
+msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
#: ../../standalone/drakgw:1
#, c-format
@@ -15203,12 +15130,12 @@ msgstr ""
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "reconfigure"
-msgstr " X Window"
+msgstr "Настройка X Window"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "enable"
-msgstr "i"
+msgstr "Таблiца"
#: ../../standalone/drakgw:1
#, c-format
@@ -15222,22 +15149,22 @@ msgstr ""
#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing currently disabled"
-msgstr " I- "
+msgstr "Сумеснае Iнтэрнэт-злучэнне зараз забаронена"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Internet Connection Sharing is now disabled."
-msgstr " I- "
+msgstr "Сумеснае Iнтэрнэт-злучэнне зараз забаронена"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "Disabling servers..."
-msgstr " ..."
+msgstr "Вызначэнне прыладаў..."
#: ../../standalone/drakgw:1
#, fuzzy, c-format
msgid "disable"
-msgstr "i"
+msgstr "Таблiца"
#: ../../standalone/drakgw:1
#, c-format
@@ -15251,7 +15178,7 @@ msgstr ""
#: ../../standalone/drakgw:1
#, c-format
msgid "Internet Connection Sharing currently enabled"
-msgstr " I- "
+msgstr "Сумеснае Iнтэрнэт-злучэнне зараз магчыма"
#: ../../standalone/drakgw:1
#, c-format
@@ -15273,17 +15200,17 @@ msgstr ""
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "group :"
-msgstr " "
+msgstr "Працоўная група"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "user :"
-msgstr "I i:"
+msgstr "Iмя карыстальнiку:"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Path selection"
-msgstr "i "
+msgstr "Асабiсты выбар пакетаў"
#: ../../standalone/drakperm:1
#, c-format
@@ -15325,17 +15252,17 @@ msgstr ""
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Property"
-msgstr ""
+msgstr "Порт"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Permissions"
-msgstr "i: %s\n"
+msgstr "Версiя: %s\n"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Current user"
-msgstr " i"
+msgstr "Прыняць карыстальнiка"
#: ../../standalone/drakperm:1
#, c-format
@@ -15350,27 +15277,27 @@ msgstr ""
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "edit"
-msgstr "i"
+msgstr "Сярэднi"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Delete selected rule"
-msgstr "i "
+msgstr "Выдалiць чаргу друку"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "delete"
-msgstr "i"
+msgstr "Знiшчыць"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Add a new rule at the end"
-msgstr "I i"
+msgstr "Iмя друкаркi"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "add a rule"
-msgstr " i"
+msgstr "Дадаць карыстальнiка"
#: ../../standalone/drakperm:1
#, c-format
@@ -15380,7 +15307,7 @@ msgstr ""
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "Down"
-msgstr ""
+msgstr "Зроблена"
#: ../../standalone/drakperm:1
#, c-format
@@ -15408,17 +15335,17 @@ msgstr ""
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "permissions"
-msgstr " %s"
+msgstr "Раздзел %s"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "group"
-msgstr " "
+msgstr "Працоўная група"
#: ../../standalone/drakperm:1
#, fuzzy, c-format
msgid "user"
-msgstr "I i:"
+msgstr "Iмя карыстальнiку:"
#: ../../standalone/drakperm:1
#, c-format
@@ -15428,7 +15355,7 @@ msgstr ""
#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "Location of auto_install.cfg file"
-msgstr " "
+msgstr "Стварэнне дыскеты для ўсталявання"
#: ../../standalone/drakpxe:1
#, c-format
@@ -15448,12 +15375,12 @@ msgstr ""
#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "No image found"
-msgstr " "
+msgstr "Лакальны прынтэр"
#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "Installation image directory"
-msgstr " i"
+msgstr "Заканчэнне настройкi"
#: ../../standalone/drakpxe:1
#, c-format
@@ -15488,14 +15415,14 @@ msgstr ""
#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "Interface %s (on network %s)"
-msgstr " i"
+msgstr "Сеткавы iнтэрфейс"
#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "Please choose which network interface will be used for the dhcp server."
msgstr ""
-"i , , i "
-" i"
+"Калi ласка, пазначце сеткавы адаптар, якi плануеце выкарыстоўваць для "
+"далучэння да iнтэрнэт"
#: ../../standalone/drakpxe:1
#, fuzzy, c-format
@@ -15504,7 +15431,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -15512,32 +15439,32 @@ msgid ""
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
"(LAN)."
msgstr ""
-" ' \n"
-" (Internet Connection Sharing)?\n"
+"Ваш камп'ютар можа быць сканфігураваны на сумеснае выкарыстанне\n"
+" Інтэрнэту (Internet Connection Sharing)?\n"
"\n"
-": .\n"
+"Заўвага: вам патрэбны сеткавы адаптар для падключэння да ЛВС.\n"
"\n"
-" Internet?"
+"Вы жадаеце усталяваць сумесны доступ да Internet?"
#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "Installation Server Configuration"
-msgstr " i"
+msgstr "Заканчэнне настройкi"
#: ../../standalone/drakpxe:1
#, fuzzy, c-format
msgid "PXE Server Configuration"
-msgstr " i"
+msgstr "Заканчэнне настройкi"
#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "Please wait, setting security options..."
-msgstr " "
+msgstr "Падрыхтоўка ўсталяваньня"
#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "Please wait, setting security level..."
-msgstr "i i"
+msgstr "Настройкi ўзроўня бяспекi"
#: ../../standalone/draksec:1
#, c-format
@@ -15547,12 +15474,12 @@ msgstr ""
#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "System Options"
-msgstr "i :"
+msgstr "Опцыi модулю:"
#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "Network Options"
-msgstr "i :"
+msgstr "Опцыi модулю:"
#: ../../standalone/draksec:1
#, c-format
@@ -15564,22 +15491,22 @@ msgstr ""
#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "Security Administrator:"
-msgstr "i lpd"
+msgstr "Опцыi аддаленага прынтэру lpd"
#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "Security Alerts:"
-msgstr "i i"
+msgstr "Настройкi ўзроўня бяспекi"
#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "Security Level:"
-msgstr "i i"
+msgstr "Настройкi ўзроўня бяспекi"
#: ../../standalone/draksec:1
#, fuzzy, c-format
msgid "(default value: %s)"
-msgstr " ? ( %s) "
+msgstr " ? (змоўчанне %s) "
#: ../../standalone/draksec:1
#, c-format
@@ -15633,7 +15560,7 @@ msgstr ""
#: ../../standalone/draksound:1
#, fuzzy, c-format
msgid "No Sound Card detected!"
-msgstr ""
+msgstr "Размеркаванне"
#: ../../standalone/draksplash:1
#, c-format
@@ -15643,17 +15570,17 @@ msgstr ""
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "Generating preview ..."
-msgstr " ..."
+msgstr "Вызначэнне прыладаў..."
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "You must choose an image file first!"
-msgstr "URI "
+msgstr "URI прынтэру"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "ProgressBar color selection"
-msgstr " "
+msgstr "Злучэнне прынтэру"
#: ../../standalone/draksplash:1
#, c-format
@@ -15668,12 +15595,17 @@ msgstr ""
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "choose image file"
-msgstr " "
+msgstr "Абярыце дзеянне"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "Абярыце дзеянне"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "Configure bootsplash picture"
-msgstr " "
+msgstr "Настройка службаў"
#: ../../standalone/draksplash:1
#, c-format
@@ -15688,17 +15620,17 @@ msgstr ""
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "Choose color"
-msgstr " i"
+msgstr "Абярыце манiтор"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "Save theme"
-msgstr " i"
+msgstr "Усталяванне сiстэмы"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "Preview"
-msgstr ""
+msgstr "прылада"
#: ../../standalone/draksplash:1
#, c-format
@@ -15756,22 +15688,22 @@ msgstr ""
#: ../../standalone/draksplash:1
#, c-format
msgid "Browse"
-msgstr ""
+msgstr "Прагляд"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "Theme name"
-msgstr "I "
+msgstr "Iмя для размеркаванага рэсурсу"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "final resolution"
-msgstr " "
+msgstr "Памеры экрану"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
msgid "first step creation"
-msgstr " "
+msgstr "Настройка пасля ўсталявання"
#: ../../standalone/draksplash:1
#, c-format
@@ -15816,7 +15748,7 @@ msgstr ""
#: ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "There was an error while scanning for TV channels"
-msgstr " :"
+msgstr "Атрымалася памылка ўпарадкавання пакетаў:"
#: ../../standalone/drakxtv:1
#, c-format
@@ -15858,17 +15790,17 @@ msgstr ""
#: ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "France [SECAM]"
-msgstr ""
+msgstr "Францыя"
#: ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "East Europe"
-msgstr "Ţ"
+msgstr "Еўропа"
#: ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "West Europe"
-msgstr "Ţ"
+msgstr "Еўропа"
#: ../../standalone/drakxtv:1
#, c-format
@@ -15888,7 +15820,7 @@ msgstr ""
#: ../../standalone/drakxtv:1
#, fuzzy, c-format
msgid "Canada (cable)"
-msgstr "i ()"
+msgstr "Канадскi (Квебэк)"
#: ../../standalone/drakxtv:1
#, c-format
@@ -15929,7 +15861,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "secondary"
-msgstr "%d "
+msgstr "%d секундаў"
#: ../../standalone/harddrake2:1
#, c-format
@@ -15940,7 +15872,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Unknown"
-msgstr ""
+msgstr "Агульны"
#: ../../standalone/harddrake2:1
#, c-format
@@ -15950,7 +15882,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Running \"%s\" ..."
-msgstr " CUPS"
+msgstr "Чытаю базу дадзеных драйвероў CUPS"
#: ../../standalone/harddrake2:1
#, c-format
@@ -15960,32 +15892,32 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Configure module"
-msgstr " "
+msgstr "Настройка мышы"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Information"
-msgstr "I"
+msgstr "Iнфармацыя"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Detected hardware"
-msgstr ". i "
+msgstr "Гл. апiсанне абсталявання"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Harddrake2 version "
-msgstr " "
+msgstr "Вызначэнне жорсткага дыску"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Detection in progress"
-msgstr " i %s"
+msgstr "Дубляванне пункту манцiравання %s"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Author:"
-msgstr ""
+msgstr "Аўтапошук"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16002,7 +15934,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/_About..."
-msgstr "i"
+msgstr "Адмянiць"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16019,7 +15951,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Select a device !"
-msgstr " i"
+msgstr "Абярыце вiдэакарту"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16036,32 +15968,32 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/_Fields description"
-msgstr "i"
+msgstr "Апiсанне"
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
msgid "/_Help"
-msgstr ""
+msgstr "/_Дапамога"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/_Quit"
-msgstr ""
+msgstr "Выхад"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/Autodetect _jazz drives"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/Autodetect _modems"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "/Autodetect _printers"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
@@ -16081,7 +16013,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "The type of bus on which the mouse is connected"
-msgstr "i , , ."
+msgstr "Калi ласка, пазначце послядоўны порт, да якога падключана вашая мыш."
#: ../../standalone/harddrake2:1
#, c-format
@@ -16091,7 +16023,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Model stepping"
-msgstr ""
+msgstr "фарматаванне"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16106,17 +16038,27 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "network printer port"
-msgstr " (TCP/Socket)"
+msgstr "Сеткавы прынтэр (TCP/Socket)"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the name of the CPU"
+msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Name"
-msgstr "I: "
+msgstr "Iмя: "
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "2 кнопкi"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Number of buttons"
-msgstr "2 i"
+msgstr "2 кнопкi"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16126,7 +16068,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Model name"
-msgstr "i :"
+msgstr "Опцыi модулю:"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16136,12 +16078,12 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Model"
-msgstr " "
+msgstr "Порт мышы"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "hard disk model"
-msgstr " (DMA)"
+msgstr "Адрасы памяці карты (DMA)"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16161,7 +16103,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Level"
-msgstr ""
+msgstr "узровень"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16171,7 +16113,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Floppy format"
-msgstr ""
+msgstr "Фарматаванне"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16246,7 +16188,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Module"
-msgstr " "
+msgstr "Порт мышы"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16256,7 +16198,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "New devfs device"
-msgstr "-"
+msgstr "Прылада-шлюз"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16266,7 +16208,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Old device file"
-msgstr " "
+msgstr "Абярыце файл"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16276,7 +16218,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -16294,7 +16236,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Cpuid level"
-msgstr "i i"
+msgstr "Настройкi ўзроўня бяспекi"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16334,7 +16276,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Cache size"
-msgstr " "
+msgstr "памер блоку"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16359,7 +16301,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Bus identification"
-msgstr "i"
+msgstr "Аўтэнтыфiкацыя"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16382,7 +16324,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Channel"
-msgstr ""
+msgstr "Адмена"
#: ../../standalone/harddrake2:1
#, c-format
@@ -16403,22 +16345,22 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Alternative drivers"
-msgstr " "
+msgstr "Друк тэставых старонак"
#: ../../standalone/keyboarddrake:1
#, c-format
msgid "Do you want the BackSpace to return Delete in console?"
-msgstr " BackSpace Delete?"
+msgstr "Вы жадаеце каб BackSpace працаваў у кансолі як Delete?"
#: ../../standalone/keyboarddrake:1
#, c-format
msgid "Please, choose your keyboard layout."
-msgstr "i , i."
+msgstr "Калi ласка, абярыце тып клавiятуры."
#: ../../standalone/livedrake:1
#, c-format
msgid "Unable to start live upgrade !!!\n"
-msgstr " live upgrade !!!\n"
+msgstr "Немагчыма запусціць live upgrade !!!\n"
#: ../../standalone/livedrake:1
#, fuzzy, c-format
@@ -16426,17 +16368,17 @@ 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"
+"Змянiце ваш Cd-Rom!\n"
"\n"
-"i , Cd-Rom, \"%s\", i ii O "
-".\n"
-"i , ii i, i "
+"Калi ласка, устаўце Cd-Rom, пазначаны \"%s\", у ваш дыскавод i нацiснiце Oк "
+"пасля.\n"
+"Калi вы не маеце яго, нацiснiце Адмянiць, каб адмянiць усталяванне з гэтага "
"Cd."
#: ../../standalone/livedrake:1
#, fuzzy, c-format
msgid "Change Cd-Rom"
-msgstr "i "
+msgstr "Змянiць памеры экрану"
#: ../../standalone/localedrake:1
#, c-format
@@ -16451,12 +16393,12 @@ msgstr ""
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Please enter your email address below "
-msgstr " "
+msgstr "Паспрабуйце яшчэ раз"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "alert configuration"
-msgstr ""
+msgstr "Настройка"
#: ../../standalone/logdrake:1
#, c-format
@@ -16466,7 +16408,7 @@ msgstr ""
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "load setting"
-msgstr ""
+msgstr "фарматаванне"
#: ../../standalone/logdrake:1
#, c-format
@@ -16478,42 +16420,42 @@ msgstr ""
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "service setting"
-msgstr ""
+msgstr "прылада"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Xinetd Service"
-msgstr " "
+msgstr "Сервер друку"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Webmin Service"
-msgstr ""
+msgstr "прылада"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "SSH Server"
-msgstr "NIS :"
+msgstr "NIS сервер:"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Samba Server"
-msgstr "NIS :"
+msgstr "NIS сервер:"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Postfix Mail Server"
-msgstr " "
+msgstr "Сервер друку"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Ftp Server"
-msgstr "NIS :"
+msgstr "NIS сервер:"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Domain Name Resolver"
-msgstr "I "
+msgstr "Iмя дамену"
#: ../../standalone/logdrake:1
#, c-format
@@ -16531,7 +16473,7 @@ msgstr ""
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Mail alert configuration"
-msgstr " ADSL"
+msgstr "Настройка ADSL"
#: ../../standalone/logdrake:1
#, c-format
@@ -16596,12 +16538,12 @@ msgstr ""
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "Messages"
-msgstr " "
+msgstr "Праверка партоў"
#: ../../standalone/logdrake:1
#, fuzzy, c-format
msgid "User"
-msgstr "I i:"
+msgstr "Iмя карыстальнiку:"
#: ../../standalone/logdrake:1
#, c-format
@@ -16661,22 +16603,22 @@ msgstr ""
#: ../../standalone/mousedrake:1
#, c-format
msgid "Emulate third button?"
-msgstr " ?"
+msgstr "Эмуляваць трэцюю кнопку?"
#: ../../standalone/mousedrake:1
#, c-format
msgid "Please choose your mouse type."
-msgstr "i , ."
+msgstr "калi ласка, пазначце тып вашай мышы."
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Connect %s"
-msgstr "I "
+msgstr "Iмя злучэння"
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Disconnect %s"
-msgstr " ISDN"
+msgstr "Настройка ISDN"
#: ../../standalone/net_monitor:1
#, c-format
@@ -16708,7 +16650,7 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Local measure"
-msgstr " "
+msgstr "Лакальны прынтэр"
#: ../../standalone/net_monitor:1
#, c-format
@@ -16718,7 +16660,7 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Color configuration"
-msgstr ""
+msgstr "Настройка"
#: ../../standalone/net_monitor:1
#, c-format
@@ -16730,7 +16672,7 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Connection complete."
-msgstr "I "
+msgstr "Iмя злучэння"
#: ../../standalone/net_monitor:1
#, c-format
@@ -16745,17 +16687,17 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Connecting to the Internet "
-msgstr " I"
+msgstr "Далучэнне да Iнтэрнэту"
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Disconnecting from the Internet "
-msgstr " I"
+msgstr "Далучэнне да Iнтэрнэту"
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Wait please, testing your connection..."
-msgstr "i ISDN ?"
+msgstr "Якi тып вашага ISDN злучэння?"
#: ../../standalone/net_monitor:1
#, c-format
@@ -16765,7 +16707,7 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Connection Time: "
-msgstr "I "
+msgstr "Iмя злучэння"
#: ../../standalone/net_monitor:1
#, c-format
@@ -16775,7 +16717,7 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Sending Speed:"
-msgstr " "
+msgstr "Захаванне ў файл"
#: ../../standalone/net_monitor:1
#, c-format
@@ -16785,17 +16727,17 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Profile "
-msgstr " i: "
+msgstr "памылка манцiравання: "
#: ../../standalone/net_monitor:1
#, fuzzy, c-format
msgid "Network Monitoring"
-msgstr "i i"
+msgstr "Канфiгурацыя сеткi"
#: ../../standalone/printerdrake:1
#, fuzzy, c-format
msgid "Reading data of installed printers..."
-msgstr " "
+msgstr "Даступныя пакеты"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16810,12 +16752,12 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Scannerdrake"
-msgstr " i"
+msgstr "Абярыце вiдэакарту"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "You must enter a host name or an IP address.\n"
-msgstr " , ."
+msgstr "Калі ласка, зрабіце некалькі рухаў мышшу."
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16825,7 +16767,7 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Sharing of local scanners"
-msgstr " "
+msgstr "Даступныя пакеты"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16835,17 +16777,17 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Remove selected host"
-msgstr "i "
+msgstr "Выдалiць чаргу друку"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Edit selected host"
-msgstr "i "
+msgstr "Выдалiць чаргу друку"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Add host"
-msgstr " i"
+msgstr "Дадаць карыстальнiка"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16855,12 +16797,12 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Usage of remote scanners"
-msgstr " "
+msgstr "Выкарыстоўваць незанятую прастору"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "All remote machines"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16882,7 +16824,7 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Scanner sharing to hosts: "
-msgstr ""
+msgstr "Прынтэр"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16911,17 +16853,17 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Searching for new scanners ..."
-msgstr " "
+msgstr "Даступныя пакеты"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Searching for configured scanners ..."
-msgstr " "
+msgstr "Даступныя пакеты"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Scanner sharing"
-msgstr ""
+msgstr "Прынтэр"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16931,7 +16873,7 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Search for new scanners"
-msgstr " "
+msgstr "Даступныя пакеты"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16945,7 +16887,7 @@ msgid ""
"\n"
"%s\n"
"is available on your system.\n"
-msgstr " i !"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
@@ -16954,7 +16896,7 @@ msgid ""
"\n"
"%s\n"
"are available on your system.\n"
-msgstr " i !"
+msgstr "У вашай сістэме няма нiводнага сеткавага адаптара!"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16967,7 +16909,7 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "choose device"
-msgstr " "
+msgstr "Загрузачная прылада"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -16977,12 +16919,12 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Searching for scanners ..."
-msgstr " "
+msgstr "Даступныя пакеты"
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Auto-detect available ports"
-msgstr " "
+msgstr "Аддалены прынтэр"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -17015,7 +16957,7 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Port: %s"
-msgstr ""
+msgstr "Порт"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -17025,7 +16967,7 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Detected model: %s"
-msgstr " i %s"
+msgstr "Дубляванне пункту манцiравання %s"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -17035,7 +16977,7 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "Select a scanner model"
-msgstr " i"
+msgstr "Абярыце вiдэакарту"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -17045,12 +16987,12 @@ msgstr ""
#: ../../standalone/scannerdrake:1
#, fuzzy, c-format
msgid "%s found on %s, configure it automatically?"
-msgstr " i ?"
+msgstr "Жадаеце настроiць прынтэр?"
#: ../../standalone/service_harddrake:1
#, fuzzy, c-format
msgid "Hardware probing in progress"
-msgstr " i %s"
+msgstr "Дубляванне пункту манцiравання %s"
#: ../../standalone/service_harddrake:1
#, c-format
@@ -17065,56 +17007,56 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Office Workstation"
-msgstr " "
+msgstr "Навуковыя прыкладанні"
#: ../../share/compssUsers:999
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
msgstr ""
-" : (kword, abiword), , "
-" pdf-, .."
+"Офісныя праграмы: працэсары словаў (kword, abiword), электроныя табліцы, "
+"аглядальнікі pdf-файлаў, і г.д."
#: ../../share/compssUsers:999
#, fuzzy
msgid "Workstation"
-msgstr " "
+msgstr "Навуковыя прыкладанні"
#: ../../share/compssUsers:999
#, fuzzy
msgid "Game station"
-msgstr " - "
+msgstr "Мультымедыя - гук"
#: ../../share/compssUsers:999
msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr " : , 㳳 .."
+msgstr "Забаўляльныя праграмы: аркады, стратэгіі і г.д."
#: ../../share/compssUsers:999
#, fuzzy
msgid "Multimedia station"
-msgstr " - "
+msgstr "Мультымедыя - гук"
#: ../../share/compssUsers:999
msgid "Sound and video playing/editing programs"
-msgstr " "
+msgstr "Рэдактары і прайгравальнікі гуку і відэа"
#: ../../share/compssUsers:999
#, fuzzy
msgid "Internet station"
-msgstr " I"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../share/compssUsers:999
msgid ""
"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
"browse the Web"
msgstr ""
-" (pine, mutt, tin...), "
-"Web "
+"Прыкладанні для чытання і адпраўкі пошты і навінаў (pine, mutt, tin...), "
+"Web аглядальнікі"
#: ../../share/compssUsers:999
#, fuzzy
msgid "Network Computer (client)"
-msgstr " (socket)"
+msgstr "Сеткавы прынтэр (socket)"
#: ../../share/compssUsers:999
msgid "Clients for different protocols including ssh"
@@ -17123,17 +17065,17 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Configuration"
-msgstr ""
+msgstr "Настройка"
#: ../../share/compssUsers:999
#, fuzzy
msgid "Tools to ease the configuration of your computer"
-msgstr "i i i?"
+msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#: ../../share/compssUsers:999
#, fuzzy
msgid "Scientific Workstation"
-msgstr " "
+msgstr "Навуковыя прыкладанні"
#: ../../share/compssUsers:999
msgid "Scientific applications such as gnuplot"
@@ -17141,24 +17083,24 @@ msgstr ""
#: ../../share/compssUsers:999
msgid "Console Tools"
-msgstr " "
+msgstr "Кансольныя інструментальныя сродкі"
#: ../../share/compssUsers:999
msgid "Editors, shells, file tools, terminals"
-msgstr ", , "
+msgstr "Рэдактары, абалонкі, тэрміналы"
#: ../../share/compssUsers:999
#, fuzzy
msgid "KDE Workstation"
-msgstr " "
+msgstr "Навуковыя прыкладанні"
#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
"of accompanying tools"
msgstr ""
-"The K Desktop Environment - "
-" "
+"The K Desktop Environment - асноўнае графічнае асяродзе з калекцыяй "
+"інструментальных сродкаў"
#: ../../share/compssUsers:999
msgid "Graphical Environment"
@@ -17167,19 +17109,19 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Gnome Workstation"
-msgstr " "
+msgstr "Навуковыя прыкладанні"
#: ../../share/compssUsers:999
msgid ""
"A graphical environment with user-friendly set of applications and desktop "
"tools"
msgstr ""
-" "
-" "
+"Графічнае асяродзе са зручным дзеля выкарыстання наборам прыкладанняў і "
+"інструментальных сродкаў"
#: ../../share/compssUsers:999
msgid "Other Graphical Desktops"
-msgstr " "
+msgstr "Іншыя графічныя Працоўныя сталы"
#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
@@ -17188,20 +17130,20 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Development"
-msgstr ""
+msgstr "распрацоўшчык"
#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
-msgstr " ++"
+msgstr "Бібліятэкі і праграмы для распрацоўкі на С і С++"
#: ../../share/compssUsers:999
#, fuzzy
msgid "Documentation"
-msgstr "i"
+msgstr "Аўтэнтыфiкацыя"
#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
-msgstr " Howto Linux Free Software"
+msgstr "нігі і Howto па Linux і Free Software"
#: ../../share/compssUsers:999
msgid "LSB"
@@ -17226,7 +17168,7 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Postfix mail server"
-msgstr " "
+msgstr "Сервер друку"
#: ../../share/compssUsers:999
msgid "Database"
@@ -17243,7 +17185,7 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Internet gateway"
-msgstr " I"
+msgstr "Настройка злучэння з Iнтэрнэтам"
#: ../../share/compssUsers:999
msgid "DNS/NIS "
@@ -17256,7 +17198,7 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Network Computer server"
-msgstr " (socket)"
+msgstr "Сеткавы прынтэр (socket)"
#: ../../share/compssUsers:999
msgid "NFS server, SMB server, Proxy server, ssh server"
@@ -17265,47 +17207,51 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
msgid "Office"
-msgstr ""
+msgstr "добра"
#: ../../share/compssUsers:999
msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr " , , web', , chat"
+msgstr "Набор інструментаў для пошты, навінаў, web'у, перадачы файлаў, і chat"
+
+#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Забавы"
#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
-msgstr " - "
+msgstr "Мультымедыя - Графіка"
#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
-msgstr " The Gimp"
+msgstr "Графічныя праграмы тыпу The Gimp"
#: ../../share/compssUsers:999
msgid "Multimedia - Sound"
-msgstr " - "
+msgstr "Мультымедыя - гук"
#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr ": mp3 midi, .."
+msgstr "Аўдыёсродкі: прайгравальнікі mp3 і midi, мікшары і г.д."
#: ../../share/compssUsers:999
msgid "Multimedia - Video"
-msgstr " - "
+msgstr "Мультымедыя - відэа"
#: ../../share/compssUsers:999
msgid "Video players and editors"
-msgstr " "
+msgstr "Рэдактары і прайгравальнікі відэа"
#: ../../share/compssUsers:999
msgid "Multimedia - CD Burning"
-msgstr " - CD"
+msgstr "Мультымедыя - Стварэнне CD"
#: ../../share/compssUsers:999
msgid "Tools to create and burn CD's"
-msgstr " CD"
+msgstr "Інструментальныя сродкі стварэньня CD"
#: ../../share/compssUsers:999
msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr " (Gnome, IceWM)"
+msgstr "Шмат графічных мэнаджэраў Працоўных сталоў(Gnome, IceWM)"
#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
@@ -17313,19 +17259,48 @@ msgstr ""
#: ../../share/compssUsers:999
msgid "Personal Information Management"
-msgstr " "
+msgstr "Мэнаджар асабістай інфармацыі"
#: ../../share/compssUsers:999
msgid "Tools for your Palm Pilot or your Visor"
-msgstr " Palm Pilot Visor"
+msgstr "Інструментальныя сродкі для Palm Pilot і Visor"
#: ../../share/compssUsers:999
msgid "Personal Finance"
-msgstr " "
+msgstr "Персанальныя фінансы"
#: ../../share/compssUsers:999
msgid "Programs to manage your finances, such as gnucash"
-msgstr " , gnucash"
+msgstr "Праграмы кіравання вашымі фінансамі, тыпу gnucash"
+
+#~ msgid "no network card found"
+#~ msgstr "сеткавая карта не знойдзена"
+
+#, fuzzy
+#~ msgid "Get involved in the Free Software world"
+#~ msgstr "Падключэнне"
+
+#, fuzzy
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Далучэнне да Iнтэрнэту"
+
+#, fuzzy
+#~ msgid "User interfaces"
+#~ msgstr "Сеткавы iнтэрфейс"
+
+#, fuzzy
+#~ msgid "Development simplified"
+#~ msgstr "распрацоўшчык"
+
+#, fuzzy
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "Тут змяшчаюцца чэргi друку.\n"
+#~ "Вы можаце дадаць яшчэ, альбо змянiць iснуючыя."
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
@@ -17333,42 +17308,42 @@ msgstr " , gnucash"
#~ "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 ."
+#~ "Увядзiце iмя сваёй машыны (host).\n"
+#~ "Iмя вашай машыны павiнна быць зададзена поўнасцю,\n"
+#~ "напрыклад ``mybox.mylab.myco.com''.\n"
+#~ "Вы можаце таксама ўвесцi IP адрас шлюзу, калi ён у вас ёсць."
#, fuzzy
#~ msgid "Traditional Monitor"
-#~ msgstr "i i"
+#~ msgstr "Змянiць манiтор"
#, fuzzy
#~ msgid "NewStyle Monitor"
-#~ msgstr "i"
+#~ msgstr "Манiтор"
#, fuzzy
#~ msgid "Secure Connection"
-#~ msgstr " "
+#~ msgstr "Выбар тыпу злучэння прынтэру"
#, fuzzy
#~ msgid "FTP Connection"
-#~ msgstr ""
+#~ msgstr "Размеркаванне"
#, fuzzy
#~ msgid "/Options"
-#~ msgstr "i"
+#~ msgstr "Опцыi"
#, fuzzy
#~ msgid "/Autodetect jazz drives"
-#~ msgstr " "
+#~ msgstr "Аддалены прынтэр"
#, fuzzy
#~ msgid "/Autodetect modems"
-#~ msgstr " "
+#~ msgstr "Аддалены прынтэр"
#, fuzzy
#~ msgid "/Autodetect printers"
-#~ msgstr " "
+#~ msgstr "Аддалены прынтэр"
#~ msgid ""
#~ "The partition you've selected to add as root (/) is physically located "
@@ -17377,11 +17352,11 @@ msgstr " , gnucash"
#~ "If you plan to use the LILO boot manager, be careful to add a /boot "
#~ "partition"
#~ msgstr ""
-#~ " i (/) ii i "
-#~ "\n"
-#~ "1024- i , /boot .\n"
-#~ "i i LILO, \n"
-#~ " /boot"
+#~ "Абраны для дадатку ў якасцi каранёвага (/) раздзел фiзiчна знаходзiца "
+#~ "далей\n"
+#~ "1024-га цылiндру жорсткага дыску, а ў вас няма раздзелу /boot .\n"
+#~ "Калi будзе выкарыстоўвацца дыспечар загрузкi LILO, не запамятайце дадаць\n"
+#~ "раздзел /boot"
#~ msgid ""
#~ "Sorry I won't accept to create /boot so far onto the drive (on a cylinder "
@@ -17389,28 +17364,28 @@ msgstr " , gnucash"
#~ "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"
-#~ " LILO - , LILO "
-#~ " , /boot ."
+#~ "Прабачце, але нельга стварыць /boot на гэтым дыску (на цылiндры > 1024).\n"
+#~ "Калі вы думаеце выкарыстоўваць LILO - тады гэта не будзе працаваць, LILO "
+#~ "не выкарыстоўваеца, тады /boot не патрэбны."
#, fuzzy
#~ msgid "Do you want to configure another printer?"
-#~ msgstr "i i i?"
+#~ msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#, fuzzy
#~ msgid "Know how to use this printer"
-#~ msgstr "i i i?"
+#~ msgstr "Цi жадаеце пратэсцiраваць настройкi?"
#, fuzzy
#~ msgid "Preparing Printerdrake..."
-#~ msgstr " CUPS"
+#~ msgstr "Чытаю базу дадзеных драйвероў CUPS"
#, fuzzy
#~ msgid "Reading printer data ..."
-#~ msgstr " CUPS"
+#~ msgstr "Чытаю базу дадзеных драйвероў CUPS"
#~ msgid "Please be patient. This operation can take several minutes."
-#~ msgstr " , . ."
+#~ msgstr "Калі ласка, пачакайце. Гэтая аперацыя адыме пэўны час."
#~ msgid "Test ports"
-#~ msgstr " "
+#~ msgstr "Праверка партоў"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 2ef9b10e4..cfe99368f 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-bg\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2003-02-19 20:42+0200\n"
"Last-Translator: Borislav Aleksandrov <B.Aleksandrov@cnsys.bg>\n"
"Language-Team: Bulgarian <bg@li.org>\n"
@@ -1132,50 +1132,65 @@ msgstr ""
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
#: ../../help.pm:1
@@ -1279,13 +1294,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1309,7 +1319,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1328,7 +1338,7 @@ msgid ""
msgstr ""
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
"automated. DrakX will analyze the disk boot sector and act according to\n"
@@ -1347,58 +1357,8 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Mandrake Linux CDROM- . \n"
-", CDROM-, >>F1<< \n"
-">>rescue<<. , CDROM, "
-"\n"
-" :\n"
-"\n"
-" * boot loader, DrakX (MBR) "
-" ( ), \n"
-" Windows GNU/Linux ( Windows ). \n"
-" Windows, Microsoft\n"
-" GNU/Linux!\n"
-"\n"
-" * GNU/Linux "
-",\n"
-" GNU/Linux. "
-"\n"
-" , \n"
-" , , \n"
-".\n"
-"\n"
-" , \n"
-". , , "
-"\n"
-", . , DrakX\n"
-" ."
+"(\"On Floppy\")."
+msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
@@ -1564,9 +1524,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1655,7 +1620,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -1877,9 +1844,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -1901,14 +1866,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
#: ../../help.pm:1
@@ -1978,7 +1943,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2069,7 +2034,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2094,13 +2059,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
" "
"\n"
@@ -2179,60 +2144,6 @@ msgstr ""
" ."
#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Mandrake Linux CDROM- . \n"
-", CDROM-, >>F1<< \n"
-">>rescue<<. , CDROM, "
-"\n"
-" :\n"
-"\n"
-" * boot loader, DrakX (MBR) "
-" ( ), \n"
-" Windows GNU/Linux ( Windows ). \n"
-" Windows, Microsoft\n"
-" GNU/Linux!\n"
-"\n"
-" * GNU/Linux "
-",\n"
-" GNU/Linux. "
-"\n"
-" , \n"
-" , , \n"
-".\n"
-"\n"
-" , \n"
-". , , "
-"\n"
-", . , DrakX\n"
-" ."
-
-#: ../../help.pm:1
#, c-format
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
@@ -2366,7 +2277,8 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2404,7 +2316,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -4007,6 +3919,12 @@ msgstr ""
msgid "System"
msgstr ""
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr ""
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
@@ -4438,6 +4356,11 @@ msgid "Please choose your type of mouse."
msgstr ", ."
#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr " "
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr " %s"
@@ -9196,11 +9119,6 @@ msgstr " "
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr " "
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ", "
@@ -10486,19 +10404,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-" .\n"
-" , "
-" , CUPS Star "
-"Office/OpenOffice.org/GIMP."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr " : "
@@ -11079,6 +10984,11 @@ msgid "Option %s must be an integer number!"
msgstr " %s !"
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr " "
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -12828,13 +12738,13 @@ msgstr " Cracker-"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr " "
#: ../../share/advertising/01-thanks.pl:1
@@ -12845,208 +12755,161 @@ msgstr " , Mandrake Linux 9.1"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr " ?"
-
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Get involved in the Free Software world"
-msgstr " "
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
+" ? "
+" "
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
-msgstr " "
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
"Mandrake Linux 9.1 - "
", , "
", ."
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr " !"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
-" !"
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"Mandrake Linux 9.1 - "
-", .."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr ""
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-"Mandrake Linux 9.1 "
-" "
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr " Mandrake"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr " Mandrake "
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
"Mandrake Linux 9.1 11 "
" : KDE 3, Gnome 2, WindowMaker, ..."
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr " "
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-" GNU gcc 3 - "
-" "
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "Mandrake Linux 9.1 "
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr " "
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
" Linux : "
"Web , , firewall, router, , ..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr " "
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr " web MandrakeStore"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-" firewall "
-" ."
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr ""
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr " "
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
" , "
"\"\" 'e-':"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr " MandrakeSoft "
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr " "
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr " Linux"
+msgid "Optimize your security by using Mandrake Linux"
+msgstr " "
+
+#: ../../share/advertising/11-mnf.pl:1
+#, c-format
+msgid "This product is available on the MandrakeStore Web site."
+msgstr " web MandrakeStore"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr " MandrakeSoft Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
+msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -13054,51 +12917,35 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr " MandrakeSoft"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr " MandrakeExpert"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert "
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr " MandrakeClub Mandrake Corporate Club"
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -15349,6 +15196,11 @@ msgstr " "
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr " Mandrake"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -16236,6 +16088,22 @@ msgid "Interface %s (using module %s)"
msgstr " %s ( %s)"
#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Xinetd "
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -16589,7 +16457,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -16757,6 +16625,11 @@ msgstr " "
#: ../../standalone/draksplash:1
#, fuzzy, c-format
+msgid "choose image"
+msgstr " "
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
msgid "Configure bootsplash picture"
msgstr " "
@@ -17206,11 +17079,21 @@ msgid "network printer port"
msgstr " "
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the name of the CPU"
+msgstr " "
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Name"
msgstr ""
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr " "
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Number of buttons"
msgstr " "
@@ -17373,7 +17256,7 @@ msgstr " "
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr " Mhz"
@@ -18360,6 +18243,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr " , , web, , "
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr " - "
@@ -18415,6 +18302,242 @@ msgstr " "
msgid "Programs to manage your finances, such as gnucash"
msgstr " , gnucash"
+#~ msgid "no network card found"
+#~ msgstr " "
+
+#~ msgid "Get the most from the Internet"
+#~ msgstr " "
+
+#~ msgid "Push multimedia to its limits!"
+#~ msgstr " !"
+
+#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
+#~ msgstr ""
+#~ " !"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 - "
+#~ ", .."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 "
+#~ " "
+
+#~ msgid "User interfaces"
+#~ msgstr " "
+
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+#~ " GNU gcc 3 - "
+#~ " "
+
+#~ msgid "Development simplified"
+#~ msgstr " "
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ " firewall "
+#~ " ."
+
+#~ msgid "Strategic partners"
+#~ msgstr " "
+
+#~ msgid "Certify yourself on Linux"
+#~ msgstr " Linux"
+
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr " MandrakeSoft Linux-Campus"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr " MandrakeClub Mandrake Corporate Club"
+
+#, fuzzy
+#~ msgid ""
+#~ "LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
+#~ "what it finds there:\n"
+#~ "\n"
+#~ " * if a Windows boot sector is found, it will replace it with a grub/"
+#~ "LILO\n"
+#~ "boot sector. This way you will be able to load either GNU/Linux or "
+#~ "another\n"
+#~ "OS.\n"
+#~ "\n"
+#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
+#~ "one.\n"
+#~ "\n"
+#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
+#~ "bootloader.\n"
+#~ "\n"
+#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
+#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
+#~ "disk\n"
+#~ "(\"On Floppy\").\n"
+#~ "\n"
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Mandrake Linux CDROM- . \n"
+#~ ", CDROM-, >>F1<< "
+#~ "\n"
+#~ ">>rescue<<. , CDROM, "
+#~ "\n"
+#~ " :\n"
+#~ "\n"
+#~ " * boot loader, DrakX "
+#~ "(MBR) ( ), "
+#~ " \n"
+#~ " Windows GNU/Linux ( Windows ). "
+#~ "\n"
+#~ " Windows, "
+#~ "Microsoft\n"
+#~ " GNU/"
+#~ "Linux!\n"
+#~ "\n"
+#~ " * GNU/Linux "
+#~ ",\n"
+#~ " GNU/Linux. "
+#~ "\n"
+#~ " , "
+#~ "\n"
+#~ " , , "
+#~ "\n"
+#~ ".\n"
+#~ "\n"
+#~ " , \n"
+#~ ". , , "
+#~ "\n"
+#~ ", . , "
+#~ "DrakX\n"
+#~ " ."
+
+#, fuzzy
+#~ msgid ""
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Mandrake Linux CDROM- . \n"
+#~ ", CDROM-, >>F1<< "
+#~ "\n"
+#~ ">>rescue<<. , CDROM, "
+#~ "\n"
+#~ " :\n"
+#~ "\n"
+#~ " * boot loader, DrakX "
+#~ "(MBR) ( ), "
+#~ " \n"
+#~ " Windows GNU/Linux ( Windows ). "
+#~ "\n"
+#~ " Windows, "
+#~ "Microsoft\n"
+#~ " GNU/"
+#~ "Linux!\n"
+#~ "\n"
+#~ " * GNU/Linux "
+#~ ",\n"
+#~ " GNU/Linux. "
+#~ "\n"
+#~ " , "
+#~ "\n"
+#~ " , , "
+#~ "\n"
+#~ ".\n"
+#~ "\n"
+#~ " , \n"
+#~ ". , , "
+#~ "\n"
+#~ ", . , "
+#~ "DrakX\n"
+#~ " ."
+
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ " .\n"
+#~ " , "
+#~ " , CUPS "
+#~ " Star Office/OpenOffice.org/GIMP."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index cb43cf939..9b3f16f45 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 8.2\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
-"PO-Revision-Date: 2002-09-24 12:05+0200\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
+"PO-Revision-Date: 2003-03-05 14:01+0100\n"
"Last-Translator: Thierry Vignaud <tvignaud@mandrakesoft.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
"MIME-Version: 1.0\n"
@@ -1061,50 +1061,65 @@ msgstr ""
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
#: ../../help.pm:1
@@ -1208,13 +1223,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1238,7 +1248,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1276,32 +1286,7 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+"(\"On Floppy\")."
msgstr ""
#: ../../help.pm:1
@@ -1457,9 +1442,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1516,7 +1506,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -1638,9 +1630,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -1651,14 +1641,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
#: ../../help.pm:1
@@ -1699,7 +1689,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -1757,7 +1747,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -1782,42 +1772,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
#: ../../help.pm:1
@@ -1949,7 +1910,8 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -1977,7 +1939,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -3199,6 +3161,12 @@ msgstr "trobarzhell"
msgid "System"
msgstr "Reizhiad/Diazez"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "Paour"
+
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
@@ -3616,6 +3584,11 @@ msgstr "Dibabit seurt ho logodenn, mar plij."
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "An tremegerioù ne glot ket"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "Bremanaat"
@@ -8279,11 +8252,6 @@ msgid "Configuring network"
msgstr "Kefluniañ ar rouedad"
#: ../../network/ethernet.pm:1
-#, c-format
-msgid "no network card found"
-msgstr "kartenn rouedad kavet ebet"
-
-#: ../../network/ethernet.pm:1
#, fuzzy, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
@@ -9497,17 +9465,6 @@ msgstr ""
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"Setu da heul ar steudadoù moullañ.\n"
-"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-
-#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing system: "
msgstr ""
@@ -10029,6 +9986,11 @@ msgid "Option %s must be an integer number!"
msgstr ""
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -11659,13 +11621,13 @@ msgstr "Bezit deuet mat, preizherien !"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
@@ -11676,190 +11638,150 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
+msgid ""
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
#: ../../share/advertising/02-community.pl:1
-#, fuzzy, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Amprouiñ ar c'hefluniadur"
-
-#: ../../share/advertising/03-internet.pl:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+msgid "Build the future of Linux!"
msgstr ""
-#: ../../share/advertising/03-internet.pl:1
-#, fuzzy, c-format
-msgid "Get the most from the Internet"
-msgstr "Anv ar gevreadenn"
-
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../share/advertising/05-games.pl:1
-#, c-format
-msgid "Games"
-msgstr "C'hoarioù"
-
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Control Center"
-msgstr "Anv ar gevreadenn"
-
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, fuzzy, c-format
-msgid "User interfaces"
-msgstr "Etrefas arveriad/X"
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Kefluniañ ar proksioù"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "A customizable environment"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
-#, fuzzy, c-format
-msgid "Development simplified"
-msgstr "Diorren"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "This product is available on MandrakeStore website"
+msgid ""
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
+msgid "Turn your computer into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies\", are available on our e-store:"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "Optimize your security"
+msgid "The official MandrakeSoft Store"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
-"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
-msgstr ""
-
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
-msgid "Strategic partners"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+msgid "Optimize your security by using Mandrake Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Certify yourself on Linux"
+msgid "This product is available on the MandrakeStore Web site."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -11867,51 +11789,35 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, fuzzy, c-format
msgid "Become a MandrakeExpert"
msgstr "MandrakeExpert"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, fuzzy, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -14109,6 +14015,11 @@ msgid "First Time Wizard"
msgstr ""
#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Mandrake Control Center"
+msgstr "Anv ar gevreadenn"
+
+#: ../../standalone/drakbug:1
#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -14372,7 +14283,7 @@ msgstr ""
#: ../../standalone/drakfloppy:1
#, c-format
msgid "Unable to fork: %s"
-msgstr ""
+msgstr "N'ev ket fork: %s"
#: ../../standalone/drakfloppy:1
#, c-format
@@ -14970,6 +14881,22 @@ msgid "Interface %s (using module %s)"
msgstr ""
#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Servijer moullañ"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -15305,7 +15232,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -15467,6 +15394,11 @@ msgstr "Dibabit ur restr"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
+msgid "choose image"
+msgstr "Dibabit ur restr"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
msgid "Configure bootsplash picture"
msgstr "Kefluniañ servijoù"
@@ -15792,12 +15724,12 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid "About Harddrake"
-msgstr ""
+msgstr "A-brepoz Harddrake"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "/_About..."
-msgstr "Marc'hañ"
+msgstr "/_A-brepoz"
#: ../../standalone/harddrake2:1
#, c-format
@@ -15904,12 +15836,22 @@ msgid "network printer port"
msgstr "Dibarzhoù ar voullerez NetWare"
#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the name of the CPU"
+msgstr ""
+
+#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Name"
msgstr "Anv: "
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "2 nozelenn"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
msgid "Number of buttons"
msgstr "2 nozelenn"
@@ -16071,7 +16013,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -17055,6 +16997,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr ""
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "C'hoarioù"
+
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Multimedia - Graphics"
msgstr "Liesvedia"
@@ -17114,6 +17060,35 @@ msgstr ""
msgid "Programs to manage your finances, such as gnucash"
msgstr ""
+#~ msgid "no network card found"
+#~ msgstr "kartenn rouedad kavet ebet"
+
+#, fuzzy
+#~ msgid "Get involved in the Free Software world"
+#~ msgstr "Amprouiñ ar c'hefluniadur"
+
+#, fuzzy
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Anv ar gevreadenn"
+
+#, fuzzy
+#~ msgid "User interfaces"
+#~ msgstr "Etrefas arveriad/X"
+
+#, fuzzy
+#~ msgid "Development simplified"
+#~ msgstr "Diorren"
+
+#, fuzzy
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "Setu da heul ar steudadoù moullañ.\n"
+#~ "Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
+
#, fuzzy
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index 3e09ae670..246c357c3 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2001-08-21 17:14GMT\n"
"Last-Translator: Amila Akagić <bono@lugbih.org>\n"
"Language-Team: Bosnian <lokal-subscribe@lugbih.org>\n"
@@ -1067,83 +1067,70 @@ msgstr ""
"izgubljeni i neće se moći vratiti!"
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
-msgstr ""
-"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may - or not, see the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
-"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in.\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
-"configuration wizard.\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
"\n"
-" * \"Sound card\": if a sound card is detected on your system, it is\n"
-"displayed here. No modification possible at installation time.\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
"\n"
-" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. No modification possible at installation time.\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
"\n"
-" * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated to it."
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
+msgstr ""
#: ../../help.pm:1
#, c-format
@@ -1324,13 +1311,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1382,7 +1364,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1428,7 +1410,7 @@ msgstr ""
"networks."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
"automated. DrakX will analyze the disk boot sector and act according to\n"
@@ -1447,56 +1429,8 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the boot loader, DrakX will rewrite the boot sector "
-"(MBR)\n"
-"of your main disk (unless you are using another boot manager) so that you\n"
-"can start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
-"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
+"(\"On Floppy\")."
+msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
@@ -1740,9 +1674,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1821,7 +1760,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -2046,9 +1987,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -2067,14 +2006,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Some bug-fixes may\n"
@@ -2152,7 +2091,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2239,7 +2178,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2264,13 +2203,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"Na ovom mjestu trebate izabrati gdje želite instalirati Linux Mandrake\n"
"operativni sistem na vašem hard disku. Ako je disk prazan ili ako postojeći\n"
@@ -2349,58 +2288,6 @@ msgstr ""
"šta radite."
#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
-"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
-"should come back to this step for help in at least two situations:\n"
-"\n"
-" * when installing the boot loader, DrakX will rewrite the boot sector "
-"(MBR)\n"
-"of your main disk (unless you are using another boot manager) so that you\n"
-"can start up with either Windows or GNU/Linux (assuming you have Windows in\n"
-"your system). If you need to reinstall Windows, the Microsoft install\n"
-"process will rewrite the boot sector, and then you will not be able to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
-"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
-"contains a fair number of system tools for restoring a system, which has\n"
-"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
-"password, or any other reason.\n"
-"\n"
-"When you click on this step, you will be asked to enter a disk inside the\n"
-"drive. The floppy disk you will insert must be empty or contain data which\n"
-"you do not need. You will not have to format it since DrakX will rewrite\n"
-"the whole disk."
-
-#: ../../help.pm:1
#, c-format
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
@@ -2546,7 +2433,8 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2583,7 +2471,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -4167,6 +4055,12 @@ msgstr "Servisi"
msgid "System"
msgstr "Sistem"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "Port"
+
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
@@ -4605,6 +4499,11 @@ msgstr "Molimo izaberite vrstu vašeg miša."
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Šifra"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "Unaprijedi"
@@ -9340,11 +9239,6 @@ msgstr "Podešavam mrežu"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "nije pronađena mrežna kartica"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
@@ -10632,19 +10526,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"Sljedeći štampači su podešeni. Dvokliknite na štampač da promjenite njegove "
-"postavke; da ga učinite podrazumjevanim štampačem; da vidite informacije o "
-"njemu; ili da učinite štampač na udaljenom CUPS serveru upotrebljivim iz "
-"Star Office/OpenOffice.org/GIMP-a."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "Sistem štampe: "
@@ -11264,6 +11145,11 @@ msgid "Option %s must be an integer number!"
msgstr "Opcija %s mora biti cijeli broj!"
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Izbor modela štampača"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -12995,8 +12881,8 @@ msgstr "Dobrodošli u Crackers"
#, fuzzy, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
"Uspjeh MandrakeSofta je baziran na principima Slobodnog softvera. Vaš novi "
"operativni sistem je rezultat zajedničkog rada dijela Linux zajednice širom "
@@ -13004,7 +12890,7 @@ msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, fuzzy, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "Dobro došli u svijet otvorenog izvornog koda"
#: ../../share/advertising/01-thanks.pl:1
@@ -13015,8 +12901,8 @@ msgstr "Hvala vam što ste odabrali Mandrake Linux 9.1"
#: ../../share/advertising/02-community.pl:1
#, fuzzy, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
"Upoznajte Open Source zajednicu i postanite njen član. Učite, podučavajte i "
"pomozite drugima tako što ćete pristupiti mnogim forumima za diskusiju koje "
@@ -13024,202 +12910,152 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
+msgid ""
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
#: ../../share/advertising/02-community.pl:1
-#, fuzzy, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Pridružite se svijetu Slobodnog softvera"
-
-#: ../../share/advertising/03-internet.pl:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+msgid "Build the future of Linux!"
msgstr ""
-"Mandrake Linux 9.1 pruža najbolji softver za pristup svemu što Internet "
-"pruža: Pretražujte web i pregledajte animacije pomoću Mozilla-e i "
-"Konquerora, razmjenjujte email i organizirajte vaše lične podatke pomoću "
-"Evolution i KMail-a, i mnogo drugog"
-
-#: ../../share/advertising/03-internet.pl:1
-#, fuzzy, c-format
-msgid "Get the most from the Internet"
-msgstr "Spoji se na Internet"
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
"Mandrake Linux 9.1 vam omogućuje da potjerate vaš multimedijalni računar do "
"krajnjih granica! Koristite najnoviji softver za slušanje muzike i audio "
"datoteka, mijenjajte i organizujte vaše slike i fotografije, gledajte TV i "
"video-snimke i mnogo drugog"
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Push multimedia to its limits!"
+msgid ""
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-"Mandrake Linux 9.1 pruža najbolje Open Source igre - arkadne, akcione, "
-"karte, sportovi, strategije, ..."
-#: ../../share/advertising/05-games.pl:1
-#, c-format
-msgid "Games"
-msgstr "Igre"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Premještanje konfiguracije štamapča"
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
-"Mandrake Linux 9.1 Kontrolni centar je jedinstvena lokacija za puno "
-"prilagođavanje i podešavanje vašeg Mandrake sistema"
-
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Mandrake Kontrolni centar"
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+msgid "A customizable environment"
msgstr ""
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "Korisnički okoliš"
-
-#: ../../share/advertising/08-development.pl:1
-#, fuzzy, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-"Mandrake Linux 8.2 je najbolja platforma za razvoj aplikacija. Otkrijte moć "
-"GNU gcc kompajlera kao i najboljih razvojnih okolina koje su Open Source"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
-#, fuzzy, c-format
-msgid "Development simplified"
-msgstr "Programiranje"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, fuzzy, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"Pretvorite vaš računar u moćan server sa svega nekoliko klikova mišem: Web "
"server, email, firewall, file i print server, ..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr ""
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr ""
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr ""
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, fuzzy, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"Čitav raspon Linux rješenja, kao i posebne ponude za proizvode i "
"'potrepštine', dostupni su u našoj online radnji"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Certify yourself on Linux"
+msgid "Optimize your security by using Mandrake Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
+#, c-format
+msgid "This product is available on the MandrakeStore Web site."
+msgstr ""
+
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -13227,51 +13063,35 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, fuzzy, c-format
msgid "Become a MandrakeExpert"
msgstr "MandrakeExpert"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, fuzzy, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -15696,6 +15516,11 @@ msgstr "Dobro došli u Čarobnjak za prvo pokretanje"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr "Mandrake Kontrolni centar"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -16624,6 +16449,22 @@ msgstr "Interfejs %s (koristeći modul %s)"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Printer Server"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -16975,7 +16816,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -17143,6 +16984,11 @@ msgstr "Izaberi datoteku"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
+msgid "choose image"
+msgstr "Izaberi datoteku"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
msgid "Configure bootsplash picture"
msgstr "Podešavanje servisa"
@@ -17582,12 +17428,22 @@ msgid "network printer port"
msgstr ", TCP/IP host \"%s\", port %s"
#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the name of the CPU"
+msgstr ""
+
+#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Name"
msgstr "Ime: "
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "2 dugmeta"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
msgid "Number of buttons"
msgstr "2 dugmeta"
@@ -17749,7 +17605,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -18735,6 +18591,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr "Skup alata za mail, news, web, prenos datoteka i chat"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Igre"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimedija - Grafika"
@@ -18790,6 +18650,323 @@ msgstr "Lične finansije"
msgid "Programs to manage your finances, such as gnucash"
msgstr "Programi za upravljanje vašim finansijama, kao što je gnucash"
+#~ msgid "no network card found"
+#~ msgstr "nije pronađena mrežna kartica"
+
+#, fuzzy
+#~ msgid "Get involved in the Free Software world"
+#~ msgstr "Pridružite se svijetu Slobodnog softvera"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "and view animations with Mozilla and Konqueror, or read your mail and "
+#~ "handle your personal information with Evolution and Kmail"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 pruža najbolji softver za pristup svemu što Internet "
+#~ "pruža: Pretražujte web i pregledajte animacije pomoću Mozilla-e i "
+#~ "Konquerora, razmjenjujte email i organizirajte vaše lične podatke pomoću "
+#~ "Evolution i KMail-a, i mnogo drugog"
+
+#, fuzzy
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Spoji se na Internet"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 pruža najbolje Open Source igre - arkadne, akcione, "
+#~ "karte, sportovi, strategije, ..."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 Kontrolni centar je jedinstvena lokacija za puno "
+#~ "prilagođavanje i podešavanje vašeg Mandrake sistema"
+
+#~ msgid "User interfaces"
+#~ msgstr "Korisnički okoliš"
+
+#, fuzzy
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+#~ "Mandrake Linux 8.2 je najbolja platforma za razvoj aplikacija. Otkrijte "
+#~ "moć GNU gcc kompajlera kao i najboljih razvojnih okolina koje su Open "
+#~ "Source"
+
+#, fuzzy
+#~ msgid "Development simplified"
+#~ msgstr "Programiranje"
+
+#, fuzzy
+#~ msgid ""
+#~ "As a review, DrakX will present a summary of various information it has\n"
+#~ "about your system. Depending on your installed hardware, you may have "
+#~ "some\n"
+#~ "or all of the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary.\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Country\": check the current country selection. If you are not in "
+#~ "this\n"
+#~ "country, click on the button and choose another one.\n"
+#~ "\n"
+#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+#~ "primary language you have chosen. But here, just as in your choice of a\n"
+#~ "keyboard, you may not be in a country to which the chosen language\n"
+#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
+#~ "configure the clock for the correct timezone.\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation.\n"
+#~ "\n"
+#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+#~ "click that button. This should be reserved to advanced users.\n"
+#~ "\n"
+#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+#~ "interface in \"800x600\" resolution. If that does not suits you, click "
+#~ "on\n"
+#~ "the button to reconfigure your graphical interface.\n"
+#~ "\n"
+#~ " * \"Network\": If you want to configure your Internet or local network\n"
+#~ "access now, you can by clicking on this button.\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. If you notice the sound card displayed is not the one "
+#~ "that\n"
+#~ "is actually present on your system, you can click on the button and "
+#~ "choose\n"
+#~ "another driver.\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. If you have a TV card and it is not detected, click on the button "
+#~ "to\n"
+#~ "try to configure it manually.\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with the card."
+#~ msgstr ""
+#~ "Here are presented various parameters concerning your machine. Depending "
+#~ "on\n"
+#~ "your installed hardware, you may - or not, see the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary.\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Timezone\": DrakX, by default, guesses your time zone from the "
+#~ "language\n"
+#~ "you have chosen. But here again, as for the choice of a keyboard, you "
+#~ "may\n"
+#~ "not be in the country for which the chosen language should correspond.\n"
+#~ "Hence, you may need to click on the \"Timezone\" button in order to\n"
+#~ "configure the clock according to the time zone you are in.\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard.\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. No modification possible at installation time.\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. No modification possible at installation time.\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it is\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated to it."
+
+#, fuzzy
+#~ msgid ""
+#~ "LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
+#~ "what it finds there:\n"
+#~ "\n"
+#~ " * if a Windows boot sector is found, it will replace it with a grub/"
+#~ "LILO\n"
+#~ "boot sector. This way you will be able to load either GNU/Linux or "
+#~ "another\n"
+#~ "OS.\n"
+#~ "\n"
+#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
+#~ "one.\n"
+#~ "\n"
+#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
+#~ "bootloader.\n"
+#~ "\n"
+#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
+#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
+#~ "disk\n"
+#~ "(\"On Floppy\").\n"
+#~ "\n"
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting from the CD-ROM, press the >>F1<< key at boot and type "
+#~ ">>rescue<<\n"
+#~ "at the prompt. But in case your computer cannot boot from the CD-ROM, "
+#~ "you\n"
+#~ "should come back to this step for help in at least two situations:\n"
+#~ "\n"
+#~ " * when installing the boot loader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager) so that "
+#~ "you\n"
+#~ "can start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "in\n"
+#~ "your system). If you need to reinstall Windows, the Microsoft install\n"
+#~ "process will rewrite the boot sector, and then you will not be able to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+#~ "disk, this floppy disk will be the only means of starting up GNU/Linux. "
+#~ "It\n"
+#~ "contains a fair number of system tools for restoring a system, which has\n"
+#~ "crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+#~ "password, or any other reason.\n"
+#~ "\n"
+#~ "When you click on this step, you will be asked to enter a disk inside "
+#~ "the\n"
+#~ "drive. The floppy disk you will insert must be empty or contain data "
+#~ "which\n"
+#~ "you do not need. You will not have to format it since DrakX will rewrite\n"
+#~ "the whole disk."
+
+#, fuzzy
+#~ msgid ""
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting from the CD-ROM, press the >>F1<< key at boot and type "
+#~ ">>rescue<<\n"
+#~ "at the prompt. But in case your computer cannot boot from the CD-ROM, "
+#~ "you\n"
+#~ "should come back to this step for help in at least two situations:\n"
+#~ "\n"
+#~ " * when installing the boot loader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager) so that "
+#~ "you\n"
+#~ "can start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "in\n"
+#~ "your system). If you need to reinstall Windows, the Microsoft install\n"
+#~ "process will rewrite the boot sector, and then you will not be able to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+#~ "disk, this floppy disk will be the only means of starting up GNU/Linux. "
+#~ "It\n"
+#~ "contains a fair number of system tools for restoring a system, which has\n"
+#~ "crashed due to a power failure, an unfortunate typing error, a typo in a\n"
+#~ "password, or any other reason.\n"
+#~ "\n"
+#~ "When you click on this step, you will be asked to enter a disk inside "
+#~ "the\n"
+#~ "drive. The floppy disk you will insert must be empty or contain data "
+#~ "which\n"
+#~ "you do not need. You will not have to format it since DrakX will rewrite\n"
+#~ "the whole disk."
+
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "Sljedeći štampači su podešeni. Dvokliknite na štampač da promjenite "
+#~ "njegove postavke; da ga učinite podrazumjevanim štampačem; da vidite "
+#~ "informacije o njemu; ili da učinite štampač na udaljenom CUPS serveru "
+#~ "upotrebljivim iz Star Office/OpenOffice.org/GIMP-a."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 40e23173d..17d3411da 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2002-10-10 3:34+0200\n"
"Last-Translator: Ral Cambeiro <rulet@menta.net>\n"
"Language-Team: Catalan <traddrake@softcatala.org>\n"
@@ -1122,91 +1122,70 @@ msgstr ""
"recuperar!"
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
-msgstr ""
-"Ara us presentem diversos parmetres de la vostra mquina. Depenent del\n"
-"maquinari installat, podreu veure o no les segents entrades:\n"
-"\n"
-" * \"Ratol\": comproveu la configuraci actual del ratol i feu clic al "
-"bot\n"
-"per canviar-la si fos necessari.\n"
-"\n"
-" * \"Teclat\": comproveu la configuraci actual del mapa de teclat i feu "
-"clic\n"
-"al bot per canviar-la si fos necessari.\n"
-"\n"
-" * \"Fus horari\": el DrakX, per defecte, endevina la vostra zona horria\n"
-"basant-se en l'idioma que heu triat. Per, de la mateixa manera que en el "
-"cas\n"
-"del teclat, pot ser que visqueu en un pas diferent al de l'idioma "
-"escollit.\n"
-"Per tant, podreu haver de fer clic sobre el bot \"Fus horari\" per tal de\n"
-"configurar el rellotge d'acord amb la zona horria en la qual esteu.\n"
-"\n"
-" * \"Impressora\": si feu clic al bot \"Cap Impressora\" s'obrir "
-"l'auxiliar\n"
-"de configuraci de la impressora.\n"
-"\n"
-" * \"Targeta de so\": si s'ha detectat una targeta de so en el sistema, "
-"apareixer\n"
-"aqu. No es pot fer cap modificaci durant la installaci.\n"
-"\n"
-" * \"Targeta TV\": si s'ha detectat una targeta de TV en el sistema, "
-"apareixer\n"
-"aqu. No es pot fer cap modificaci durant la installaci.\n"
-"\n"
-" * \"Targeta XDSI\": si s'ha detectat una targeta XDSI en el sistema, "
-"apareixer\n"
-"aqu. Podeu fer clic sobre el bot per canviar els parmetres associats amb "
-"la\n"
-"targeta."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
+msgstr ""
#: ../../help.pm:1
#, c-format
@@ -1396,13 +1375,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1456,7 +1430,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1503,7 +1477,7 @@ msgstr ""
"d'impressi."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
"automated. DrakX will analyze the disk boot sector and act according to\n"
@@ -1522,67 +1496,8 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"El CD-ROM del Mandrake Linux t un mode de rescat. Hi podeu accedir "
-"arrencant\n"
-"des del CD-ROM, prement la tecla F1 en arrencar i teclejant \"rescue\"\n"
-"a la lnia d'ordres. Per en cas que l'ordinador no pugui arrencar des del\n"
-"CD-ROM, haureu de tornar a aquest pas per obtenir ajuda en, com a mnim,\n"
-"dues situacions:\n"
-"\n"
-" * quan s'installa el carregador de l'arrencada, el DrakX reescriu el "
-"sector\n"
-"d'arrencada (MBR) del disc dur principal (si no s que utilitzeu un altre "
-"gestor\n"
-"de l'arrencada), amb l'objectiu de permetre-us arrencar el Windows o el GNU/"
-"Linux\n"
-"(assumint que teniu Windows en l'ordinador). Si heu de reinstallar "
-"Windows,\n"
-"el procs d'installaci de Microsoft reescriur el sector d'arrencada, i no "
-"sereu\n"
-"capa d'arrencar el GNU/Linux!\n"
-"\n"
-" * si apareix un problema i no podeu arrencar el GNU/Linux des del disc "
-"dur,\n"
-"aquest disquet ser l'nica manera d'arrencar el GNU/Linux. El disquet "
-"cont\n"
-"un conjunt d'eines per restaurar el sistema, que ha fallat degut a "
-"problemes\n"
-"d'alimentaci, un error desafortunat en teclejar alguna cosa, un error en "
-"teclejar\n"
-"una contrasenya o qualsevol altra ra.\n"
-"\n"
-"Si feu clic a \"S\", el sistema us demanar que introduu un disquet a la\n"
-"unitat de disquets. El disquet que introduu ha d'estar buit o contenir "
-"dades\n"
-"que no necessiteu. No cal que el formateu perqu el DrakX reescriur tot el "
-"disc."
+"(\"On Floppy\")."
+msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
@@ -1849,9 +1764,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1943,7 +1863,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -2187,9 +2109,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -2208,14 +2128,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
"Ara esteu installant el Mandrake Linux, per s probable que alguns "
"paquets\n"
@@ -2302,7 +2222,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2401,7 +2321,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2426,13 +2346,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"Ara s quan heu de decidir en quin lloc del vostre disc dur voleu "
"installar\n"
@@ -2529,69 +2449,6 @@ msgstr ""
"de la \"Guia d'Iniciaci\"."
#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"El CD-ROM del Mandrake Linux t un mode de rescat. Hi podeu accedir "
-"arrencant\n"
-"des del CD-ROM, prement la tecla F1 en arrencar i teclejant \"rescue\"\n"
-"a la lnia d'ordres. Per en cas que l'ordinador no pugui arrencar des del\n"
-"CD-ROM, haureu de tornar a aquest pas per obtenir ajuda en, com a mnim,\n"
-"dues situacions:\n"
-"\n"
-" * quan s'installa el carregador de l'arrencada, el DrakX reescriu el "
-"sector\n"
-"d'arrencada (MBR) del disc dur principal (si no s que utilitzeu un altre "
-"gestor\n"
-"de l'arrencada), amb l'objectiu de permetre-us arrencar el Windows o el GNU/"
-"Linux\n"
-"(assumint que teniu Windows en l'ordinador). Si heu de reinstallar "
-"Windows,\n"
-"el procs d'installaci de Microsoft reescriur el sector d'arrencada, i no "
-"sereu\n"
-"capa d'arrencar el GNU/Linux!\n"
-"\n"
-" * si apareix un problema i no podeu arrencar el GNU/Linux des del disc "
-"dur,\n"
-"aquest disquet ser l'nica manera d'arrencar el GNU/Linux. El disquet "
-"cont\n"
-"un conjunt d'eines per restaurar el sistema, que ha fallat degut a "
-"problemes\n"
-"d'alimentaci, un error desafortunat en teclejar alguna cosa, un error en "
-"teclejar\n"
-"una contrasenya o qualsevol altra ra.\n"
-"\n"
-"Si feu clic a \"S\", el sistema us demanar que introduu un disquet a la\n"
-"unitat de disquets. El disquet que introduu ha d'estar buit o contenir "
-"dades\n"
-"que no necessiteu. No cal que el formateu perqu el DrakX reescriur tot el "
-"disc."
-
-#: ../../help.pm:1
#, c-format
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
@@ -2743,7 +2600,8 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2780,7 +2638,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -4474,6 +4332,12 @@ msgstr "Serveis"
msgid "System"
msgstr "Sistema"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "Port"
+
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
@@ -4939,6 +4803,11 @@ msgstr "Port del ratol"
msgid "Please choose your type of mouse."
msgstr "Si us plau, seleccioneu el tipus del vostre ratol."
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Clau de xifratge"
+
#
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
@@ -9833,11 +9702,6 @@ msgstr "S'est configurant la xarxa"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "no s'ha trobat cap targeta de xarxa"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
@@ -11175,20 +11039,6 @@ msgstr ""
"impressora per modificar-ne els parmetres, per fer-la la impressora per "
"defecte o per veure la informaci de la impressora."
-#
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"Les impressores segents estan configurades. Feu doble clic en una "
-"impressora per modificar-ne els parmetres, per fer-la la impressora per "
-"defecte, per veure'n la informaci o per fer que una impressora en un "
-"servidor remot CUPS estigui disponible per a Star Office/OpenOffice.org/GIMP."
-
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing system: "
@@ -11858,6 +11708,12 @@ msgstr "L'opci %s ha de ser un nmero!"
msgid "Option %s must be an integer number!"
msgstr "L'opci %s ha de ser un nmero enter!"
+#
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Selecci del model d'impressora"
+
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
@@ -13783,8 +13639,8 @@ msgstr "Benvinguts, crackers"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
"L'xit de MandrakeSoft es basa en els principis del Codi Font Obert. El "
"vostre nou sistema operatiu s el resultat del treball en collaboraci de "
@@ -13792,7 +13648,7 @@ msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "Benvingut al mn del Codi Font Obert"
#: ../../share/advertising/01-thanks.pl:1
@@ -13803,8 +13659,8 @@ msgstr "Grcies per triar Mandrake Linux 9.1"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
"Per compartir el vostre coneixement i ajudar a construir eines per a Linux, "
"apunteu-vos als frums de discussi que trobareu a les nostres pgines de la "
@@ -13812,216 +13668,160 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr "Voleu saber ms coses de la comunitat del Codi Font Obert?"
-
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Uniu-vos al mn del Codi Font Obert"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
-"Mandrake Linux 9.1 us ha triat el millor programari. Navegueu per la Web i "
-"veieu animacions amb Mozilla i Konqueror, o envieu missatges i organitzeu-"
-"vos la informaci personal amb Evolution i Kmail"
+"Voleu saber ms coses de la comunitat del Codi Font Obert? Uniu-vos al mn "
+"del Codi Font Obert"
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
-msgstr "Extragueu-li el suc a Internet"
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
"Mandrake Linux 9.1 us permet utilitzar el programari ms actual per "
"reproduir fitxers d'udio, editar i organitzar les vostres imatges i fotos, "
"i reproduir vdeos"
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr "Porteu el multimdia fins al lmit!"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr "Descobriu les eines grfiques i multimdia ms modernes!"
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"Mandrake Linux 9.1 proporciona els millors jocs de codi obert: arcade, "
-"acci, estratgia..."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "Jocs"
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-"Mandrake Linux 9.1 proporciona una eina potent per personalitzar i "
-"configurar completament la vostra mquina"
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Centre de Control Mandrake"
+#
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Configuraci del Servidor de Terminal de Mandrake"
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
"Mandrake Linux 9.1 us proporciona onze interfcies d'usuari totalment "
"modificables: KDE 3, Gnome 2, WindowMaker..."
-#
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "Interfcies d'usuari"
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-"Useu tota la capacitat del compilador GNU gcc 3, aix com els millors "
-"entorns de desenvolupament de codi font obert"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "Mandrake Linux 9.1 s l'ltim en plataformes de desenvolupament"
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr "Desenvolupament simplificat"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"Transformeu el vostre ordinador en un potent servidor Linux amb noms uns "
"quants clics del ratol: servidor Web, correu electrnic, tallafoc, "
"encaminador, servidor de fitxers i d'impressi..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr "Convertiu la vostra mquina en un servidor fiable"
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr "Aquest producte es troba disponible al lloc web de MandrakeStore"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-"Aquest tallafoc inclou les caracterstiques de xarxa que us permetran "
-"satisfer tots els vostres requeriments de seguretat"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr ""
-"L'abast de MandrakeSecurity inclou l'aplicaci Multi Network Firewall (MNF), "
-"el tallafoc per a xarxes mltiples"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr "Optimitzeu la vostra seguretat"
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"Trobareu tot el conjunt de solucions Linux, aix com ofertes especials en "
"productes i altres avantatges, a la nostra botiga en lnia:"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr "La botiga oficial de MandrakeSoft"
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
+#: ../../share/advertising/09-mdksecure.pl:1
+#, fuzzy, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"MandrakeSoft treballa al costat d'un conjunt d'empreses que ofereixen "
"solucions professionals compatibles amb el Mandrake Linux. Trobareu una "
"llista d'aquests socis al MandrakeStore"
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr "Socis estratgics"
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-"Tant si trieu aprendre en lnia o mitjanant la xarxa d'aprenentatge dels "
-"nostres socis, el catleg Linux-Campus us prepara per al reconegut programa "
-"de certificaci LPI (certificaci tcnica i professional a tot el mn)"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
+#, c-format
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "Optimitzeu la vostra seguretat"
+
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr "Qualifiqueu-vos en Linux"
+msgid "This product is available on the MandrakeStore Web site."
+msgstr "Aquest producte es troba disponible al lloc web de MandrakeStore"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-"El programa d'aprenentatge s'ha creat per respondre a la demanda tant "
-"d'usuaris com d'experts (administradors de xarxa i de sistemes)"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr "Descobriu el catleg d'aprenentatge de MandrakeSoft: el Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
+msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -14032,22 +13832,22 @@ msgstr ""
"per compartir els vostres coneixements i ajudar els altres esdevenint un "
"expert reconegut al lloc web de suport tcnic en lnia:"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
"Cerqueu les solucions als vostres problemes a travs de la nostra plataforma "
"de suport en lnia"
#
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr "Esdeveniu un MandrakeExpert"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
@@ -14056,41 +13856,19 @@ msgstr ""
"Cada incident ser investigat per un expert tcnic qualificat de "
"MandrakeSoft."
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
"Una plataforma en lnia per respondre a les necessitats de suport especials "
"de les empreses"
#
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "Grup corporatiu MandrakeExpert"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-"El MandrakeClub i el Club Corporatiu Mandrake es van crear per a empreses i "
-"usuaris privats de Mandrake Linux que volen participar directament de la "
-"seva distribuci Linux preferida, i rebre alguns privilegis especials. Si "
-"gaudiu dels nostres productes, si la vostra empresa es beneficia dels "
-"nostres productes per guanyar competitivitat, si voleu recolzar el "
-"desenvolupament de Mandrake Linux, uniu-vos al MandrakeClub!"
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr "Descobriu el MandrakeClub i el Club Corporatiu de Mandrake"
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -16685,6 +16463,11 @@ msgstr "Auxiliar per a la primera vegada"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr "Centre de Control Mandrake"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr "Eina per a la comunicaci d'errors de programaci (bugs) de Mandrake"
@@ -17658,6 +17441,22 @@ msgid "Interface %s (using module %s)"
msgstr "Interfcie %s (utilitzant el mdul %s)"
#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Servei Xinetd"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -18025,7 +17824,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -18238,6 +18037,12 @@ msgstr "s'est desant el tema Bootsplash..."
msgid "choose image file"
msgstr "trieu un fitxer d'imatge"
+#
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "trieu un fitxer d'imatge"
+
#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
@@ -18722,10 +18527,20 @@ msgstr ", impressora de xarxa \"%s\", port %s"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
+msgid "the name of the CPU"
+msgstr "el nom del venedor del dispositiu"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
msgid "Name"
msgstr "Nom: "
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "el color de la barra de progrs"
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Number of buttons"
msgstr "Nombre de botons"
@@ -18888,7 +18703,7 @@ msgstr "aquest camp descriu el dispositiu"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -19920,6 +19735,10 @@ msgstr ""
"Conjunt d'eines per al correu, notcies, web, transferncia de fitxers i xat"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Jocs"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimdia - Grfics"
@@ -19975,6 +19794,398 @@ msgstr "Comptabilitat personal"
msgid "Programs to manage your finances, such as gnucash"
msgstr "Programes per gestionar els vostres comptes, com ara el gnucash"
+#~ msgid "no network card found"
+#~ msgstr "no s'ha trobat cap targeta de xarxa"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "and view animations with Mozilla and Konqueror, or read your mail and "
+#~ "handle your personal information with Evolution and Kmail"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 us ha triat el millor programari. Navegueu per la Web "
+#~ "i veieu animacions amb Mozilla i Konqueror, o envieu missatges i "
+#~ "organitzeu-vos la informaci personal amb Evolution i Kmail"
+
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Extragueu-li el suc a Internet"
+
+#~ msgid "Push multimedia to its limits!"
+#~ msgstr "Porteu el multimdia fins al lmit!"
+
+#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
+#~ msgstr "Descobriu les eines grfiques i multimdia ms modernes!"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 proporciona els millors jocs de codi obert: arcade, "
+#~ "acci, estratgia..."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 proporciona una eina potent per personalitzar i "
+#~ "configurar completament la vostra mquina"
+
+#
+#~ msgid "User interfaces"
+#~ msgstr "Interfcies d'usuari"
+
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+#~ "Useu tota la capacitat del compilador GNU gcc 3, aix com els millors "
+#~ "entorns de desenvolupament de codi font obert"
+
+#~ msgid "Development simplified"
+#~ msgstr "Desenvolupament simplificat"
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ "Aquest tallafoc inclou les caracterstiques de xarxa que us permetran "
+#~ "satisfer tots els vostres requeriments de seguretat"
+
+#~ msgid ""
+#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
+#~ "N.F.)"
+#~ msgstr ""
+#~ "L'abast de MandrakeSecurity inclou l'aplicaci Multi Network Firewall "
+#~ "(MNF), el tallafoc per a xarxes mltiples"
+
+#~ msgid "Strategic partners"
+#~ msgstr "Socis estratgics"
+
+#~ msgid ""
+#~ "Whether you choose to teach yourself online or via our network of "
+#~ "training partners, the Linux-Campus catalogue prepares you for the "
+#~ "acknowledged LPI certification program (worldwide professional technical "
+#~ "certification)"
+#~ msgstr ""
+#~ "Tant si trieu aprendre en lnia o mitjanant la xarxa d'aprenentatge dels "
+#~ "nostres socis, el catleg Linux-Campus us prepara per al reconegut "
+#~ "programa de certificaci LPI (certificaci tcnica i professional a tot "
+#~ "el mn)"
+
+#~ msgid "Certify yourself on Linux"
+#~ msgstr "Qualifiqueu-vos en Linux"
+
+#~ msgid ""
+#~ "The training program has been created to respond to the needs of both end "
+#~ "users and experts (Network and System administrators)"
+#~ msgstr ""
+#~ "El programa d'aprenentatge s'ha creat per respondre a la demanda tant "
+#~ "d'usuaris com d'experts (administradors de xarxa i de sistemes)"
+
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr ""
+#~ "Descobriu el catleg d'aprenentatge de MandrakeSoft: el Linux-Campus"
+
+#~ msgid ""
+#~ "MandrakeClub and Mandrake Corporate Club were created for business and "
+#~ "private users of Mandrake Linux who would like to directly support their "
+#~ "favorite Linux distribution while also receiving special privileges. If "
+#~ "you enjoy our products, if your company benefits from our products to "
+#~ "gain a competititve edge, if you want to support Mandrake Linux "
+#~ "development, join MandrakeClub!"
+#~ msgstr ""
+#~ "El MandrakeClub i el Club Corporatiu Mandrake es van crear per a empreses "
+#~ "i usuaris privats de Mandrake Linux que volen participar directament de "
+#~ "la seva distribuci Linux preferida, i rebre alguns privilegis especials. "
+#~ "Si gaudiu dels nostres productes, si la vostra empresa es beneficia dels "
+#~ "nostres productes per guanyar competitivitat, si voleu recolzar el "
+#~ "desenvolupament de Mandrake Linux, uniu-vos al MandrakeClub!"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr "Descobriu el MandrakeClub i el Club Corporatiu de Mandrake"
+
+#, fuzzy
+#~ msgid ""
+#~ "As a review, DrakX will present a summary of various information it has\n"
+#~ "about your system. Depending on your installed hardware, you may have "
+#~ "some\n"
+#~ "or all of the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary.\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Country\": check the current country selection. If you are not in "
+#~ "this\n"
+#~ "country, click on the button and choose another one.\n"
+#~ "\n"
+#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+#~ "primary language you have chosen. But here, just as in your choice of a\n"
+#~ "keyboard, you may not be in a country to which the chosen language\n"
+#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
+#~ "configure the clock for the correct timezone.\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation.\n"
+#~ "\n"
+#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+#~ "click that button. This should be reserved to advanced users.\n"
+#~ "\n"
+#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+#~ "interface in \"800x600\" resolution. If that does not suits you, click "
+#~ "on\n"
+#~ "the button to reconfigure your graphical interface.\n"
+#~ "\n"
+#~ " * \"Network\": If you want to configure your Internet or local network\n"
+#~ "access now, you can by clicking on this button.\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. If you notice the sound card displayed is not the one "
+#~ "that\n"
+#~ "is actually present on your system, you can click on the button and "
+#~ "choose\n"
+#~ "another driver.\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. If you have a TV card and it is not detected, click on the button "
+#~ "to\n"
+#~ "try to configure it manually.\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with the card."
+#~ msgstr ""
+#~ "Ara us presentem diversos parmetres de la vostra mquina. Depenent del\n"
+#~ "maquinari installat, podreu veure o no les segents entrades:\n"
+#~ "\n"
+#~ " * \"Ratol\": comproveu la configuraci actual del ratol i feu clic al "
+#~ "bot\n"
+#~ "per canviar-la si fos necessari.\n"
+#~ "\n"
+#~ " * \"Teclat\": comproveu la configuraci actual del mapa de teclat i feu "
+#~ "clic\n"
+#~ "al bot per canviar-la si fos necessari.\n"
+#~ "\n"
+#~ " * \"Fus horari\": el DrakX, per defecte, endevina la vostra zona "
+#~ "horria\n"
+#~ "basant-se en l'idioma que heu triat. Per, de la mateixa manera que en el "
+#~ "cas\n"
+#~ "del teclat, pot ser que visqueu en un pas diferent al de l'idioma "
+#~ "escollit.\n"
+#~ "Per tant, podreu haver de fer clic sobre el bot \"Fus horari\" per tal "
+#~ "de\n"
+#~ "configurar el rellotge d'acord amb la zona horria en la qual esteu.\n"
+#~ "\n"
+#~ " * \"Impressora\": si feu clic al bot \"Cap Impressora\" s'obrir "
+#~ "l'auxiliar\n"
+#~ "de configuraci de la impressora.\n"
+#~ "\n"
+#~ " * \"Targeta de so\": si s'ha detectat una targeta de so en el sistema, "
+#~ "apareixer\n"
+#~ "aqu. No es pot fer cap modificaci durant la installaci.\n"
+#~ "\n"
+#~ " * \"Targeta TV\": si s'ha detectat una targeta de TV en el sistema, "
+#~ "apareixer\n"
+#~ "aqu. No es pot fer cap modificaci durant la installaci.\n"
+#~ "\n"
+#~ " * \"Targeta XDSI\": si s'ha detectat una targeta XDSI en el sistema, "
+#~ "apareixer\n"
+#~ "aqu. Podeu fer clic sobre el bot per canviar els parmetres associats "
+#~ "amb la\n"
+#~ "targeta."
+
+#, fuzzy
+#~ msgid ""
+#~ "LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
+#~ "what it finds there:\n"
+#~ "\n"
+#~ " * if a Windows boot sector is found, it will replace it with a grub/"
+#~ "LILO\n"
+#~ "boot sector. This way you will be able to load either GNU/Linux or "
+#~ "another\n"
+#~ "OS.\n"
+#~ "\n"
+#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
+#~ "one.\n"
+#~ "\n"
+#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
+#~ "bootloader.\n"
+#~ "\n"
+#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
+#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
+#~ "disk\n"
+#~ "(\"On Floppy\").\n"
+#~ "\n"
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "El CD-ROM del Mandrake Linux t un mode de rescat. Hi podeu accedir "
+#~ "arrencant\n"
+#~ "des del CD-ROM, prement la tecla F1 en arrencar i teclejant \"rescue\"\n"
+#~ "a la lnia d'ordres. Per en cas que l'ordinador no pugui arrencar des "
+#~ "del\n"
+#~ "CD-ROM, haureu de tornar a aquest pas per obtenir ajuda en, com a mnim,\n"
+#~ "dues situacions:\n"
+#~ "\n"
+#~ " * quan s'installa el carregador de l'arrencada, el DrakX reescriu el "
+#~ "sector\n"
+#~ "d'arrencada (MBR) del disc dur principal (si no s que utilitzeu un altre "
+#~ "gestor\n"
+#~ "de l'arrencada), amb l'objectiu de permetre-us arrencar el Windows o el "
+#~ "GNU/Linux\n"
+#~ "(assumint que teniu Windows en l'ordinador). Si heu de reinstallar "
+#~ "Windows,\n"
+#~ "el procs d'installaci de Microsoft reescriur el sector d'arrencada, i "
+#~ "no sereu\n"
+#~ "capa d'arrencar el GNU/Linux!\n"
+#~ "\n"
+#~ " * si apareix un problema i no podeu arrencar el GNU/Linux des del disc "
+#~ "dur,\n"
+#~ "aquest disquet ser l'nica manera d'arrencar el GNU/Linux. El disquet "
+#~ "cont\n"
+#~ "un conjunt d'eines per restaurar el sistema, que ha fallat degut a "
+#~ "problemes\n"
+#~ "d'alimentaci, un error desafortunat en teclejar alguna cosa, un error en "
+#~ "teclejar\n"
+#~ "una contrasenya o qualsevol altra ra.\n"
+#~ "\n"
+#~ "Si feu clic a \"S\", el sistema us demanar que introduu un disquet a "
+#~ "la\n"
+#~ "unitat de disquets. El disquet que introduu ha d'estar buit o contenir "
+#~ "dades\n"
+#~ "que no necessiteu. No cal que el formateu perqu el DrakX reescriur tot "
+#~ "el disc."
+
+#, fuzzy
+#~ msgid ""
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "El CD-ROM del Mandrake Linux t un mode de rescat. Hi podeu accedir "
+#~ "arrencant\n"
+#~ "des del CD-ROM, prement la tecla F1 en arrencar i teclejant \"rescue\"\n"
+#~ "a la lnia d'ordres. Per en cas que l'ordinador no pugui arrencar des "
+#~ "del\n"
+#~ "CD-ROM, haureu de tornar a aquest pas per obtenir ajuda en, com a mnim,\n"
+#~ "dues situacions:\n"
+#~ "\n"
+#~ " * quan s'installa el carregador de l'arrencada, el DrakX reescriu el "
+#~ "sector\n"
+#~ "d'arrencada (MBR) del disc dur principal (si no s que utilitzeu un altre "
+#~ "gestor\n"
+#~ "de l'arrencada), amb l'objectiu de permetre-us arrencar el Windows o el "
+#~ "GNU/Linux\n"
+#~ "(assumint que teniu Windows en l'ordinador). Si heu de reinstallar "
+#~ "Windows,\n"
+#~ "el procs d'installaci de Microsoft reescriur el sector d'arrencada, i "
+#~ "no sereu\n"
+#~ "capa d'arrencar el GNU/Linux!\n"
+#~ "\n"
+#~ " * si apareix un problema i no podeu arrencar el GNU/Linux des del disc "
+#~ "dur,\n"
+#~ "aquest disquet ser l'nica manera d'arrencar el GNU/Linux. El disquet "
+#~ "cont\n"
+#~ "un conjunt d'eines per restaurar el sistema, que ha fallat degut a "
+#~ "problemes\n"
+#~ "d'alimentaci, un error desafortunat en teclejar alguna cosa, un error en "
+#~ "teclejar\n"
+#~ "una contrasenya o qualsevol altra ra.\n"
+#~ "\n"
+#~ "Si feu clic a \"S\", el sistema us demanar que introduu un disquet a "
+#~ "la\n"
+#~ "unitat de disquets. El disquet que introduu ha d'estar buit o contenir "
+#~ "dades\n"
+#~ "que no necessiteu. No cal que el formateu perqu el DrakX reescriur tot "
+#~ "el disc."
+
+#
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "Les impressores segents estan configurades. Feu doble clic en una "
+#~ "impressora per modificar-ne els parmetres, per fer-la la impressora per "
+#~ "defecte, per veure'n la informaci o per fer que una impressora en un "
+#~ "servidor remot CUPS estigui disponible per a Star Office/OpenOffice.org/"
+#~ "GIMP."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 1105c2bac..e5831ecfd 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -6,14 +6,14 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
-"PO-Revision-Date: 2002-09-25 09:59GMT\n"
-"Last-Translator: Michal Bukovjan <bukm@centrum.cz>\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
+"PO-Revision-Date: 2003-03-06 14:52GMT+0100\n"
+"Last-Translator: Radek Vybíral <Radek.Vybiral@vsb.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
+"X-Generator: KBabel 0.9.6\n"
#: ../../any.pm:1
#, c-format
@@ -56,7 +56,7 @@ msgid ""
msgstr ""
"Chcete povolit uživatelům, aby si mohli sdílet adresáře ve svém domovském "
"adresáři?\n"
-"Pokud to povolíte, uživatelům stačí pouze kliknout na \"Sdílet\" v "
+"Pokud to povolíte, uživatelům stačí pouze klepnout na \"Sdílet\" v "
"aplikacích Konqueror a Nautilus.\n"
"\n"
"Lze také provést \"Vlastní\" povolení pro jednotlivé uživatele.\n"
@@ -101,29 +101,29 @@ msgid "More"
msgstr "Více"
#: ../../any.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Here is the full list of available countries"
-msgstr "Zde je kompletní seznam dostupných klávesnic"
+msgstr "Zde je kompletní seznam dostupných zemí"
#: ../../any.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Please choose your country."
-msgstr "Jaký je typ vaší myši?"
+msgstr "Vyberte si prosím svoji zem."
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Country"
-msgstr "Země:"
+msgstr "Země"
#: ../../any.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "All languages"
-msgstr "Výběr jazyka"
+msgstr "Všechny jazyky"
#: ../../any.pm:1
#, c-format
msgid "Use Unicode by default"
-msgstr ""
+msgstr "Použít Unicode jako výchozí"
#: ../../any.pm:1
#, c-format
@@ -131,7 +131,9 @@ msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
-msgstr "Můžete si zvolit další jazyky, které budou dostupné po instalaci"
+msgstr ""
+"Mandrake Linux podporuje více jazyků. Můžete si zvolit další jazyky,\n"
+"které budou dostupné po instalaci a následném restartu systému."
#: ../../any.pm:1
#, c-format
@@ -146,20 +148,18 @@ msgstr "Vyberte si, který správce oken má být spouštěn:"
#: ../../any.pm:1
#, c-format
msgid "Choose the default user:"
-msgstr "Zvolte standardního uživatele :"
+msgstr "Zvolte standardního uživatele:"
#: ../../any.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Do you want to use this feature?"
-msgstr "Chcete použít aboot?"
+msgstr "Chcete použít tuto vlastnost?"
#: ../../any.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
-"Můžu nastavit váš počítač tak, aby automaticky přihlásil vybraného "
-"uživatele.\n"
-"Chcete použít tuto možnost?"
+"Můžu nastavit váš počítač tak, aby automaticky přihlásil vybraného uživatele."
#: ../../any.pm:1
#, c-format
@@ -502,12 +502,12 @@ msgstr "Omezení nastavení z příkazové řádky"
#: ../../any.pm:1
#, c-format
msgid "Force No APIC"
-msgstr ""
+msgstr "Vnutit No APIC"
#: ../../any.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Enable ACPI"
-msgstr "Povolit spuštění z CD?"
+msgstr "Povolit ACPI"
#: ../../any.pm:1
#, c-format
@@ -560,14 +560,14 @@ msgid "Skip"
msgstr "Přeskočit"
#: ../../any.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "On Floppy"
-msgstr "Spouštěcí disketa"
+msgstr "Na disketu"
#: ../../any.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "First sector of the root partition"
-msgstr "První sektor zaváděcího diskového oddílu"
+msgstr "První sektor kořenového oddílu"
#: ../../any.pm:1
#, c-format
@@ -958,15 +958,15 @@ msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Nelze použít LVM Logického disku na připojený bod %s"
#: ../../fsedit.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""
-"Zvolili jste softwarovou RAID oddíl jako kořenový oddíl (/).\n"
+"Zvolili jste softwarový RAID oddíl 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. Ujistěte se prosím, že tento oddíl máte."
+"/boot. Ujistěte se prosím, že jste tento oddíl přidali"
#: ../../fsedit.pm:1
#, c-format
@@ -974,9 +974,9 @@ 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:1
-#, fuzzy, c-format
+#, c-format
msgid "Mount points should contain only alphanumerical characters"
-msgstr "Název fronty může obsahovat pouze písmena, číslice a podtržítko"
+msgstr "Název přípojného bodu může obsahovat pouze písmena a číslice"
#: ../../fsedit.pm:1
#, c-format
@@ -1036,9 +1036,9 @@ msgid "simple"
msgstr "jednoduchý"
#: ../../fs.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Enabling swap partition %s"
-msgstr "Formátuji oddíl %s"
+msgstr "Aktivuji odkládací oddíl %s"
#: ../../fs.pm:1 ../../partition_table.pm:1
#, c-format
@@ -1051,14 +1051,14 @@ msgid "mounting partition %s in directory %s failed"
msgstr "připojení oddílu %s v adresáři %s selhalo"
#: ../../fs.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Mounting partition %s"
-msgstr "Formátuji oddíl %s"
+msgstr "Připojuji oddíl %s"
#: ../../fs.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Checking %s"
-msgstr "Kopíruji %s"
+msgstr "Kontroluji %s"
#: ../../fs.pm:1
#, c-format
@@ -1081,7 +1081,7 @@ msgid "%s formatting of %s failed"
msgstr "%s formátování %s skončilo chybou"
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Click on \"Next ->\" if you want to delete all data and partitions present\n"
"on this hard drive. Be careful, after clicking on \"Next ->\", you will not\n"
@@ -1091,12 +1091,12 @@ msgid ""
"Click on \"<- Previous\" to stop this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
-"Klikněte na \"OK\", pokud chcete smazat všechna data a oddíly na tomto\n"
-"pevném disku. Buďte opatrní, po odkliknutí nelze obnovit žádná dřívější "
+"Klepněte na \"Dále ->\", pokud chcete smazat všechna data a oddíly na tomto\n"
+"pevném disku. Buďte opatrní, po odklepnutí nelze obnovit žádná dřívější "
"data\n"
"ani oddíly a to i pro Windows.\n"
"\n"
-"Kliknutím na \"Zrušit\" zrušíte tuto operaci bez ztráty dat a oddílů na "
+"Klepnutím na \"<- Zpět\" zrušíte tuto operaci bez ztráty dat a oddílů na "
"disku."
#: ../../help.pm:1
@@ -1110,85 +1110,73 @@ msgstr ""
"Pamatujte na to, že všechna data budou ztracena a nelze je již obnovit!"
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
-msgstr ""
-"Zde jsou shromážděny různé informace, které se vztahují k tomuto počítači.\n"
-"V závislosti na tom, zda je či není přítomen daný hardware, můžete nebo\n"
-"nemusíte vidět tyto položky: \n"
-"\n"
-" * \"Myš\": pokud je zjištěna myš, můžete zde změnit její nastavení.\n"
-"\n"
-" * \"Klávesnice\": zkontrolujte nastavení rozložení kláves, kliknutím na "
-"tlačítko\n"
-"lze změnit rozložení kláves, pokud je to nutné.\n"
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
"\n"
-" * \"Časové pásmo\": instalační program se pokusí odhadnout časové pásmo na\n"
-"základě vámi vybraného jazyka. To ale nemusí souhlasit, stejně jako v "
-"případě\n"
-"rozložení klávesnice můžete žít v jiné zemi a proto je zde umožněno změnit\n"
-"časovou zónu, ve které se nyní nacházíte.\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
"\n"
-" * \"Tiskárna\": Kliknutím na tlačítko \"Bez tiskárny\" se spustí průvodce\n"
-"nastavením tiskárny. V odpovídající kapitole v \"Uživatelské příručce\" se\n"
-"dozvíte více o tom, jak tiskárnu nastavit. Rozhraní, které je v ní popsané, "
-"je\n"
-"podobné rozhraní použitému při této instalaci.\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
"\n"
-" * \"Zvuková karta\": pokud byla při instalaci detekována zvuková karta, je\n"
-"zde zobrazena. Při instalaci není možné nic měnit.\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
"\n"
-" * \"TV karta\": pokud byla detekována televizní karta, je zde zobrazena.\n"
-"Při instalaci není možné nic měnit.\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
"\n"
-" * \"ISDN karta\": pokud byla detekována ISDN karta, je zde zobrazena.\n"
-"Kliknutím na tlačítko můžete měnit parametry pro tuto kartu."
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
+msgstr ""
+"\"Zvuková karta\": pokud je detekována v počítači zvuková karta, je zde\n"
+"zobrazena. Pokud ale vidíte, že zobrazená karta není přesně tak, kterou\n"
+"máte v počítači, můžete klepnutím na tlačítko vybrat jinou kartu a ovladač."
#: ../../help.pm:1
#, c-format
@@ -1198,9 +1186,12 @@ msgid ""
"actually present on your system, you can click on the button and choose\n"
"another driver."
msgstr ""
+"\"Zvuková karta\": pokud je detekována v počítači zvuková karta, je zde\n"
+"zobrazena. Pokud ale vidíte, že zobrazená karta není přesně tak, kterou\n"
+"máte v počítači, můžete klepnutím na tlačítko vybrat jinou kartu a ovladač."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Yaboot is a bootloader for NewWorld Macintosh hardware and can be used to\n"
"boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are correctly\n"
@@ -1265,7 +1256,7 @@ msgstr ""
" * Výchozí OS: vyberte výchozí OS, který se spustí po uplynutí prodlevy."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"You can add additional entries in yaboot for other operating systems,\n"
"alternate kernels, or for an emergency boot image.\n"
@@ -1320,7 +1311,7 @@ msgstr ""
"\n"
"Pro Linux je několik dalších možností:\n"
"\n"
-" * Jmenovka: je to jednoduché jméno, které můžete napsat do příkazového\n"
+" * Jmenovka: je to jednoduchý název, které můžete napsat do příkazového\n"
"řádku pro Yaboot pro zvolení daného systému.\n"
"\n"
" * Obraz: je to jméno jádra, ze kterého se spustí systém. Typicky je to "
@@ -1361,19 +1352,14 @@ msgstr ""
"výběry se zobrazí po stisknutí tlačítka [Tab]."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"DrakX will first detect any IDE devices present in your computer. It will\n"
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1385,40 +1371,24 @@ msgid ""
"which parameters need to be passed to the hardware, you'll need to manually\n"
"configure the driver."
msgstr ""
-"Aplikace DrakX se nejdříve pokusí najít všechny pevné disky v počítači. Také "
-"se\n"
-"pokusí nalézt jeden nebo více PCI SCSI adaptérů. Pokud nějaký najde,\n"
+"Aplikace DrakX se nejdříve pokusí najít všechny pevné disky v počítači.\n"
+"Také se pokusí nalézt jeden nebo více PCI SCSI adaptérů. Pokud nějaký "
+"najde,\n"
"automaticky nainstaluje správný ovladač.\n"
"\n"
"Protože automatická detekce hardware nemusí vždy nalézt všechny typy "
"hardware,\n"
-"budete v dialogu dotázáni, zda vůbec máte nějaký SCSI adaptér. Odpovězte\n"
-"\"Ano\" a vyberte si ze seznamu adaptérů nebo odpovězte \"Ne\", jestliže "
-"žádný\n"
-"adaptér nemáte. Pokud přesně, zda-li nějaký máte, můžete to zjistit "
-"kliknutím na\n"
-"tlačítko \"Zobrazit informace o hardware\"a prozkoumáním seznamu. Kliknutím\n"
-"na tlačítko \"OK\" se vrátíte k otázce o adaptéru SCSI.\n"
-"\n"
-"Pokud si budete muset vybrat ovladač ručně, aplikace DrakX se zeptá, zda "
-"pro\n"
-"něj chcete zadat nějaké volby Měli byste povolit aplikaci DrakX, ať se "
-"pokusí\n"
-"zjistit, které volby jsou pro danou kartu potřeba. Většinou to funguje "
-"dobře.\n"
+"budete v dialogu dotázáni, zda vůbec máte nějaký SCSI adaptér. \n"
+"Pokud si budete muset vybrat ovladač ručně, aplikace DrakX se zeptá,\n"
+"zda pro něj chcete zadat nějaké volby Měli byste povolit aplikaci DrakX,\n"
+"ať se pokusí zjistit, které volby jsou pro danou kartu potřeba. Většinou to\n"
+"funguje dobře.\n"
"\n"
"Pokud to nebude fungovat, budete muset zadat další informace pro ovladač "
-"ručně.\n"
-"Pro další nápovědu se podívejte do instalační příručky (kapitola 3 "
-"\"Získání\n"
-"informací o hardware\"), kde je popsáno, jak získat tyto informace z "
-"dokumentace\n"
-"hardware, z WWW stránek výrobce tohoto hardware (pokud máte přístup k "
-"Internetu),nebo ze systému Windows (pokud je máte na počítači a hardware v "
-"nich používáte)."
+"ručně."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Now, it's time to select a printing system for your computer. Other OSs may\n"
"offer you one, but Mandrake Linux offers two. Each of the printing systems\n"
@@ -1428,7 +1398,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1447,34 +1417,32 @@ msgid ""
msgstr ""
"Zde si můžete vybrat tiskový systém, který budete používat. Jiné OS "
"nabízejí\n"
-"jeden, Mandrake nabízí tři.\n"
+"jeden, Mandrake nabízí dva. Každý z nich je nejvhodnější pro různé typy\n"
+"konfigurací.\n"
"\n"
" * \"pdq\" - což znamená 'print, don't queue' a je vhodný tehdy, pokud "
"nemáte\n"
"žádné síťové tiskárny. Zvládá pouze několik možností a tisk na něj ze sítě\n"
-"je velmi pomalý. Tuto volbu lze po instalaci změnit spuštěním nástroje "
-"PrinterDrake\n"
-"z řídícího centra Mandrake, pokud kliknete na tlačítko Expert.\n"
+"je velmi pomalý. Pokud s GNU/Linuxem teprve začínáte, pak je \"pdq\"\n"
+"doporučený tiskový systém pro vás.\n"
"\n"
" * \"CUPS\"'Common Unix Printing System' je vynikající v tisku na lokální\n"
-"tiskárny. Je jednoduchý a může fungovat jako klient i server pro klienty z "
-"\"lpd\"\n"
+"tiskárny stejně jako při tisku na tiskárnu na druhé straně planety. "
+"Nastavení\n"
+"je jednoduché a může fungovat jako klient i server pro klienty z \"lpd\"\n"
"systému, takže je s nimi kompatibilní. Je možné nastavit spoustu voleb,\n"
"ale základní nastavení je velmi jednoduché. Pokud potřebujete emulovat\n"
"\"lpd\" server, stačí spustit démona \"cups-lpd\". Má také grafické "
"prostředí\n"
"pro tisk a nastavení tiskárny.\n"
"\n"
-" * \"lprNG\" - 'line printer daemon New Generation'. Tento systém dokáže to\n"
-"co ostatní, ale umí tisknout na tiskárny připojené k Novell Netware, "
-"protože\n"
-"podporuje IPX protokol a také umí zpracovat přímo tiskové příkazy. Pokud\n"
-"potřebujete tisk na tiskárnách ze sítě Novell nebo tiskový systém bez\n"
-"zvláštní tiskové fronty, vyberte si lprNG.\n"
-"Jinak je preferován CUPS, protože je jednodušší a lépe pracuje v sítích."
+"Pokud nyní provedete volbu a později budete chtít tiskový systém změnit,\n"
+"můžete to provést pomocí nástroje PrinterDrake z řídícího centra Mandrake "
+"tak,\n"
+"že klepnete na tlačítko Expert."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
"automated. DrakX will analyze the disk boot sector and act according to\n"
@@ -1493,60 +1461,27 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"CDROM s distribucí Mandrake Linux má zabudovaný záchranný režim. Můžete ho\n"
-"spustit přímo při spuštění z CD, kdy stisknete klávesu >>F1<< a na "
-"příkazový\n"
-"řádek napíšete >>rescue<<. Pokud počítač neumožňuje bootovat z CD, potom\n"
-"v tomto kroku najdete řešení alespoň dvou následujících situací:\n"
-"\n"
-" * při instalaci zaváděcího programu přepíše aplikace DrakX zaváděcí sektor\n"
-"(MBR) na hlavním pevném disku (pokud nepoužíváte jiný zaváděcí program),\n"
-"aby umožnil start buď systému Windows nebo GNU/Linux (pokud máte Windows\n"
-"na počítači nainstalovány). Pokud potřebujete Windows přeinstalovat, "
-"instalační\n"
-"program společnosti Microsoft přepíše zaváděcí sektor a nebudete tak mít "
-"možnost\n"
-"spustit systém GNU/Linux!\n"
-"\n"
-" * pokud se objeví problémy a není možné spustit systém GNU/Linux z pevného\n"
-"disku, je tato disketa jedinou možností, jak systém spustit. Obsahuje "
-"několik\n"
-"základních systémových nástrojů pro obnovení systému pří výpadku napájení,\n"
-"nešťastném překlepu, chybě v hesle, nebo z jiných důvodů.\n"
-"\n"
-"Pokud zvolíte tento krok, musíte vložit disketu do mechaniky. Disketa musí\n"
-"být prázdná, nebo na ní mohou být data, která již nepotřebujete. Disketa\n"
-"nemusí být formátována, aplikace DrakX přepíše celý její obsah."
+"(\"On Floppy\")."
+msgstr ""
+"LILO a Grub jsou zavaděče systému. Tato část je běžně plně automatická.\n"
+"DrakX analyzuje zaváděcí sektor disku a zachová se podle toho, co zde\n"
+"nalezne:\n"
+"\n"
+" * pokud nalezne zaváděcí sektor Windows, přepíše ho sektorem pro LILO/Grub\n"
+"tak, aby bylo možné spouštět jak systém Windows tak i Linux;\n"
+"\n"
+" * pokud nalezne zaváděcí sektor pro LILO nebo Grub, tak jej přepíše novým.\n"
+"\n"
+"Pokud instalační program nedokáže rozhodnout, zeptá se na to, kam má "
+"zavaděč\n"
+"umístit.\n"
+"\n"
+"\"Spouštěcí zařízení\": ve většině případů není nutné měnit výchozí\n"
+"nastavení (\"První sektor disku (MBR)\"), ale zavaděč lze nainstalovat na \n"
+"druhý disk (\"/dev/hdb\") nebo dokonce na disketu (\"Na disketu\")."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options that will be available at boot time will be displayed.\n"
@@ -1570,11 +1505,12 @@ msgstr ""
"do\n"
"nabídky pro spouštění. Zde je možné dále doladit volby, které se předávají "
"tím,\n"
-"že na danou nabídkou vyberete a kliknete na tlačítko \"Upravit\", pokud jej "
+"že na danou nabídkou vyberete a klepnete na tlačítko \"Upravit\", pokud jej "
+"chcete\n"
+"upravit, \"Odstranit\" použijte pro odebrání a \"Přidat\" použijte pokud "
"chcete\n"
-"upravit nebo odstranit nebo \"Přidat\", pokud chcete vytvořit novou "
-"položku.\n"
-"K dalšímu kroku se dostanete kliknutím na tlačítko \"Hotovo\".\n"
+"vytvořit novou položku.\n"
+"K dalšímu kroku se dostanete klepnutím na tlačítko \"Hotovo\".\n"
"\n"
"Pokud nechcete umožnit přístup k těmto operačním systémům komukoliv, můžete\n"
"je z nabídky odstranit smazáním odpovídajících položek.. V tom případě ale\n"
@@ -1582,7 +1518,7 @@ msgstr ""
"spustit!"
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"This dialog allows to finely tune your bootloader:\n"
"\n"
@@ -1611,20 +1547,11 @@ msgid ""
"Clicking the \"Advanced\" button in this dialog will offer advanced options\n"
"that are reserved for the expert user."
msgstr ""
-"LILO a Grub jsou zavaděče systému. Tato část je běžně plně automatická.\n"
-"DrakX analyzuje zaváděcí sektor disku a zachová se podle toho, co zde\n"
-"nalezne:\n"
-"\n"
-" * pokud nalezne zaváděcí sektor Windows, přepíše ho sektorem pro LILO/Grub\n"
-"tak, aby bylo možné spouštět jak systém Windows tak i Linux;\n"
-"\n"
-" * pokud nalezne zaváděcí sektor pro LILO nebo Grub, tak jej přepíše novým.\n"
-"\n"
"Pokud jsou nějaké pochybnosti, je zobrazen dialog s výběrem možností.\n"
"\n"
-" * \"Jaký spouštěč použít:\" je možné si vybrat:\n"
+" * \"Jaký spouštěč použít:\" je možné si vybrat ze tří možností:\n"
"\n"
-" * \"GRUB\": pokud preferujete textovou verzi zavaděče Grub.\n"
+" * \"GRUB\": pokud preferujete zavaděč Grub (textová nabídka).\n"
"\n"
" * \"LILO s grafickou nabídkou\": pokud preferujete LILO s grafickým\n"
"rozhraním.\n"
@@ -1639,15 +1566,16 @@ msgstr ""
"umožněno uživateli vybrat si jiný systém z nabídky před tím, než bude\n"
"zaveden výchozí systém.\n"
"\n"
-"!! Vyvarujte se pokusů nenainstalovat zavaděč (vybráním volby \"Zrušit\"),\n"
+"!! Vyvarujte se pokusů nenainstalovat zavaděč (vybráním volby \"Přeskočit"
+"\"),\n"
"protože by měl existovat způsob, jak zavést systém Mandrake Linux!\n"
"Také si dobře rozmyslete, jaké změny zde provádíte !!\n"
"\n"
-"Kliknutím na tlačítko \"Rozšířené\" se dialog rozšíří o další možnosti,\n"
+"Klepnutím na tlačítko \"Rozšířené\" se dialog rozšíří o další možnosti,\n"
"vyhrazené pro znalé uživatele."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"Root\" is the system\n"
@@ -1688,14 +1616,14 @@ msgstr ""
"bezpečnost\n"
"systému GNU/Linux, tj. volba hesla pro uživatele \"Root\". Root je správcem\n"
"systému, je odpovědný za provádění aktualizací, přidávání uživatelů a také\n"
-"za celkové nastavení systému. Zkráceně: root může úplně všechno!\n"
+"za celkové nastavení systému. Zkráceně: \"root\" může úplně všechno!\n"
"To je také důvodem, proč se heslo volí takové, aby se nedalo lehce uhodnout\n"
"a instalační program DrakX zkontroluje, zda není příliš jednoduché. Jak "
"vidíte,\n"
"je možné heslo nezadat, ale toto velmi důrazně nedoporučujeme, a to z "
"jednoho\n"
"důvodu. Nemyslete si, že pokud spustíte systém GNU/Linux, že je vše bezpečné "
-"a že se nemůže nic stát.. Vzhledem k tomu, že na uživatele root se "
+"a že se nemůže nic stát.. Vzhledem k tomu, že na uživatele \"root\" se "
"nevztahují\n"
"běžná omezení, může nenávratně poškodit celý systém, smazat data z jiných\n"
"oddílů na disku a operačních systémů, vymazat potřebné soubory nebo celé\n"
@@ -1716,15 +1644,18 @@ msgstr ""
"stejný\n"
"překlep dvakrát, budete muset toto heslo s překlepem použít při prvním\n"
"přihlášení.\n"
-"V expertním režimu budete dotázáni na to, zda se má použít ověřovací\n"
-"server, jako je NIS nebo LDAP.\n"
+"\n"
+"Jestliže chcete použít ověřovací server, klepněte na tlačítko \"Rozšířené"
+"\".\n"
"\n"
"Pokud se ve vaší síti používá pro ověřování uživatelů protokol LDAP, NIS,\n"
"nebo ověřovací doména Windows PDC, vyberte odpovídající protokol. Pokud\n"
"o tom nic nevíte, zeptejte se správce vaší sítě.\n"
"\n"
-"Pokud není počítač připojen do žádné spravované sítě, zvolte pro ověření\n"
-"možnost \"Lokální soubory\"."
+"Pokud není počítač připojen do žádné spravované sítě a věříte všem, kteří "
+"mají\n"
+"přístup k počítači, můžete vybrat volbu \"Bez hesla\".možnost \"Lokální "
+"soubory\"."
#: ../../help.pm:1
#, c-format
@@ -1736,7 +1667,7 @@ msgstr ""
"v Linuxu jmenuje \"ttyS0\"."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Usually, DrakX has no problems detecting the number of buttons on your\n"
"mouse. If it does, it assumes you have a two-button mouse and will\n"
@@ -1782,14 +1713,14 @@ msgstr ""
"Myši s kolečkem nejsou v některých případech automaticky rozpoznány. Budete\n"
"je muset vybrat ze seznamu. Ujistěte se, že vyberete myš s odpovídajícím "
"typem\n"
-"portu, ke kterému je připojená. Poté, co stisknete tlačítko \"OK\", zobrazí "
-"se obrázek\n"
-"s myší. Aby se správně kolečko aktivovalo, musíte pohybovat kolečkem vaší "
-"myši.\n"
+"portu, ke kterému je připojená. Poté, co stisknete tlačítko \"Dále ->\", \n"
+"zobrazí se obráze s myší. Aby se správně kolečko aktivovalo, musíte "
+"pohybovat\n"
+"kolečkem vaší myši.\n"
"Poté ověřte, zda-li je správné nastavení tlačítek a pohybu vaší myši."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Your choice of preferred language will affect the language of the\n"
"documentation, the installer and the system in general. Select first the\n"
@@ -1802,35 +1733,50 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
"language used by the entire system. Running the command as a regular user\n"
"will only change the language settings for that particular user."
msgstr ""
-"V prvním kroku si vyberete požadovaný jazyk.\n"
-"\n"
-"Vyberte si vámi preferovaný jazyk, který se bude používat při instalaci\n"
-"a během užívání celém systému.\n"
+"Výběr preferovaného jazyka ovlivňuje dokumentaci, jazyk instalačního "
+"programu\n"
+"a všech programů obecně. V prvním kroku si vyberete region kde žijete\n"
+"a potom jazyk kterým mluvíte.\n"
"\n"
"Tlačítko \"Rozšířené\" umožňuje zvolit další jazyky, které budou také\n"
"nainstalovány a můžete je použít v systému. Výběrem dalších jazyků "
"nainstalujete\n"
"soubory s aplikacemi a dokumentací specifické pro tyto jazyky. Pokud "
-"například na\n"
-"počítači pracují občas lidé ze Španělska, vyberte angličtinu jako hlavní "
-"jazyk\n"
-"a pod tlačítkem rozšířené zatrhněte volbu \"Španělština|Španělsko\".\n"
-"\n"
-"Lze takto doinstalovat více jazyků. Pokud máte jazyky vybrány, klikněte na "
-"\"OK\"\n"
+"například\n"
+"na počítači pracují občas lidé ze Španělska, vyberte angličtinu jako hlavní\n"
+"jazyka pod tlačítkem rozšířené zatrhněte volbu \"Španělština|Španělsko\".\n"
+"\n"
+"Při výběru jazyka nejste omezeni pouze na jediný další. Můžete si jich "
+"vybrat\n"
+"více nebo dokonce nainstalovat všechny vybráním volby \"Všechny jazyky\".\n"
+"Přídavná volba \"Použít Unicode jako výchozí\" nastavuje celý systém na\n"
+"používání unicode (UTF-8). Zatím je to ale experimentální volba. Pokud\n"
+"vyberete různé jazyky, které vyžadují jiná kódování, bude i přesto podpora\n"
+"pro unicode nainstalována.\n"
+"\n"
+"Změnu různých jazyků instalovaných v systému lze provést pomocí příkazu\n"
+"\"/usr/bin/localedrake\" spuštěného jako uživatel \"root\". Spuštění pod\n"
+"běžným uživatelem způsobí změnu nastavení pouze pro daného uživatele.Lze "
+"takto doinstalovat více jazyků. Pokud máte jazyky vybrány, klikněte na \"OK"
+"\"\n"
"a instalace bude pokračovat dalším krokem."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Depending on the default language you chose in Section , DrakX will\n"
"automatically select a particular type of keyboard configuration. However,\n"
@@ -1860,7 +1806,7 @@ msgstr ""
"odpovídající\n"
"klávesnici ze seznamu.\n"
"\n"
-"Pokud máte klávesnici pro jiný jazyk, klikněte na tlačítko \"Více\"\n"
+"Pokud máte klávesnici pro jiný jazyk, klepněte na tlačítko \"Více\"\n"
"a zobrazí se kompletní seznam všech podporovaných rozložení klávesnic.\n"
"\n"
"Pokud vyberete rozložení klávesnice založené na abecedě jiné než latince,\n"
@@ -1892,13 +1838,40 @@ msgid ""
"running version \"8.1\" or later. Performing an Upgrade on versions prior\n"
"to Mandrake Linux version \"8.1\" is not recommended."
msgstr ""
+"Tento krok je objeví pouze tehdy, pokud je na vašem počítači nalezen starší\n"
+"oddíl GNU/Linuxu.\n"
+"\n"
+"Instalační program potřebuje vědět, zda má provést instalaci nebo pouze\n"
+"aktualizaci existujícího systému Mandrake Linux.\n"
+"\n"
+" * \"Instalace\": Nejběžnější volba, provede kompletní výmaz starého "
+"systému.\n"
+"Pokud si přejete změnit rozmístění oddílů, změnit souborový systém, "
+"použijte\n"
+"tuto volbu. Můžete samozřejmě také některé oddíly zachovat před přepsáním.\n"
+"\n"
+" * \"Aktualizace\": tato volba provede aktualizaci instalovaných balíčků.\n"
+"Aktuální rozmístění diskových oddílů a uživatelská data zůstanou zachována.\n"
+"Bude provedena ale většina konfiguračních kroků, stejně jako při instalaci.\n"
+"\n"
+"Použití volby \"Aktualizace\" bude fungovat bez problémů na stávající "
+"verzi \n"
+"\"8.1\" a novější. Aktualizace na verzích starších než \"8.1\" není "
+"doporučováno."
#: ../../help.pm:1
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
+"\"Země\": zkontrolujte aktuální výběr země. Pokud nejste v dané zemi, "
+"klepněte\n"
+"na tlačítko \"Nastavit\" a vyberte si jinou. Pokud vaše země na prvním "
+"seznamu,\n"
+"klepněte na tlačítko \"Více\" a získáte kompletní seznam zemí."
#: ../../help.pm:1
#, c-format
@@ -1965,7 +1938,7 @@ msgstr ""
"(první oddíl nebo disk má písmeno \"C:\")."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -2047,7 +2020,7 @@ msgstr ""
"z předchozí instalace GNU/Linux nebo jiným programem na rozdělení disku,\n"
"je možné použít právě tyto oddíly. Jinak musí být oddíly nově definovány.\n"
"\n"
-"Pro vytvoření oddílu musíte nejdříve vybrat pevný disk. Klikněte na \n"
+"Pro vytvoření oddílu musíte nejdříve vybrat pevný disk. Kepněte na \n"
"\"hda\", což je první IDE disk, nebo na \"hdb\", což je druhý disk,\n"
"případně na \"sda\", což je první SCSI disk.\n"
"\n"
@@ -2060,11 +2033,11 @@ msgstr ""
"\n"
" * \"Více\": nabídne další možnosti:\n"
"\n"
-" * \"Uložit tabulku na disketu\": uloží tabulku oddílů na disketu. To je\n"
+" * \"Uložit tabulku rozdělení\": uloží tabulku oddílů na disketu. To je\n"
"vhodné pro případ poškození tabulky, kdy ji lze z této zálohy obnovit.\n"
"Doporučujeme využít tuto možnost.\n"
"\n"
-" * \"Obnovit tabulku z diskety\": obnoví tabulku oddílů, která byla již "
+" * \"Obnovit tabulku rozdělení\": obnoví tabulku oddílů, která byla již "
"dříve\n"
"uložena na disketu.\n"
"\n"
@@ -2092,6 +2065,10 @@ msgstr ""
"\n"
" * \"Hotovo\": pokud máte disk rozdělen, uloží se změny na disk.\n"
"\n"
+"Pokud definujete velikost oddílu, můžete přesněji jejich velikost určit "
+"pomocí\n"
+"kurzorových šipek na klávesnici.\n"
+"\n"
"Poznámka: každou volbu je možné zadat také z klávesnice. Mezi oddíly se\n"
"můžete pohybovat pomocí kláves [Tab] a [Šipka nahoru/šipka dolů].\n"
"\n"
@@ -2106,48 +2083,44 @@ msgstr ""
"Více informací o jednotlivých druzích souborových systémů naleznete\n"
"v kapitole o ext2fs v \"Referenční příručce\".\n"
"\n"
-"Pokud instalujete na počítač PPC, je potřeba vytvořit malý oddíl HPFS,\n"
+"Pokud instalujete na počítač PPC, je potřeba vytvořit malý oddíl HFS,\n"
"tzv. \"bootstrap\" o minimální velikosti 1MB, který bude použit pro zavaděč\n"
"Yaboot. Pokud vytvoříte tento oddíl větší, např. 50 MB, je to dobré místo "
"pro\n"
"uložení ramdisku a jádra pro situace záchrany disku."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"At this point, DrakX will allow you to choose the security level desired\n"
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-"Nyní si vyberte úroveň zabezpečení vašeho počítače Je zřejmé, že čím více "
-"je\n"
-"počítač využíván a čím cennější data obsahuje, tím je potřeba zvolit vyšší\n"
+"Nyní si vyberte úroveň zabezpečení vašeho počítače Je zřejmé, že čím více\n"
+"je počítač využíván a čím cennější data obsahuje, tím je potřeba zvolit "
+"vyšší\n"
"úroveň. Na druhou stranu, vyšší úroveň znesnadňuje některé obvyklé postupy.\n"
-"Více informací o úrovních bezpečnosti se dočtete v kapitole MSEC v "
-"referenční příručce.\n"
"\n"
"Pokud nevíte co vybrat, ponechte výchozí nastavení."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
"Pokaždé, když instalujete distribuci Mandrake Linux, je možné, že některé\n"
"balíčky byly od vydání distribuce aktualizovány. Mohly to být opravy chyb\n"
@@ -2159,14 +2132,13 @@ msgstr ""
"\n"
"Po zvolení \"Ano\" se zobrazí seznam míst, odkud mohou být aktualizace "
"získány.\n"
-"Vyberte si nejbližší místo. Následně se objeví stromový seznam balíčků, "
-"který\n"
-"je možno ještě upravit a stisknutím tlačítka \"Instalovat\" se provede "
+"Vyberte si nejbližší místo. Následně se objeví stromový seznam balíčků,\n"
+"který je možno ještě upravit a stisknutím tlačítka \"Instalovat\" se provede "
"stažení\n"
"a instalace vybraných balíčků. Akci můžete přerušit klepnutím na \"Zrušit\"."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a file system).\n"
@@ -2210,16 +2182,16 @@ msgstr ""
"všechna\n"
"data na formátovaných oddílech budou ztracena a nelze je již obnovit.\n"
"\n"
-"Pokud je vše připraveno pro formátování, klikněte na \"OK\".\n"
+"Pokud je vše připraveno pro formátování, klepněte na \"Dále ->\".\n"
"\n"
-"Klikněte na \"Zrušit\" pokud chcete vybrat jiné oddíly pro instalaci\n"
+"Klepněte na \"Zpět\" pokud chcete vybrat jiné oddíly pro instalaci\n"
"systému Mandrake Linux.\n"
"\n"
-"Kliknutím na \"Rozšířené\" můžete vybrat, které oddíly budou otestovány\n"
+"Klepnutím na \"Rozšířené\" můžete vybrat, které oddíly budou otestovány\n"
"na vadné bloky."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"Next ->\" to reboot the system. The first thing\n"
@@ -2227,7 +2199,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2254,8 +2226,8 @@ msgid ""
msgstr ""
"Nyní je instalace ukončena a operační systém GNU/Linux je připraven k "
"použití.\n"
-"Klikněte na \"OK\" a systém bude restartován. Potom můžete spustit GNU/Linux "
-"nebo\n"
+"Klepněte na \"Dále ->\" a systém bude restartován. Potom můžete spustit GNU/"
+"Linux nebo\n"
"Windows, záleží který preferujete\n"
"\n"
"Tlačítko \"Rozšířené\" zobrazí další dvě tlačítka:\n"
@@ -2264,30 +2236,29 @@ msgstr ""
"lze celou instalaci opakovat bez zásahu operátora se stejnými volbami,\n"
"které byly zvoleny při instalaci.\n"
"\n"
-" Po kliknutí na toto tlačítko se zobrazí další dvě volby:\n"
+" Po klepnutí na toto tlačítko se zobrazí další dvě volby:\n"
"\n"
-" * : Zopakovat: je to částečně automatická instalace, kdy se potvrzuje "
-"krok\n"
-"při rozdělování disků (a pouze tento krok).\n"
+" * : \"Zopakovat\": je to částečně automatická instalace, kdy se "
+"potvrzuje\n"
+"krok při rozdělování disků (a pouze tento krok).\n"
"\n"
-" * : Automaticky: plně automatická instalace, data na pevném disku budou\n"
-"zrušena a disk přepsán.\n"
+" * : \"Automaticky\": plně automatická instalace, data na pevném disku\n"
+"budou zrušena a disk přepsán.\n"
"\n"
" Tato volba je velmi užitečná, když potřebujete nainstalovat větší počet\n"
"stejných počítačů. Více o této možnosti je na našich WWW stránkách.\n"
"\n"
-" * Uložit výběr balíčků(*): uloží výběr balíčků, který byl zvolen při "
-"instalaci.\n"
-"Pokud budete instalovat další počítač, vložte disketu do mechaniky a "
-"spusťte\n"
-"instalaci, stiskněte [F1] a napište na příkazový řádek >linux defcfg=\"floppy"
-"\"<.\n"
+" * \"Uložit výběr balíčků\"(*): uloží výběr balíčků, který byl zvolen při\n"
+"instalaci. Pokud budete instalovat další počítač, vložte disketu do "
+"mechaniky\n"
+"a spusťte instalaci, stiskněte [F1] a napište na příkazový řádek \n"
+">> linux defcfg=\"floppy\" <<.\n"
"\n"
"(*) Potřebujete disketu formátovanou FAT (Pod Linuxem ji vytvoříte příkazem\n"
"\"mformat a:\")"
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"At this point, you need to decide where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -2318,7 +2289,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2343,15 +2314,15 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
-"V tomto bodě si musíte definovat, na které diskové oddíly budete\n"
+"V tomto bodě si musíte rozhodnout, na které diskové oddíly budete\n"
"instalovat nový operační systém Mandrake Linux. Pokud je disk prázdný\n"
"nebo existující operační systém používá celý disk, je nutné ho rozdělit.\n"
"Rozdělení disku spočívá ve vytvoření volného prostoru pro instalaci\n"
@@ -2362,17 +2333,7 @@ msgstr ""
"Pro tyto uživatele je dobrý průvodce, který zjednoduší daný proces.\n"
"Ještě před započetím rozdělování disku si pročtěte manuál.\n"
"\n"
-"Pokud máte zvolený Expertní režim, spustil se nástroj na práci s diskem\n"
-"DiskDrake, který umožňuje lépe nastavit diskové oddíly. Více informací\n"
-"naleznete v příslušné kapitole uživatelské příručky. Pokud chcete použít\n"
-"průvodce, klikněte na tlačítko \"Průvodce\".\n"
-"\n"
-"Pokud máte již vytvořeny diskové oddíly z předchozích instalací nebo\n"
-"od jiných diskových nástrojů, lze je nyní použít pro instalaci tohoto\n"
-"systému Linux.\n"
-"\n"
-"Pokud nejsou definovány žádné diskové oddíly, je nutné je vytvořit.\n"
-"K tomu slouží průvodce, který nabídne několik řešení:\n"
+"Na základě vaší stávající konfigurace nabídne průvodce několik řešení:\n"
"\n"
" * \"Použít volný prostor\": takto se jednoduše automaticky disk(y) rozdělí\n"
"a již se o nic nemusíte starat.\n"
@@ -2386,24 +2347,23 @@ msgstr ""
"je měli ponechat.\n"
"\n"
" * \"Použít volné místo na oddílu s Windows\": pokud máte na disku\n"
-"nainstalovány Microsoft Windows a tyto zabírají celý disk, je možné tento "
-"prostor\n"
-"zmenšit a použít ho pro instalaci. Oddíl lze také vymazat a tím ztratit data "
-"(viz volby\n"
-"\"Smazat celý disk\" a \"Expertní režim\"). Změna velikosti oddílu je "
-"provedena\n"
-"bez ztráty dat a je možná, pokud jste předtím tento oddíl ve Windows "
-"defragmentovali.\n"
-"Také neuškodí zazálohovat vaše data... Tento postup je doporučený, pokud "
+"nainstalovány Microsoft Windows a tyto zabírají celý disk, je možné tento\n"
+"prostor zmenšit a použít ho pro instalaci. Oddíl lze také vymazat a tím \n"
+" (viz volba \"Smazat celý disk\") nebo změnit velikost FAT oddílu s "
+"Microsoft\n"
+"Windows. Změna velikosti oddílu je provedena bez ztráty dat a je možná, "
+"pokud\n"
+"jste předtím tento oddíl ve Windows defragmentovali.\n"
+"Je doporučeno zazálohovat vaše data. Tento postup je doporučený, pokud "
"chcete\n"
"na disku provozovat současně systém Mandrake Linux i Microsoft Windows.\n"
"\n"
" Před výběrem této volby si prosím uvědomte, že velikost oddílu s "
-"Microsoft Windows\n"
-"bude menší než je nyní. To znamená, že budete mít méně místa pro \n"
+"Microsoft\n"
+"Windows bude menší než je nyní. To znamená, že budete mít méně místa pro\n"
"uložení dat nebo instalaci programů do Microsoft Windows.\n"
"\n"
-" * \"Zrušit celý disk\": pokud chcete smazat veškerá data a všechny oddíly\n"
+" * \"Smazat celý disk\": pokud chcete smazat veškerá data a všechny oddíly\n"
"na disku a použít je pro instalaci systému Mandrake Linux, vyberte toto\n"
"řešení. Zde postupujte opatrně, po výběru již není možné vzít volbu zpět.\n"
"\n"
@@ -2415,67 +2375,14 @@ msgstr ""
"\n"
" !! Pokud vyberete tuto volbu, veškerá data budou ztracena. !!\n"
"\n"
-" * \"Expertní režim\": pokud chcete disk rozdělit ručně. Před touto volbou "
-"buďte\n"
-"opatrní, je sice mocná, ale nebezpečná. Velmi jednoduše zde můžete přijít o "
-"svá data.\n"
-"Nedoporučuje se těm, kteří přesně nevědí, co dělají. Chcete-li se dozvědět "
-"více\n"
-"o nástroji DiskDrake, který se v tomto případě používá, prostudujte sekci "
-"\"Správa vašich oddílů\" v \"Uživatelské příručce\"."
-
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"CDROM s distribucí Mandrake Linux má zabudovaný záchranný režim. Můžete ho\n"
-"spustit přímo při spuštění z CD, kdy stisknete klávesu >>F1<< a na "
-"příkazový\n"
-"řádek napíšete >>rescue<<. Pokud počítač neumožňuje bootovat z CD, potom\n"
-"v tomto kroku najdete řešení alespoň dvou následujících situací:\n"
-"\n"
-" * při instalaci zaváděcího programu přepíše aplikace DrakX zaváděcí sektor\n"
-"(MBR) na hlavním pevném disku (pokud nepoužíváte jiný zaváděcí program),\n"
-"aby umožnil start buď systému Windows nebo GNU/Linux (pokud máte Windows\n"
-"na počítači nainstalovány). Pokud potřebujete Windows přeinstalovat, "
-"instalační\n"
-"program společnosti Microsoft přepíše zaváděcí sektor a nebudete tak mít "
-"možnost\n"
-"spustit systém GNU/Linux!\n"
-"\n"
-" * pokud se objeví problémy a není možné spustit systém GNU/Linux z pevného\n"
-"disku, je tato disketa jedinou možností, jak systém spustit. Obsahuje "
-"několik\n"
-"základních systémových nástrojů pro obnovení systému pří výpadku napájení,\n"
-"nešťastném překlepu, chybě v hesle, nebo z jiných důvodů.\n"
-"\n"
-"Pokud zvolíte tento krok, musíte vložit disketu do mechaniky. Disketa musí\n"
-"být prázdná, nebo na ní mohou být data, která již nepotřebujete. Disketa\n"
-"nemusí být formátována, aplikace DrakX přepíše celý její obsah."
+" * \"Vlastní rozdělení disku\": pokud chcete disk rozdělit ručně. Před "
+"touto\n"
+"volbou buďte opatrní, je sice mocná, ale nebezpečná. Velmi jednoduše zde\n"
+"můžete přijít o svá data.\n"
+"Nedoporučuje se těm, kteří přesně nevědí, co dělají. Chcete-li se dozvědět\n"
+"více o nástroji DiskDrake, který se v tomto případě používá, prostudujte "
+"sekci\n"
+"\"Správa vašich oddílů\" v příručce \"Začínáme\"."
#: ../../help.pm:1
#, c-format
@@ -2499,6 +2406,8 @@ msgid ""
"without 3D acceleration, you are then proposed to choose the server that\n"
"best suits your needs."
msgstr ""
+"V případě, že je pro vaši kartu možno použít více různých serverů s 3D\n"
+"akcelerací nebo bez, záleží na vašem výběru, který vám nejvíce vyhovuje."
#: ../../help.pm:1
#, c-format
@@ -2510,6 +2419,11 @@ msgid ""
"able to change that after installation though). A sample of the chosen\n"
"configuration is shown in the monitor."
msgstr ""
+"Rozlišení\n"
+"\n"
+" Zde si můžete vybrat rozlišení a barevnou hloubku, které vaše karta \n"
+"podporuje. Vyberte si to co vám nejvíce vyhovuje (výběr lze po instalaci\n"
+"samozřejmě změnit). Na monitoru bude zobrazena příklad nastavení."
#: ../../help.pm:1
#, c-format
@@ -2520,6 +2434,11 @@ msgid ""
"monitor connected to your machine. If it is not the case, you can choose in\n"
"this list the monitor you actually own."
msgstr ""
+"Monitor\n"
+"\n"
+" Instalační program dokáže většinou automaticky detekovat a správně \n"
+"nastavit monitor připojený k vašemu počítači. Pokud se to nezdaří, lze se\n"
+"seznamu vybrat monitor, který máte."
#: ../../help.pm:1
#, c-format
@@ -2576,6 +2495,56 @@ msgid ""
"\"No\" if your machine is to act as a server, or if you were not successful\n"
"in getting the display configured."
msgstr ""
+"X (X Window System) je srdcem grafického rozhraní pro GNU/Linux, které\n"
+"využívají dodávané grafické prostředí (KDE, GNOME, Afterstep, WindowMaker).\n"
+"\n"
+"Nyní bude zobrazen seznam různých parametrů, které je možné změnit pro\n"
+"dosažení optimálního grafického zobrazení\n"
+"Grafická karta\n"
+"\n"
+" Instalační program je schopen automaticky detekovat a nastavit grafickou\n"
+"kartu instalovanou v počítači. Pokud se to nepodaří, máte možnost si ze\n"
+"seznamu vybrat příslušnou grafickou kartu ručně.\n"
+"\n"
+" V případě, že pro vaši kartu je možné použít více různých serverů, s 3D\n"
+"akcelerací nebo bez, je pouze na vás, který server si vyberete jako nejvíce\n"
+"vyhovující vašim potřebám.\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Instalační program dokáže většinou automaticky detekovat a správně \n"
+"nastavit monitor připojený k vašemu počítači. Pokud se to nezdaří, lze se\n"
+"seznamu vybrat monitor, který máte.\n"
+"\n"
+"\n"
+"Rozlišení\n"
+"\n"
+" Zde si můžete vybrat rozlišení a barevnou hloubku, které vaše karta \n"
+"podporuje. Vyberte si to co vám nejvíce vyhovuje (výběr lze po instalaci\n"
+"samozřejmě změnit). Na monitoru bude zobrazena příklad nastavení.\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" Systém se pokusí otestovat grafickou obrazovku v požadovaném rozlišení.\n"
+"Pokud během testu uvidíte zprávy a odpovíte na ni \"Ano\", instalační "
+"program\n"
+"bude pokračovat dalším krokem. Pokud zprávu neuvidíte, znamená to, že "
+"některá\n"
+"část automatické detekce neproběhla v pořádku a test automaticky za 12 "
+"vteřin\n"
+"skončí s tím, že se provede návrat k základní nabídce. Následně je možné "
+"opět\n"
+"provést změny až do té doby, než bude zobrazeno správné rozlišení.\n"
+"\n"
+"\n"
+"Volby\n"
+"\n"
+" Zde si můžete vybrat, zda chcete provést automatický start grafického\n"
+"prostředí po spuštění systému. Je samozřejmé, že pokud bude počítač "
+"provozován\n"
+"jako server, je nutné odpovědět \"Ne\"."
#: ../../help.pm:1
#, c-format
@@ -2590,9 +2559,18 @@ msgid ""
"without 3D acceleration, you are then proposed to choose the server that\n"
"best suits your needs."
msgstr ""
+"Grafická karta\n"
+"\n"
+" Instalační program je schopen automaticky detekovat a nastavit grafickou\n"
+"kartu instalovanou v počítači. Pokud se to nepodaří, máte možnost si ze\n"
+"seznamu vybrat příslušnou grafickou kartu ručně.\n"
+"\n"
+" V případě, že pro vaši kartu je možné použít více různých serverů, s 3D\n"
+"akcelerací nebo bez, je pouze na vás, který server si vyberete jako nejvíce\n"
+"vyhovující vašim potřebám."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
"local time according to the time zone you selected. If the clock on your\n"
@@ -2624,9 +2602,10 @@ msgstr ""
"mohou volitelně používat jiné počítače ve vaší lokální síti."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2652,22 +2631,26 @@ msgstr ""
"s popisem, co daná služba dělá. Pokud přesně nevíte, zda je služba užitečná\n"
"nebo ne, je lepší ji nechat ve výchozím stavu.\n"
"\n"
-"Rozvažte, co za služby spustit, zvláště pokud budete počítač provozovat\n"
+"!! Rozvažte, co za služby spustit, zvláště pokud budete počítač provozovat\n"
"jako server: nepotřebujete všechny služby. Pamatujte, že čím více služeb\n"
"je spuštěno, tím je větší nebezpečí nežádoucího proniknutí do počítače.\n"
-"Takže povolte opravdu jen ty služby, které nezbytně potřebujete."
+"Takže povolte opravdu jen ty služby, které nezbytně potřebujete.\n"
+"!!"
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
msgstr ""
+"\"Tiskárna\": klepnutím na \"Nastavit\" se otevře průvodce nastavením.\n"
+"Jak nastavit tiskárnu se také dozvíte z odpovídající kapitoly z příručky\n"
+"\"Začínáme\". Rozhraní je podobné tomu, které vidíte při instalaci."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"You will now set up your Internet/network connection. If you wish to\n"
"connect your computer to the Internet or to a local network, click \"Next\n"
@@ -2689,7 +2672,8 @@ msgid ""
"installed and use the program described there to configure your connection."
msgstr ""
"V tomto kroku se provede nastavení připojení k Internetu/síti. Pokud chcete\n"
-"připojit svůj počítač k místní síti nebo k Internetu, klepněte na \"OK\"\n"
+"připojit svůj počítač k místní síti nebo k Internetu, klepněte na \"Dále ->"
+"\"\n"
"a spustí se automatická detekce síťové karty nebo modemu. Pokud tato\n"
"detekce selže, odškrtněte při dalším pokusu políčko \"Použít automatickou\n"
"detekci\". Pokud nechcete síť nastavit nebo to chcete provést později, "
@@ -2715,7 +2699,7 @@ msgstr ""
"připojení k síti později po instalaci, klepněte na tlačítko \"Zrušit\"."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"If you told the installer that you wanted to individually select packages,\n"
"it will present a tree containing all packages classified by groups and\n"
@@ -2758,38 +2742,33 @@ msgstr ""
"podskupiny\n"
"nebo celé skupiny.\n"
"\n"
-"Pokud vyberete ze stromu balíček, objeví se v pravé části popis.\n"
-"Pokud máte výběr hotový, klikněte na tlačítko \"Instalovat\", které spustí\n"
-"instalační proces. Doba trvání instalace závisí počtu balíčků a na "
-"rychlosti\n"
-"vašeho počítače, a může trvat delší dobu. Zbývající čas je zobrazován \n"
-"na obrazovce, takže můžete zkusit odhadnout, zda si stihnete dát šálek "
-"kávy. :-)\n"
+"Pokud vyberete ze stromu balíček, objeví se v pravé části jeho popis.\n"
"\n"
-"Pokud se nachází mezi vybranými balíčky serverové programy, ať už vybrané\n"
+"!! Pokud se nachází mezi vybranými balíčky serverové programy, ať už "
+"vybrané\n"
"záměrně nebo jako součást skupiny, zobrazí se dotaz na to,\n"
"zda opravdu chcete tyto servery nainstalovat. V distribuci Mandrake Linux\n"
"jsou tyto servery spuštěny při startu systému. I když v době vydání "
"distribuce\n"
"nejsou známy žádné bezpečnostní problémy, mohou se vyskytnout později.\n"
-"Pokud nevíte, k čemu jsou určeny některé serverové služby, klikněte na \"Ne"
+"Pokud nevíte, k čemu jsou určeny některé serverové služby, klepněte na \"Ne"
"\".\n"
-"Kliknutím na \"Ano\" se dané služby nainstalují a automaticky spustí při "
-"startu!\n"
+"Klepnutím na \"Ano\" se dané služby nainstalují a automaticky spustí při "
+"startu !!\n"
"\n"
"Volba \"Automatické závislosti\" vypne varovné hlášení, které se objeví\n"
"vždy, když vyberete balíček, který má další závislosti a instalační program\n"
"musí vybrat další potřebné balíčky, aby instalace mohla proběhnout úspěšně.\n"
"\n"
"Malá ikonka diskety dole umožňuje nahrát již předem vybraný seznam balíčků.\n"
-"Po kliknutí na ikonu budete dotázáni na vložení diskety, která byla "
+"Po klepnutí na ikonu budete dotázáni na vložení diskety, která byla "
"vytvořena na\n"
"konci jiné instalace. Ve druhém tipu při posledním kroku najdete návod, jak "
"si\n"
-"tuto disketu vytvořit."
+"tuto disketu vytvořit. "
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"It is now time to specify which programs you wish to install on your\n"
"system. There are thousands of packages available for Mandrake Linux, and\n"
@@ -2844,16 +2823,15 @@ msgid ""
msgstr ""
"V této chvíli je možné vybrat, které programy chcete nainstalovat na váš "
"systém.\n"
-"Mandrake Linux obsahuje tisíce balíčků s programy a určitě nebudete\n"
-"znát a potřebovat všechny.\n"
-"\n"
-"Pokud instalujete standardně z CD-ROM, budete nejprve dotázáni na to,\n"
-"jaká CD máte (pouze Expertní režim). Označte ty CD, která máte a která \n"
-"chcete použít pro instalaci. Po výběru klikněte na tlačítko \"OK\" a budete\n"
-"pokračovat.\n"
+"Mandrake Linux obsahuje tisíce balíčků s programy a pro snadnější orientaci\n"
+"byly rozděleny do skupin, které sdružují podobné aplikace.\n"
"\n"
"Balíčky jsou rozděleny do skupin, které odpovídají tomu, jak je nejčastěji\n"
-"počítač používán. Skupiny samotné jsou umístěny do čtyř sekcí:\n"
+"počítač používán. Skupiny samotné jsou umístěny do čtyř sekcí. Výběr "
+"aplikací\n"
+"z těchto sekcí lze různě kombinovat, takže můžete mít celou instalovánu "
+"sekci\n"
+"\"Pracovní stanice\" a k ní nějaké aplikace ze sekce \"Vývoj\".\n"
"\n"
" * \"Pracovní stanice\": pokud plánujete používat počítač převážně na\n"
"běžnou práci, vyberte si z dalších skupin odpovídající balíčky.\n"
@@ -2892,7 +2870,7 @@ msgstr ""
"pro případ opravy nebo aktualizace existujícího systému."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
"knows if a selected package is located on another CD-ROM so it will eject\n"
@@ -2901,10 +2879,10 @@ msgstr ""
"Distribuce Mandrake Linux je složena z několika CD. Instalační program ví,\n"
"na kterém disku je umístěn jaký soubor a v případě potřeby vysune CD a "
"vyžádá\n"
-"si výměnu CD za jiné."
+"si výměnu CD za požadované."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Here are Listed the existing Linux partitions detected on your hard drive.\n"
"You can keep the choices made by the wizard, since they are good for most\n"
@@ -2936,9 +2914,18 @@ msgid ""
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc."
msgstr ""
+"Zde je vypsán seznam již existujících detekovaných oddílů na pevném disku.\n"
+"Můžete ponechat volby detekované průvodcem, protože ve většině případů\n"
+"vyhovují. Pokud chcete provést nějaké změny, musíte definovat aspoň "
+"kořenový\n"
+"oddíl (\"/\"). Velikost oddílů zvolte dostatečnou, jinak nebude možné "
+"nainstalovat\n"
+"dostatečné množství programů. Pokud chcete ukládat data na zvláštní oddíl,\n"
+"vytvořte také oddíl \"/home\".\n"
+"\n"
"Každý oddíl vypsaný níže má: \"Název\", \"Velikost\".\n"
"\n"
-"\"Název\" je složeno následovně: \"typ pevného disku\", \"číslo disku\",\n"
+"\"Název\" je složen následovně: \"typ pevného disku\", \"číslo disku\",\n"
"\"číslo oddílu\". (například \"hda1\").\n"
"\n"
"Pokud máte IDE disky, pak je \"typ pevného disku\" \"hd\", pokud máte SCSI,\n"
@@ -2959,7 +2946,7 @@ msgstr ""
"nejmenší SCSI ID\" atd."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"GNU/Linux is a multi-user system, meaning each user can have their own\n"
"preferences, their own files and so on. You can read the ``Starter Guide''\n"
@@ -3000,8 +2987,8 @@ msgid ""
"to use this feature?\" box."
msgstr ""
"GNU/Linux je víceuživatelský systém, což znamená, že každý uživatel může\n"
-"mít své vlastní nastavení, soubory atd. Více se dočtete v \"Příručce "
-"uživatele\".\n"
+"mít své vlastní nastavení, soubory atd. Více se dočtete v příručce \"Začínáme"
+"\".\n"
"Na rozdíl od uživatele root, který je správcem počítače, uživatelé, kteří "
"jsou\n"
"zde vytvořeni, nemají oprávnění měnit nic kromě svých vlastních souborů a\n"
@@ -3024,16 +3011,16 @@ msgstr ""
"doporučuje\n"
"ji nepodceňovat; koneckonců, jde o zabezpečení souborů tohoto uživatele.\n"
"\n"
-"Pokud kliknete na \"Přidat uživatele\", můžete přidávat uživatelů, kolik\n"
+"Pokud klepnete na \"Přidat uživatele\", můžete přidávat uživatelů, kolik\n"
"potřebujete, např. své přátele, účet pro otce či sestru. Pokud máte všechny\n"
-"uživatele vytvořeny, klikněte na tlačítko \"Hotovo\". \n"
+"uživatele vytvořeny, klepněte na tlačítko \"Hotovo\". \n"
"\n"
-"Kliknutím na tlačítko \"Rozšířené\" můžete pro nový účet změnit shell, "
+"Klepnutím na tlačítko \"Rozšířené\" můžete pro nový účet změnit shell, "
"který\n"
"bude uživatel používat (výchozí je bash)."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Before continuing, you should carefully read the terms of the license. It\n"
"covers the entire Mandrake Linux distribution. If you do agree with all the\n"
@@ -3042,9 +3029,9 @@ msgid ""
msgstr ""
"Předtím, než budete pokračovat, přečtěte si pozorně podmínky licence. Ty\n"
"se vztahují k celé distribuci Mandrake Linux a pokud s nimi nesouhlasíte,\n"
-"klikněte na tlačítko \"Odmítnout\". Instalace ihned skončí. Pokud chcete "
+"klepněte na tlačítko \"Odmítnout\". Instalace ihned skončí. Pokud chcete "
"pokračovat\n"
-"v instalaci, klikněte na tlačítko \"Potvrdit\"."
+"v instalaci, klepněte na tlačítko \"Přijmout\"."
#: ../../install2.pm:1
#, c-format
@@ -3129,7 +3116,7 @@ msgid "Yes"
msgstr "Ano"
#: ../../install_any.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"You have selected the following server(s): %s\n"
"\n"
@@ -3153,14 +3140,14 @@ msgstr ""
"Chcete opravdu nainstalovat tyto servery?\n"
#: ../../install_gtk.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "System configuration"
-msgstr "nastavení varování"
+msgstr "Konfigurace systému"
#: ../../install_gtk.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "System installation"
-msgstr "Instalace SILO"
+msgstr "Instalace systému"
#: ../../install_interactive.pm:1
#, c-format
@@ -3227,7 +3214,7 @@ msgid "Remove Windows(TM)"
msgstr "Odstranit Windows(TM)"
#: ../../install_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Nejsou zde žádné FAT oddíly, které by bylo možné změnit (nebo není dostatek "
@@ -3239,6 +3226,8 @@ msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Windows(TM)"
msgstr ""
+"Pro zachování integrity po provedené změně velikosti oddílu(ů) bude při\n"
+"dalším spuštění systému Windows provedena kontrola souborového systému."
#: ../../install_interactive.pm:1
#, c-format
@@ -3298,9 +3287,9 @@ msgstr ""
"program 'defrag'"
#: ../../install_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Computing the size of the Windows partition"
-msgstr "Použít volné místo na Windows oddílu"
+msgstr "Počítám volné místo na Windows oddílu"
#: ../../install_interactive.pm:1
#, c-format
@@ -3322,11 +3311,11 @@ msgid "Use the free space on the Windows partition"
msgstr "Použít volné místo na Windows oddílu"
#: ../../install_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "There is no FAT partition 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)"
+"Nejsou zde žádné FAT oddíly, které by bylo použít pro loopback (nebo není "
+"dostatek místa)"
#: ../../install_interactive.pm:1
#, c-format
@@ -3444,9 +3433,9 @@ msgstr ""
"v dané kapitole oficiální uživatelské příručky pro Mandrake Linux."
#: ../../install_messages.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "http://www.mandrakelinux.com/en/91errata.php3"
-msgstr "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakelinux.com/en/91errata.php3"
#: ../../install_messages.pm:1
#, c-format
@@ -3758,9 +3747,9 @@ msgid "Help"
msgstr "Nápověda"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "not configured"
-msgstr "překonfigurovat"
+msgstr "nanestaveno"
#: ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
#: ../../standalone/drakboot:1 ../../standalone/drakgw:1
@@ -3807,7 +3796,7 @@ msgstr "Odmítnout"
#: ../../standalone/drakautoinst:1
#, c-format
msgid "Accept"
-msgstr "Potvrdit"
+msgstr "Přijmout"
#: ../../install_steps_gtk.pm:1
#, c-format
@@ -3820,9 +3809,9 @@ msgid "%d packages"
msgstr "%d balíčků(y)"
#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "No details"
-msgstr "Detaily"
+msgstr "Bez detailů"
#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
@@ -3875,7 +3864,7 @@ msgstr "Uložit/Nahrát na/z disketu/y"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "<- Previous"
-msgstr "<- Předchozí"
+msgstr "<- Zpět"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#: ../../standalone/drakbackup:1
@@ -3975,7 +3964,7 @@ msgstr "Celková velikost: %d / %d MB"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Next ->"
-msgstr "Další ->"
+msgstr "Dále ->"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
@@ -4036,9 +4025,9 @@ msgid "Generate auto install floppy"
msgstr "Vytvořit disketu pro automatickou instalaci"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Reboot"
-msgstr "Kořenový(root)"
+msgstr "Reboot"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4103,7 +4092,7 @@ msgid "Do you want to use aboot?"
msgstr "Chcete použít aboot?"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4141,7 +4130,7 @@ msgid "Authentication Windows Domain"
msgstr "Doména Windows pro ověření"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4164,7 +4153,7 @@ msgstr ""
"Jestliže ještě není povolena síť, aplikace DrakX se pokusí připojit k doméně "
"po fázi nastavení sítě.\n"
"Pakliže toto nastavení z jakéhokoli důvodu selže, a ověření na PDC nebude "
-"pracovat správně, spusťte po naběhnutí systému 'smbpasswd -j DOMAIN -U USER%"
+"pracovat správně, spusťte po naběhnutí systému 'smbpasswd -j DOMAIN -U USER%%"
"PASSWORD' (použijte svou doménu Windows(TM) a uživatelské jméno a heslo "
"Správce domény).\n"
"Příkaz 'wbinfo -t' otestuje, zda-li vaše tajné informace pro ověření jsou "
@@ -4240,7 +4229,7 @@ msgstr "Hlavní(root) heslo"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
-msgstr ""
+msgstr "Nemáte nastaveno X. Opravdu je potřebujete?"
#: ../../install_steps_interactive.pm:1 ../../services.pm:1
#, c-format
@@ -4258,30 +4247,36 @@ msgstr "Služby"
msgid "System"
msgstr "Systém"
+#. -PO: example: lilo-graphic on /dev/hda1
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
+msgid "%s on %s"
+msgstr "%s na %s"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid "Bootloader"
msgstr "Zaváděcí program"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Boot"
-msgstr "Kořenový(root)"
+msgstr "Spuštění"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "disabled"
-msgstr "vypnout"
+msgstr "vypnuto"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "activated"
-msgstr "aktivovat nyní"
+msgstr "aktivováno"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Firewall"
-msgstr "Firewall/Router"
+msgstr "Firewall"
#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, c-format
@@ -4289,9 +4284,9 @@ msgid "Security"
msgstr "Bezpečnost"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Security Level"
-msgstr "Úroveň zabezpečení:"
+msgstr "Úroveň zabezpečení"
#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
#, c-format
@@ -4299,19 +4294,19 @@ msgid "Network"
msgstr "Síť"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Network & Internet"
-msgstr "Síťové rozhraní"
+msgstr "Síť & Internet"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Graphical interface"
-msgstr "Spouští se X"
+msgstr "Grafické rozhraní"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Hardware"
-msgstr "HardDrake"
+msgstr "Hardware"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4396,14 +4391,14 @@ msgid "Which is your timezone?"
msgstr "Jaké je vaše časové pásmo?"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Would you like to try again?"
-msgstr "Chtěli byste nastavit tiskárnu?"
+msgstr "Chcete to zkusit znovu?"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Unable to contact mirror %s"
-msgstr "Nelze provést fork: %s"
+msgstr "Nelze kontaktovat zrcadlo %s"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4422,7 +4417,7 @@ msgid ""
msgstr "Kontaktuji web Mandrake Linux pro získání seznamu dostupných zrcadel"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been updated after the distribution was released. They may\n"
@@ -4434,11 +4429,11 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
"Nyní máte možnost stáhnout aktualizované balíčky. Tyto balíčky byly\n"
-"uvolněny až po vydání distribuce. Mohou obsahovat\n"
-"bezpečnostní aktualizace nebo opravy chyb.\n"
+"uvolněny až po vydání distribuce. Mohou obsahovat bezpečnostní\n"
+"aktualizace nebo opravy chyb.\n"
"\n"
-"Chcete-li získat tyto balíčky, musíte mít k dispozici\n"
-"funkční připojení k Internetu.\n"
+"Chcete-li získat tyto balíčky, musíte mít k dispozici funkční připojení\n"
+"k Internetu.\n"
"\n"
"Chcete nainstalovat aktualizace?"
@@ -4693,16 +4688,21 @@ msgstr "Vyberte si typ vaší myši."
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Kryptovací klíč"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid "Upgrade %s"
-msgstr "Aktualizovat"
+msgstr "Aktualizace %s"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Is this an install or an upgrade?"
msgstr "Je to instalace nebo aktualizace?"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Install/Upgrade"
msgstr "Instalace/Aktualizace"
@@ -4815,9 +4815,9 @@ msgid "Advanced"
msgstr "Rozšíření"
#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Remove"
-msgstr "Odebrat seznam"
+msgstr "Odebrat"
#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
#, c-format
@@ -4942,14 +4942,14 @@ msgid "Thai keyboard"
msgstr "Thajské"
#: ../../keyboard.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Tamil (Typewriter-layout)"
-msgstr "Arménské (psací stroj)"
+msgstr "Tamilské (psací stroj)"
#: ../../keyboard.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Tamil (ISCII-layout)"
-msgstr "Tamilské (TSCII)"
+msgstr "Tamilské (ISCII)"
#: ../../keyboard.pm:1
#, c-format
@@ -5054,7 +5054,7 @@ msgstr "Makedonské"
#: ../../keyboard.pm:1
#, c-format
msgid "Malayalam"
-msgstr ""
+msgstr "Malayalam"
#: ../../keyboard.pm:1
#, c-format
@@ -5284,7 +5284,7 @@ msgstr "Ázerbajdžánské (latinka)"
#: ../../keyboard.pm:1
#, c-format
msgid "Arabic"
-msgstr ""
+msgstr "Arabské"
#: ../../keyboard.pm:1
#, c-format
@@ -5332,9 +5332,9 @@ msgid "South Africa"
msgstr "Jižní Afrika"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Serbia"
-msgstr "Sériová"
+msgstr "Srbsko"
#: ../../lang.pm:1
#, c-format
@@ -5352,9 +5352,9 @@ msgid "Samoa"
msgstr "Samoa"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Wallis and Futuna"
-msgstr "Wallis a Futuna Islands"
+msgstr "Wallis a Futuna"
#: ../../lang.pm:1
#, c-format
@@ -5362,7 +5362,7 @@ msgid "Vanuatu"
msgstr "Vanuatu"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Vietnam"
msgstr "Vietnam"
@@ -5387,9 +5387,9 @@ msgid "Saint Vincent and the Grenadines"
msgstr "Saint Vincent a Grenadiny"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Vatican"
-msgstr "Litevské"
+msgstr "Vatikán"
#: ../../lang.pm:1
#, c-format
@@ -5419,12 +5419,12 @@ msgstr "Ukrajina"
#: ../../lang.pm:1
#, c-format
msgid "Tanzania"
-msgstr ""
+msgstr "Tanzánie"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Taiwan"
-msgstr "Thajsko"
+msgstr "Taiwan"
#: ../../lang.pm:1
#, c-format
@@ -5502,9 +5502,9 @@ msgid "Swaziland"
msgstr "Svazijsko"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Syria"
-msgstr "Surinam"
+msgstr "Sýrie"
#: ../../lang.pm:1
#, c-format
@@ -5592,9 +5592,9 @@ msgid "Rwanda"
msgstr "Rwanda"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Russia"
-msgstr "Ruské"
+msgstr "Rusko"
#: ../../lang.pm:1
#, c-format
@@ -5627,9 +5627,9 @@ msgid "Portugal"
msgstr "Portugalsko"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Palestine"
-msgstr "Výběr cesty"
+msgstr "Palestina"
#: ../../lang.pm:1
#, c-format
@@ -5837,9 +5837,9 @@ msgid "Morocco"
msgstr "Maroko"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Libya"
-msgstr "Libérie"
+msgstr "Líbye"
#: ../../lang.pm:1
#, c-format
@@ -5889,7 +5889,7 @@ msgstr "Libanon"
#: ../../lang.pm:1
#, c-format
msgid "Laos"
-msgstr ""
+msgstr "Laos"
#: ../../lang.pm:1
#, c-format
@@ -5907,14 +5907,14 @@ msgid "Kuwait"
msgstr "Kuvajt"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Korea"
-msgstr "Více"
+msgstr "Korea"
#: ../../lang.pm:1
#, c-format
msgid "Korea (North)"
-msgstr ""
+msgstr "Korea (Severní)"
#: ../../lang.pm:1
#, c-format
@@ -5952,7 +5952,7 @@ msgid "Japan"
msgstr "Japonsko"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Jordan"
msgstr "Jordán"
@@ -5967,9 +5967,9 @@ msgid "Iceland"
msgstr "Island"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Iran"
-msgstr "Irák"
+msgstr "Irán"
#: ../../lang.pm:1
#, c-format
@@ -6022,9 +6022,9 @@ msgid "Honduras"
msgstr "Honduras"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Heard and McDonald Islands"
-msgstr "Heard Island a McDonald Islands"
+msgstr "Heard a McDonaldovy ostrovy"
#: ../../lang.pm:1
#, c-format
@@ -6052,9 +6052,9 @@ msgid "Guatemala"
msgstr "Guatemala"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "South Georgia and the South Sandwich Islands"
-msgstr "Jižní Georgie a ostrov South Sandwich"
+msgstr "Jižní Georgie a ostrovy South Sandwich"
#: ../../lang.pm:1
#, c-format
@@ -6259,7 +6259,7 @@ msgstr "Švýcarsko"
#: ../../lang.pm:1
#, c-format
msgid "Congo (Brazzaville)"
-msgstr ""
+msgstr "Kongo (Brazzaville)"
#: ../../lang.pm:1
#, c-format
@@ -6269,7 +6269,7 @@ msgstr "Centrální africká republika"
#: ../../lang.pm:1
#, c-format
msgid "Congo (Kinshasa)"
-msgstr ""
+msgstr "Kongo (Kinshasa)"
#: ../../lang.pm:1
#, c-format
@@ -6631,12 +6631,12 @@ msgstr "Přepnutí mezi abecedním a skupinovým řazením"
#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Collapse Tree"
-msgstr "Sbal větev"
+msgstr "Sbalit větev"
#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Expand Tree"
-msgstr "Rozbal větev"
+msgstr "Rozbalit větev"
#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
#, c-format
@@ -6869,13 +6869,13 @@ msgstr ""
"v malých sítích, pro složitější sítě je zapotřebí složitější protokoly."
#: ../../services.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Assign raw devices to block devices (such as hard drive\n"
"partitions), for the use of applications such as Oracle or DVD players"
msgstr ""
"Přiřazuje přímá zařízení blokovým (například diskové oddíly)\n"
-"pro aplikace jako je Oracle"
+"pro aplikace jako je Oracle nebo DVD přehrávač"
#: ../../services.pm:1
#, c-format
@@ -7134,6 +7134,9 @@ msgid ""
"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
msgstr ""
+"\n"
+"Použití: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
#: ../../standalone.pm:1
#, c-format
@@ -7142,6 +7145,9 @@ msgid ""
" XFdrake [--noauto] monitor\n"
" XFdrake resolution"
msgstr ""
+" [všechno]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake resolution"
#: ../../standalone.pm:1
#, c-format
@@ -7149,6 +7155,8 @@ msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
msgstr ""
+"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
+"usbtable] [--dynamic=dev]"
#: ../../standalone.pm:1
#, c-format
@@ -7161,11 +7169,18 @@ msgid ""
"description window\n"
" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
+"[VOLBY]...\n"
+" -no-confirmation nepotrvzuje první otázku v režimu MandrakeUpdate\n"
+" --no-verify-rpm neprovádí verikaci podpisu u balíčků --changelog-"
+"first v okně s popisem nejdříve zobrazí changelog před seznamem "
+"souborů\n"
+" --merge-all-rpmnew navrhne spojit všechny nalezené soubory .rpmnew/."
+"rpmsave"
#: ../../standalone.pm:1
#, c-format
msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr ""
+msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
#: ../../standalone.pm:1
#, c-format
@@ -7180,16 +7195,25 @@ msgid ""
"--status : returns 1 if connected 0 otherwise, then exit.\n"
"--quiet : don't be interactive. To be used with (dis)connect."
msgstr ""
+"[VOLBY]\n"
+"Síť & připojení k Internetu a monitorování aplikací\n"
+"\n"
+"--defaultintf interface: zobrazí vždy toto rozhraní\n"
+"--connect : pokud není připojeno, provede připojení k internetu\n"
+"--disconnect : pokud je připojeno, provede odpojení od internetu\n"
+"--force : používá se s (při)odpojením : vynutí (při)odpojení.\n"
+"--status : vrátí 1 pokud je připojeno, jinak vrací 0 a skončí.\n"
+"--quiet : tichý režim. Používá se při (při)odpojování."
#: ../../standalone.pm:1
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr ""
+msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
#: ../../standalone.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "[keyboard]"
-msgstr "Klávesnice"
+msgstr "[klávesnice]"
#: ../../standalone.pm:1
#, c-format
@@ -7208,6 +7232,20 @@ msgid ""
"--delclient : delete a client machine from MTS (requires MAC address, "
"IP, nbi image name)"
msgstr ""
+"[VOLBY]\n"
+"Nastavení pro Mandrake Terminal Server (MTS)\n"
+"--enable : povolí MTS\n"
+"--disable : zakáže MTS\n"
+"--start : spustí MTS\n"
+"--stop : ukončí MTS\n"
+"--adduser : přidá existujícího uživatele do MTS (vyžaduje jméno "
+"uživatele)\n"
+"--deluser : odebere existujícího uživatele z MTS (vyžaduje jméno "
+"uživatele)\n"
+"--addclient : přidá klienta do MTS (vyžaduje MAC adresu, IP, název nbi "
+"obrazu)\n"
+"--delclient : odebere klienta z MTS (vyžaduje MAC address, IP, název "
+"nbi obrazu)"
#: ../../standalone.pm:1
#, c-format
@@ -7225,6 +7263,18 @@ msgid ""
" : name_of_application like so for staroffice \n"
" : and gs for ghostscript for only this one."
msgstr ""
+"Import fontů a monitoring aplikací\n"
+"--windows_import : provede import ze všech dostupných oddílů s Windows.\n"
+"--xls_fonts : zobrazí všechny fonty, které již z xls existují\n"
+"--strong : silná verifikace fontů.\n"
+"--install : akceptuje libovolný font z libovolného adresáře.\n"
+"--uninstall : odinstaluje libovolný font nebo libovolný adresář s "
+"fonty.\n"
+"--replace : nahradí již existující fonty\n"
+"--application : 0 žádná aplikace.\n"
+" : 1 všechny dostupné podporované aplikace.\n"
+" : nazev_aplikace jako např. so pro staroffice \n"
+" : a gs pro ghostscript."
#: ../../standalone.pm:1
#, c-format
@@ -7236,6 +7286,12 @@ msgid ""
" --report - program should be one of mandrake tools\n"
" --incident - program should be one of mandrake tools"
msgstr ""
+"[VOLBY] [NAZEV_PROGRAMU]\n"
+"\n"
+"[VOLBY]:\n"
+" --help - vypíše tuto nápovědu.\n"
+" --report - program může být libovolný mandrake nástroj\n"
+" --incident - program může být libovolný mandrake nástroj"
#: ../../standalone.pm:1
#, c-format
@@ -7252,9 +7308,20 @@ msgid ""
"--help : show this message.\n"
"--version : show version number.\n"
msgstr ""
+"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
+"Záloha a obnova aplikace\n"
+"\n"
+"--default : uloží výchozí adresáře.\n"
+"--debug : zobrazí všechny ladící hlášky.\n"
+"--show-conf : vypíše seznam souborů a adresářů pro zálohu.\n"
+"--config-info : vysvětlí volby pro konfigurační soubory (pro non-X "
+"uživatele).\n"
+"--daemon : use daemon configuration. \n"
+"--help : zobrazí tuto zprávu.\n"
+"--version : zobrazí číslo verze.\n"
#: ../../standalone.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"This program is free software; you can redistribute it and/or modify\n"
"it under the terms of the GNU General Public License as published by\n"
@@ -7270,17 +7337,17 @@ msgid ""
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
msgstr ""
-" Tento program je svobodný software; můžete ho šířit a/nebo modifikovat\n"
-" podle specifikace GNU General Public Licence, která byla publikována\n"
-" Free Software Foundation; buď verze 2, nebo (podle volby) pozdější verze.\n"
+"Tento program je svobodný software; můžete ho šířit a/nebo modifikovat\n"
+"podle specifikace GNU General Public Licence, která byla publikována\n"
+"Free Software Foundation; buď verze 2, nebo (podle volby) pozdější verze.\n"
"\n"
-" Tento program je distribuován s nadějí, že bude užitečný,\n"
-" ale BEZ JAKÝCHKOLIV ZÁRUK; BEZ NÁROKU NA PROFIT. Více detailů naleznete\n"
-" v licenci GNU General Public Licence.\n"
+"Tento program je distribuován s nadějí, že bude užitečný,\n"
+"ale BEZ JAKÝCHKOLIV ZÁRUK; BEZ NÁROKU NA PROFIT. Více detailů naleznete\n"
+"v licenci GNU General Public Licence.\n"
"\n"
-" Kopii GNU General Public Licence můžete obdržet buď s tímto programem\n"
-" nebo si o ní můžete napsat na adresu Free Software Foundation, Inc.,\n"
-" 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
+"Kopii GNU General Public Licence můžete obdržet buď s tímto programem\n"
+"nebo si o ní můžete napsat na adresu Free Software Foundation, Inc.,\n"
+"59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
#: ../../steps.pm:1
#, c-format
@@ -7288,7 +7355,7 @@ msgid "Exit install"
msgstr "Ukončení instalace"
#: ../../steps.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Install updates"
msgstr "Aktualizace systému"
@@ -7318,9 +7385,9 @@ msgid "Add a user"
msgstr "Přidání uživatele"
#: ../../steps.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Root password"
-msgstr "Bez hesla"
+msgstr "Hlavní(root) heslo"
#: ../../steps.pm:1
#, c-format
@@ -7338,9 +7405,9 @@ msgid "Format partitions"
msgstr "Formátování oddílů"
#: ../../steps.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Partitioning"
-msgstr "Tisk"
+msgstr "Rozdělení disku"
#: ../../steps.pm:1
#, c-format
@@ -7365,7 +7432,7 @@ msgstr "Nastavení myši"
#: ../../steps.pm:1
#, c-format
msgid "License"
-msgstr ""
+msgstr "Licence"
#: ../../steps.pm:1
#, c-format
@@ -7375,7 +7442,7 @@ msgstr "Výběr jazyka"
#: ../../ugtk2.pm:1
#, c-format
msgid "utopia 25"
-msgstr ""
+msgstr "utopia 25"
#: ../../ugtk2.pm:1 ../../ugtk.pm:1 ../../network/netconnect.pm:1
#: ../../standalone/drakTermServ:1 ../../standalone/drakbackup:1
@@ -7481,7 +7548,7 @@ msgid "Select the memory size of your graphics card"
msgstr "Kolik paměti je na vaší grafické kartě ?"
#: ../../Xconfig/card.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Your system supports multiple head configuration.\n"
"What do you want to do?"
@@ -7495,7 +7562,7 @@ msgid "Multi-head configuration"
msgstr "Konfigurace dvou monitorů"
#: ../../Xconfig/card.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Choose an X server"
msgstr "Zvolte X server"
@@ -7685,14 +7752,14 @@ msgid "256 colors (8 bits)"
msgstr "256 barev (8 bitů)"
#: ../../Xconfig/test.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Is this the correct setting?"
-msgstr "Je to správně?"
+msgstr "Je toto správné nastavení?"
#: ../../Xconfig/test.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Leaving in %d seconds"
-msgstr "%d sekund"
+msgstr "Test skončí za %d sekund"
#: ../../Xconfig/test.pm:1
#, c-format
@@ -7701,6 +7768,9 @@ msgid ""
"%s\n"
"Try to change some parameters"
msgstr ""
+"Vyskytla se chyba:\n"
+"%s\n"
+"Zkuste změnit některé parametry"
#: ../../Xconfig/test.pm:1
#, c-format
@@ -7900,7 +7970,7 @@ msgstr "Změnit typ"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Use ``Unmount'' first"
-msgstr "Nejprve použijte ``Odpojit''"
+msgstr "Nejprve použijte ''Odpojit''"
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
@@ -7923,9 +7993,9 @@ msgid "Empty"
msgstr "Prázdný"
#: ../../diskdrake/hd_gtk.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Windows"
-msgstr "Doména Windows"
+msgstr "Windows"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
@@ -7963,17 +8033,16 @@ msgid "Please click on a partition"
msgstr "Prosím klepněte na oddíl"
#: ../../diskdrake/hd_gtk.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"You have one big MicroSoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
-"Máte jeden veliký oddíl FAT\n"
-"(většinou používaný Microsoft DOS/Windows).\n"
+"Máte jeden veliký oddíl\n"
+"(většinou používaný Microsoft 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\")"
+"(klepněte na něj a potom na \"Změnit velikost\")"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
@@ -8094,7 +8163,7 @@ msgstr ""
"dalšího systému.\n"
#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -8294,7 +8363,7 @@ msgid "File already exists. Use it?"
msgstr "Soubor už existuje. Mám ho použít?"
#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr "Soubor už je používán jiným loopbackem, zvolte si jiný"
@@ -8433,9 +8502,9 @@ msgid "Where do you want to mount device %s?"
msgstr "Kam chcete připojit zařízení %s?"
#: ../../diskdrake/interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Where do you want to mount the loopback file %s?"
-msgstr "Kam chcete připojit loopback %s?"
+msgstr "Kam chcete připojit loopback soubor %s?"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -8724,92 +8793,92 @@ msgstr "Nelze se přihlásit pod uživatelským jménem %s (chybné heslo?)"
#: ../../harddrake/data.pm:1
#, c-format
msgid "cpu # "
-msgstr ""
+msgstr "cpu #"
#: ../../harddrake/data.pm:1
#, c-format
msgid "SMBus controllers"
-msgstr ""
+msgstr "SMBus kontrolér"
#: ../../harddrake/data.pm:1
#, c-format
msgid "USB controllers"
-msgstr ""
+msgstr "USB kontrolér"
#: ../../harddrake/data.pm:1
#, c-format
msgid "SCSI controllers"
-msgstr ""
+msgstr "SCSI kontrolér"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Firewire controllers"
-msgstr ""
+msgstr "Firewire kontrolery"
#: ../../harddrake/data.pm:1
#, c-format
msgid "(E)IDE/ATA controllers"
-msgstr ""
+msgstr "(E)IDE/ATA kontrolér"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Joystick"
-msgstr ""
+msgstr "Joystick"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Scanner"
-msgstr "Zvolte si skener"
+msgstr "Skener"
#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Unknown/Others"
-msgstr "Neznámá|Obecná"
+msgstr "Neznámý/Jiný"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Bridges and system controllers"
-msgstr ""
+msgstr "Systémové kontroléry"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Modem"
-msgstr "Model"
+msgstr "Modem"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Ethernetcard"
msgstr "Ethernetová karta"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Processors"
-msgstr ""
+msgstr "Procesory"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Webcam"
-msgstr ""
+msgstr "Webová kamera"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Soundcard"
msgstr "Zvuková karta"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Other MultiMedia devices"
-msgstr "Další média"
+msgstr "Další multimedální zařízení"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Tvcard"
msgstr "TV karta"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Videocard"
-msgstr "Textový režim"
+msgstr "Grafická karta"
#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
#, c-format
@@ -8819,37 +8888,37 @@ msgstr "Páska"
#: ../../harddrake/data.pm:1
#, c-format
msgid "DVD-ROM"
-msgstr ""
+msgstr "DVD-ROM"
#: ../../harddrake/data.pm:1
#, c-format
msgid "CD/DVD burners"
-msgstr ""
+msgstr "CD/DVD vypalovačky"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "CDROM"
-msgstr "na CDROM"
+msgstr "CDROM"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Disk"
-msgstr "Dánské"
+msgstr "Disk"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Zip"
-msgstr ""
+msgstr "Zip"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Floppy"
-msgstr "Spouštěcí disketa"
+msgstr "Disketa"
#: ../../harddrake/sound.pm:1
#, c-format
msgid "Let me pick any driver"
-msgstr ""
+msgstr "Umožnit výběr ovladače"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -8865,11 +8934,15 @@ msgid ""
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
+"Pokud skutečně víte, který ovladač je ten správný pro vaši kartu,\n"
+"můžete ho vybrat se seznamu.\n"
+"\n"
+"Aktuální ovladač pro vaši zvukovou kartu \"%s\" je \"%s\"."
#: ../../harddrake/sound.pm:1
#, c-format
msgid "Choosing an arbitratry driver"
-msgstr ""
+msgstr "Výběr libovolného ovladače"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -8894,16 +8967,36 @@ msgid ""
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
+"Klasický postup při řešení problémů se zvukem je pomocí těchto příkazů:\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | fgrep AUDIO\" vám řekne, jaký ovladač je výchozí pro\n"
+"danou zvukovou kartu\n"
+"\n"
+"- \"grep sound-slot /etc/modules.conf\" vám řekne, který ovladač se nyní\n"
+"používá\n"
+"\n"
+"- \"/sbin/lsmod\" provede kontrolu toho, zda modul (ovldač) je nahrán nebo "
+"ne\n"
+"\n"
+"- \"/sbin/chkconfig --list sound\" a \"/sbin/chkconfig --list alsa\" vám "
+"sdělí\n"
+"zda je pro initlevel nastaveny služby alsa a sound\n"
+"\n"
+"- \"aumix -q\" vám řekne, zda je zvuk ztlumen nebo ne\n"
+"\n"
+"- \"/sbin/fuser -v /dev/dsp\" vám řekne, který program používá zvukovou "
+"kartu.\n"
#: ../../harddrake/sound.pm:1
#, c-format
msgid "Sound trouble shooting"
-msgstr ""
+msgstr "Řešení problémů se zvukem"
#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "Pro vaši zvukovou kartu (%s) není žádný známý ovladač"
+msgstr "Chyba: Ovladač \"%s\" pro vaši zvukovou kartu není na seznamu"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -8921,18 +9014,18 @@ msgid "No known driver"
msgstr "Není rozpoznán žádný ovladač"
#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
-"Pro vaši zvukovou kartu (%s), která nyní používá ovladač \"%s\", není žádný "
-"známý OSS/ALSA alternativní ovladač."
+"Pro vaši zvukovou kartu (%s) není žádný vhodný volně použitelný ovladač, ale "
+"existuje alternativní proprietární ovladač na \"%s\"."
#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "No open source driver"
-msgstr "Není rozpoznán žádný ovladač"
+msgstr "Není dostupný žádný open source ovladač"
#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
#, c-format
@@ -8957,7 +9050,7 @@ msgstr ""
#: ../../harddrake/sound.pm:1
#, c-format
msgid "Trouble shooting"
-msgstr ""
+msgstr "Řešení problémů"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -8978,9 +9071,9 @@ msgid ""
"- the new ALSA api that provides many enhanced features but requires using "
"the ALSA library.\n"
msgstr ""
-"OSS (Open Source Sound) bylo první API pro zvuk. Nebo to API nezávislé na OS "
+"OSS (Open Source Sound) bylo první API pro zvuk. Není to API nezávislé na OS "
"(je dostupné ve více unixových systémech), ale má pouze základní funkce a "
-"omezení API.\n"
+"omezené API.\n"
"A co více, všechny OSS ovladače \"vynalézají znovu kolo\".\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) je modulární architektura, která "
@@ -9103,9 +9196,9 @@ msgid "Auto-detect"
msgstr "Autodetekce"
#: ../../interactive/newt.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Do"
-msgstr "Dolů"
+msgstr "Provést"
#: ../../interactive/stdio.pm:1
#, c-format
@@ -9160,7 +9253,7 @@ msgstr " zadejte `void` pokud chcete prázdný vstup"
#: ../../interactive/stdio.pm:1
#, c-format
msgid "Do you want to click on this button?"
-msgstr "Chcete kliknout na toto tlačítko? "
+msgstr "Chcete klepnout na toto tlačítko? "
#: ../../interactive/stdio.pm:1
#, c-format
@@ -9321,6 +9414,10 @@ msgid ""
"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
+"Potřebujete microkód pro alcatel.\n"
+"Stáhněte jej z\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"a zkopírujte soubor mgmt.o do /usr/share/speedtouch"
#: ../../network/adsl.pm:1
#, c-format
@@ -9341,7 +9438,7 @@ msgstr "Připojení k Internetu"
#: ../../network/adsl.pm:1
#, c-format
msgid "Sagem (using pppoa) usb"
-msgstr ""
+msgstr "Sagem (pomocí pppoa) usb"
#: ../../network/adsl.pm:1
#, c-format
@@ -9456,7 +9553,7 @@ msgstr "Webový server"
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Zeroconf host name must not contain a ."
-msgstr ""
+msgstr "Název počítače pro Zeroconf nemůže obsahovat \"tečku\""
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
@@ -9464,9 +9561,9 @@ msgid "Host name"
msgstr "Název počítače"
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Zeroconf Host name"
-msgstr "Název počítače"
+msgstr "Název počítače pro Zeroconf"
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
@@ -9476,6 +9573,10 @@ msgid ""
"Enter a Zeroconf host name without any dot if you don't\n"
"want to use the default host name."
msgstr ""
+"\n"
+"\n"
+"Pokud nechcete použít výchozí zvolený název,\n"
+"zadejte název počítače pro Zeroconf bez teček."
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
@@ -9484,11 +9585,6 @@ msgstr "Nastavuji síť"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "nebyla nalezena síťová karta"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
@@ -9536,7 +9632,7 @@ msgstr ""
"následujícího seznamu PCI karet."
#: ../../network/isdn.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Which of the following is your ISDN card?"
msgstr "Kterou z těchto ISDN karet máte?"
@@ -9615,7 +9711,7 @@ msgstr ""
" žádný D-kanál (leased lines)"
#: ../../network/isdn.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "European protocol"
msgstr "Evropský protokol"
@@ -9687,25 +9783,27 @@ msgstr ""
"Doporučujeme vybrat si snazší novou konfiguraci.\n"
#: ../../network/modem.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Do nothing"
-msgstr "neshodných"
+msgstr "Nedělat nic"
#: ../../network/modem.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Install rpm"
-msgstr "Instalovat"
+msgstr "Instalovat rpm"
#: ../../network/modem.pm:1
#, c-format
msgid ""
"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
+"byl detekován win modem založený na \"%s\", chcete nainstalovat potřebný "
+"software ?"
#: ../../network/modem.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Title"
-msgstr "Tabulka"
+msgstr "Název"
#: ../../network/modem.pm:1
#, c-format
@@ -9713,6 +9811,8 @@ msgid ""
"Your modem isn't supported by the system.\n"
"Take a look at http://www.linmodems.org"
msgstr ""
+"Váš modem není systémem podporován.\n"
+"Podívejte se na stránky http://www.linmodems.org"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
@@ -9822,9 +9922,9 @@ msgstr ""
"%s"
#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Balíček %s musí být nainstalován. Chcete ho nainstalovat?"
+msgstr "Je potřeba restartovat síť. Chcete provést restart ?"
#: ../../network/netconnect.pm:1
#, c-format
@@ -9878,9 +9978,9 @@ msgid "Cable connection"
msgstr "Kabelové připojení"
#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "detected"
-msgstr "detekováno %s"
+msgstr "detekováno"
#: ../../network/netconnect.pm:1
#, c-format
@@ -9898,9 +9998,9 @@ msgid "ISDN connection"
msgstr "ISDN připojení"
#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Winmodem connection"
-msgstr "Modemové připojení"
+msgstr "Připojení přes winmodem"
#: ../../network/netconnect.pm:1
#, c-format
@@ -9955,7 +10055,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
"Protože provádíte instalaci po síti, je již síť nastavena.\n"
-"Klikněte na Ok pro zachování nastavení nebo klikněte na Zrušit pro nové "
+"Klepněte na Ok pro zachování nastavení nebo klepněte na Zrušit pro nové "
"nastavení připojení Internetu a k síti.\n"
#: ../../network/netconnect.pm:1
@@ -10107,6 +10207,8 @@ msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
"enough '0' (zeroes)."
msgstr ""
+"Intenzita má povolené přípony k, M nebo G (např. \"11M\" nebo 11M) nebo "
+"přidejt dostatečný počet '0' (nul)."
#: ../../network/network.pm:1
#, c-format
@@ -10114,6 +10216,8 @@ msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
"frequency), or add enough '0' (zeroes)."
msgstr ""
+"Frekvence má povolené přípony k, M nebo G (například \"2,46G\" pro frekvenci "
+"2,46 GHz) nebo přidejte dostatek '0' (nul)."
#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
#, c-format
@@ -10126,14 +10230,14 @@ msgid "Start at boot"
msgstr "Spustit při startu"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Assign host name from DHCP address"
-msgstr "Zadejte prosím název počítače nebo IP."
+msgstr "Přiřadit název počítače ze získané DHCP adresy"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Network Hotplugging"
-msgstr "Nastavení sítě"
+msgstr "Rychlé připojení do sítě"
#: ../../network/network.pm:1
#, c-format
@@ -10141,9 +10245,9 @@ msgid "Track network card id (useful for laptops)"
msgstr "Sledovat id síťové karty (užitečné u notebooků)"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "DHCP host name"
-msgstr "Název počítače"
+msgstr "Název počítače z DHCP"
#: ../../network/network.pm:1 ../../standalone/drakconnect:1
#: ../../standalone/drakgw:1
@@ -10158,9 +10262,9 @@ msgid "IP address"
msgstr "IP adresa"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "(bootp/dhcp/zeroconf)"
-msgstr "(bootp/dhcp)"
+msgstr "(bootp/dhcp/zeroconf)"
#: ../../network/network.pm:1
#, c-format
@@ -10197,7 +10301,7 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
"VAROVÁNÍ: Toto zařízení již bylo nastaveno pro připojení k Internetu.\n"
-"Klikněte na Ok pro zachování nastavení.\n"
+"Klepněte na Ok pro zachování nastavení.\n"
"Modifikace následujících položek přepíše toto nastavení."
#: ../../network/shorewall.pm:1
@@ -10305,7 +10409,7 @@ msgid "Connection Configuration"
msgstr "Nastavení připojení"
#: ../../network/tools.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The system doesn't seem to be connected to the Internet.\n"
"Try to reconfigure your connection."
@@ -10314,12 +10418,12 @@ msgstr ""
"Pokuste se překonfigurovat dané připojení."
#: ../../network/tools.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr "Z bezpečnostních důvodů bude spojení ukončeno."
#: ../../network/tools.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "The system is now connected to the Internet."
msgstr "Počítač je nyní připojen k internetu"
@@ -10339,7 +10443,7 @@ msgid "Internet configuration"
msgstr "Nastavení Internetu"
#: ../../partition_table/raw.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -10348,7 +10452,7 @@ msgid ""
msgstr ""
"Něco špatného se stalo s pevným diskem. \n"
"Test na integritu dat selhal. \n"
-"To znamená, že zápis na tento disk může skončit nepředvídaně"
+"To znamená, že zápis na tento disk může skončit nepředvídaně a poškodit data."
#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
#, c-format
@@ -10426,29 +10530,29 @@ msgid "Unknown model"
msgstr "Neznámý model"
#: ../../printer/main.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "%s (Port %s)"
-msgstr "Port"
+msgstr "%s (Port %s)"
#: ../../printer/main.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Host %s"
-msgstr "Název počítače"
+msgstr "Počítač %s"
#: ../../printer/main.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Network %s"
-msgstr "Síť"
+msgstr "Síť %s"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Interface \"%s\""
-msgstr "Rozhraní %s"
+msgstr "Rozhraní \"%s\""
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Local network(s)"
-msgstr "Adresa lokální sítě"
+msgstr "Lokální síť(ě)"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
@@ -10501,24 +10605,24 @@ msgid ", multi-function device on USB"
msgstr ", multifunkční zařízení na USB"
#: ../../printer/main.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ", multi-function device on parallel port \\#%s"
-msgstr ", multifunkční na paralelním portu \\/*%s"
+msgstr ", multifunkční zařízení na paralelním portu \\#%s"
#: ../../printer/main.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ", USB printer"
-msgstr ", USB tiskárna \\/*%s"
+msgstr ", USB tiskárna"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ", USB printer \\#%s"
-msgstr ", USB tiskárna \\/*%s"
+msgstr ", USB tiskárna \\#%s"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid " on parallel port \\#%s"
-msgstr " na paralelním portu \\/*%s"
+msgstr " na paralelním portu \\#%s"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
@@ -10596,7 +10700,7 @@ msgid "Remove printer"
msgstr "Odebrat tiskárnu"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Learn how to use this printer"
msgstr "Nápověda pro tisk na této tiskárně"
@@ -10747,9 +10851,9 @@ msgid "Change the printing system"
msgstr "Změna tiskového systému"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Printer sharing"
-msgstr "Sdílení souborů"
+msgstr "Sdílení tiskárny"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10762,9 +10866,9 @@ msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Obnovit seznam tiskáren (pro získání všech vzdálených CUPS tiskáren)"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Display all available remote CUPS printers"
-msgstr "Obnovit seznam tiskáren (pro získání všech vzdálených CUPS tiskáren)"
+msgstr "Zobrazit seznam všech vzdálených CUPS tiskáren"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10773,24 +10877,11 @@ msgid ""
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-"Jsou nastaveny následující tiskárny. Dvojitým kliknutím na každou z nich je "
+"Jsou nastaveny následující tiskárny. Dvojitým klepnutím na každou z nich je "
"možné je modifikovat, nastavit jako výchozí nebo o nich získat informace."
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"Jsou nastaveny následující tiskárny. Dvojitým kliknutím na každou z nich je "
-"možné je modifikovat, nastavit jako výchozí, získat o nich informace nebo je "
-"nastavit na vzdáleném CUPS serveru pro využití v aplikaci Star Office/"
-"OpenOffice.org/GIMP."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "Tiskový systém: "
@@ -10805,9 +10896,9 @@ msgid "Installing Foomatic..."
msgstr "Instaluji Foomatic ..."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Failed to configure printer \"%s\"!"
-msgstr "Nastavuji tiskárnu \"%s\"..."
+msgstr "Nastavení tiskárny \"%s\" selhalo!"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10830,19 +10921,19 @@ msgid "Select Printer Spooler"
msgstr "Zvolte tiskový systém pro tiskárnu"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Setting Default Printer..."
-msgstr "Výchozí tiskárna"
+msgstr "Nastavuji výchozí tiskárnu..."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Installing %s ..."
-msgstr "Instaluji balíčky..."
+msgstr "Instaluji %s ..."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Removing %s ..."
-msgstr "Odstraňuji %s"
+msgstr "Odstraňuji %s ..."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11032,7 +11123,7 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
"Tiskárna s názvem \"%s\" již na straně %s existuje.\n"
-"Klikněte na \"Přenést\" pro přepsání.\n"
+"Klepněte na \"Přenést\" pro přepsání.\n"
"Také můžete napsat nový název nebo ji přeskočit."
#: ../../printer/printerdrake.pm:1
@@ -11221,7 +11312,7 @@ msgstr ""
"Lze také použít grafické rozhraní \"xpdq\" pro nastavení možností a ke "
"správě tiskových úloh.\n"
"Pokud používáte grafické prostředí KDE, máte na pracovní ploše ikonu "
-"pojmenovanou \"STOP Printer!\", který po kliknutí ihned zastaví všechny "
+"pojmenovanou \"STOP Printer!\", který po klepnutí ihned zastaví všechny "
"tiskové úlohy. To je vhodné třeba pro případy uvíznutí papíru.\n"
#: ../../printer/printerdrake.pm:1
@@ -11416,6 +11507,11 @@ msgstr "Hodnota %s musí být celé číslo!"
#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Printer default settings"
+msgstr "Výchozí nastavení tiskárny"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
"Printer default settings\n"
"\n"
@@ -11492,7 +11588,7 @@ msgid ""
msgstr ""
"Aby bylo možné při tomto nastavení tisknout na inkoustových tiskárnách od "
"firmy Lexmark, je potřeba mít tiskový ovladač poskytovaný společností "
-"Lexmark (http://www.lexmark.com/). Klikněte na odkaz \"Drivers\", vyberte "
+"Lexmark (http://www.lexmark.com/). Klepněte na odkaz \"Drivers\", vyberte "
"váš model tiskárny, a poté zvolte Linux jako operační systém. Ovladače jsou "
"v RPM balíčcích nebo skripty shellu s interaktivní grafickou instalací. Tu "
"ale k nastavení vašeho systému nepotřebujete. Ukončete instalační program "
@@ -11549,7 +11645,7 @@ msgstr ""
"(podívejte se do manuálu)"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"\n"
@@ -11561,7 +11657,7 @@ msgstr ""
"\n"
"Zkontrolujte prosím, zda PrinterDrake provedl automatickou detekci modelu "
"správně. Pokud je vyznačen nesprávný model, můžete ho změnit výběrem ze "
-"seznamu nebo zvolte \"Raw printer\"."
+"seznamu nebo zvolte \"Přímý tisk\"."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11650,42 +11746,42 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Enter Printer Name and Comments"
-msgstr ""
+msgstr "Zadejte název tiskárny a komentář"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Making printer port available for CUPS..."
-msgstr ""
+msgstr "Nastavuji tiskový port využitelný pro CUPS..."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Photo memory card access on your HP multi-function device"
-msgstr ""
+msgstr "Přístup k paměťové kartě na multifunkčním zařízení od HP"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Scanning on your HP multi-function device"
-msgstr ", multifunkční zařízení"
+msgstr "Vyhledávám multifunkční zařízení od HP"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Installing mtools packages..."
-msgstr "Instaluji balíčky..."
+msgstr "Instaluji balíčky pro mtools..."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Installing SANE packages..."
-msgstr "Instaluji balíčky..."
+msgstr "Instaluji balíčky pro SANE..."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking device and configuring HPOJ..."
-msgstr ""
+msgstr "Testuji zařízení a nastavuji HPOJ..."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Installing HPOJ package..."
-msgstr "Instaluji balíčky..."
+msgstr "Instaluji balíček HPOJ..."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11694,16 +11790,19 @@ msgid ""
"LaserJet 1100/1200/1220/3200/3300 with scanner, Sony IJP-V100), an HP "
"PhotoSmart or an HP LaserJet 2200?"
msgstr ""
+"Je vaše tiskárna multifunkční zařízení od HP nebo od Sony (OfficeJet, PSC, "
+"LaserJet 1100/1200/1220/3200/3300 se skenerem, Sony IJP-V100) nebo HP "
+"PhotoSmart či HP LaserJet 2200?"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "A command line must be entered!"
-msgstr "Musí být zadáno správné URI!"
+msgstr "Musí být zadán nějaký příkaz!"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Command line"
-msgstr "Jméno domény"
+msgstr "Příkazová řádka"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11711,11 +11810,13 @@ msgid ""
"Here you can specify any arbitrary command line into which the job should be "
"piped instead of being sent directly to a printer."
msgstr ""
+"Zde můžete zadat libovolný příkaz, do kterého bude posílám výstup z tiskové "
+"úlohy místo přímého odeslání na tiskárnu."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Pipe into command"
-msgstr "Poslat tiskovou úlohu do příkazu"
+msgstr "Poslat do příkazu"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12061,89 +12162,85 @@ msgstr ""
"název zařízení/název souboru"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Please choose the printer to which the print jobs should go."
-msgstr "Vyberte port, ke kterému je vaše tiskárna připojena."
+msgstr "Vyberte tiskový port, kam budou směrovány tiskové úlohy."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Please choose the printer you want to set up. The configuration of the "
"printer will work fully automatically. If your printer was not correctly "
"detected or if you prefer a customized printer configuration, turn on "
"\"Manual configuration\"."
msgstr ""
-"Tyto tiskárny byly automaticky detekovány. Konfigurace těchto tiskáren je "
+"Vyberte si tiskárnu, kterou chcete nastavit. Konfigurace těchto tiskáren je "
"plně automatická. Pokud nebyla tiskárna správně detekována nebo preferujete "
"vlastní nastavení tisku, zvolte \"Ruční konfigurace\"."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Here is a list of all auto-detected printers. "
-msgstr ""
+msgstr "Zde je seznam automaticky detekovaných tiskáren. "
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Currently, no alternative possibility is available"
-msgstr ""
+msgstr "Nyní není povolena žádná alternativa"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The configuration of the printer will work fully automatically. If your "
"printer was not correctly detected or if you prefer a customized printer "
"configuration, turn on \"Manual configuration\"."
msgstr ""
-"Byla automaticky detekována tato tiskárna. Konfigurace této tiskárny je plně "
-"automatická. Pokud nebyla tiskárna správně detekována nebo preferujete "
-"vlastní nastavení tisku, zvolte \"Ruční konfigurace\"."
+"Konfigurace této tiskárny je plně automatická. Pokud nebyla tiskárna správně "
+"detekována nebo preferujete vlastní nastavení tisku, zvolte \"Ruční "
+"konfigurace\"."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "The following printer was auto-detected. "
-msgstr ""
-"Následující tiskárny\n"
-"\n"
+msgstr "Byla automaticky detekována následující tiskárna. "
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Please choose the printer to which the print jobs should go or enter a "
"device name/file name in the input line"
msgstr ""
-"Vyberte si port, ke kterému je tiskárna připojena nebo zadejte do políčka "
-"název zařízení/název souboru"
+"Vyberte si tiskárnu, na kterou budou směrovány tiskové úlohy nebo zadejte do "
+"políčka název zařízení/název souboru"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Please choose the printer you want to set up or enter a device name/file "
"name in the input line"
msgstr ""
-"Vyberte si port, ke kterému je tiskárna připojena nebo zadejte do políčka "
-"název zařízení/název souboru"
+"Vyberte si tiskárnu, kterou chcete nastavit nebo zadejte do políčka název "
+"zařízení/název souboru"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Alternatively, you can specify a device name/file name in the input line"
-msgstr ""
-"Vyberte si port, ke kterému je tiskárna připojena nebo zadejte do políčka "
-"název zařízení/název souboru"
+msgstr "Jako alternativu můžete zadat do políčka název zařízení/název souboru"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"If it is not the one you want to configure, enter a device name/file name in "
"the input line"
msgstr ""
-"Tyto tiskárny byly automaticky detekovány, pokud není mezi nimi požadovaná "
-"tiskárna, zadejte do políčka název zařízení/název souboru"
+"Pokud není mezi nimi požadovaná tiskárna, zadejte do políčka název zařízení/"
+"název souboru"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Available printers"
-msgstr "Tiskárny k dispozici"
+msgstr "Dostupné tiskárny"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12174,19 +12271,19 @@ msgid "Local Printer"
msgstr "Místní tiskárna"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "USB printer \\#%s"
-msgstr "USB tiskárna \\/*%s"
+msgstr "USB tiskárna \\#%s"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Printer on parallel port \\#%s"
-msgstr "Tiskárna na paralelním portu \\/*%s"
+msgstr "Tiskárna na paralelním portu \\#%s"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Tiskárna \"%s\" na serveru Windows SMB/Windows \"%s\""
+msgstr "Tiskárna \"%s\" na SMB/Windows serveru \"%s\""
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12201,7 +12298,7 @@ msgstr "Nalezeno %s"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr ", tiskárna \"%s\" na serveru SMB/Windows \"%s\""
+msgstr ", tiskárna \"%s\" na SMB/Windows serveru \"%s\""
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12247,7 +12344,7 @@ msgid "Auto-detect printers connected to this machine"
msgstr "Automaticky nalézt tiskárny připojené k tomuto počítači"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -12269,11 +12366,12 @@ msgstr ""
"\n"
"Pokud máte tiskárnu nebo tiskárny připojené k tomuto počítači, zapojte je "
"prosím a zapněte je; pak mohou být automaticky nalezeny. \n"
+"\n"
"Pokud jste připraveni, klepněte na tlačítko \"Další\", nebo klepněte na "
-"tlačítko \"Zrušit\" pokud nechcete v tuto chvíli tiskárny nastavovat."
+"tlačítko \"Zrušit\" pokud nechcete v tuto chvíli tiskárnu(y) nastavovat."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -12312,7 +12410,7 @@ msgstr ""
"tlačítko \"Zrušit\" pokud nechcete v tuto chvíli tiskárny nastavovat."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -12382,31 +12480,35 @@ msgid ""
"Printerdrake could not determine which model your printer %s is. Please "
"choose the correct model from the list."
msgstr ""
+"\n"
+"\n"
+"Printerdrake nemohl zjistit, jaký model je vaše tiskárna %s. Prosím vyberte "
+"si odpovídající model ze seznamu."
#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, c-format
msgid ")"
-msgstr ""
+msgstr ")"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid " on "
-msgstr ""
+msgstr " na "
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "("
-msgstr ""
+msgstr "("
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Configuring printer ..."
-msgstr "Nastavuji tiskárnu \"%s\"..."
+msgstr "Nastavuji tiskárnu ..."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Searching for new printers..."
-msgstr "Tiskárny k dispozici"
+msgstr "Vyhledávám nové tiskárny..."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12471,51 +12573,53 @@ msgstr ""
"Našel jsem jednu neznámou tiskárnu přímo připojenou k vašemu počítači"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The following printer\n"
"\n"
"%s%s\n"
"is directly connected to your system"
msgstr ""
+"Následující tiskárna\n"
"\n"
-"Našel jsem jednu neznámou tiskárnu přímo připojenou k vašemu počítači"
+"%s %s\n"
+"je přímo připojena k vašemu počítači"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The following printer\n"
"\n"
"%s%s\n"
"are directly connected to your system"
msgstr ""
+"Následující tiskárny\n"
"\n"
-"Našel jsem jednu neznámou tiskárnu přímo připojenou k vašemu počítači"
+"%s %s\n"
+"jsou přímo připojeny k vašemu počítači"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The following printers\n"
"\n"
"%s%s\n"
"are directly connected to your system"
msgstr ""
+"Následující tiskárny\n"
"\n"
-"Našel jsem jednu neznámou tiskárnu přímo připojenou k vašemu počítači"
+"%s %s\n"
+"jsou přímo připojeny k vašemu počítači"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "and %d unknown printers"
-msgstr ""
-"\n"
-"a %d neznámých tiskáren je "
+msgstr "a %d neznámých tiskáren"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "and one unknown printer"
-msgstr ""
-"\n"
-"a jedna neznámá tiskárna jsou "
+msgstr "a jedna neznámá tiskárna"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12523,54 +12627,55 @@ msgid "Checking your system..."
msgstr "Zkoumám váš počítač..."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Restarting CUPS..."
-msgstr "Restartovat XFS"
+msgstr "Restartuji CUPS..."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
+msgstr "Tento server je již na seznamu, nelze jej tedy opět přidat.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Examples for correct IPs:\n"
-msgstr ""
+msgstr "Příklady správných IP adres:\n"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "The entered IP is not correct.\n"
-msgstr "Zvolený model je správný"
+msgstr "Zadaná IP adresa není správná.\n"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Server IP missing!"
-msgstr "Chybí název pro sdílení přes NCP!"
+msgstr "Chybá IP adresa serveru!"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Enter IP address and port of the host whose printers you want to use."
msgstr ""
+"Zadejte IP adresu a port počítače, ze kterého budete chtít využívat tiskárny."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Accessing printers on remote CUPS servers"
-msgstr "Tiskárna na vzdáleném CUPS serveru"
+msgstr "Přístup k tiskárnám na vzdáleném CUPS serveru"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Remove selected server"
-msgstr "Odstranit vybrané"
+msgstr "Odstranit vybraný server"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Edit selected server"
-msgstr "detekováno %s"
+msgstr "Upravit vybraný server"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Add server"
-msgstr "Přidat uživatele"
+msgstr "Přidat server"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12579,53 +12684,56 @@ msgid ""
"do this if the servers do not broadcast their printer information into the "
"local network."
msgstr ""
+"Přidejte sem ty CUPS servery, ze kterých budete chtít využívat tiskárny. Je "
+"to nutné pouze v případě, že tyto servery nešíří informace informace o "
+"tiskárnách v lokální síti."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "IP address of host/network:"
-msgstr ""
+msgstr "IP adresa počítače/sítě:"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr ""
+msgstr "Tento počítač/síť je již na seznamu, nelze jej znova přidat.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The entered host/network IP is not correct.\n"
-msgstr ""
+msgstr "Zadaná IP adresa pro počítač nebo síť není správná.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Host/network IP address missing."
-msgstr ""
+msgstr "Chybí IP adresa počítače/sítě."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Choose the network or host on which the local printers should be made "
"available:"
-msgstr ""
+msgstr "Vyberte síť nebo počítač, na kterém budou lokální tiskárny dostupné:"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Sharing of local printers"
-msgstr "Tiskárny k dispozici"
+msgstr "Sdílení lokálních tiskáren"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Remove selected host/network"
-msgstr "Odstranit vybrané"
+msgstr "Odstranit vybraný počítač/síť"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Edit selected host/network"
-msgstr ""
+msgstr "Upravit vybraný počítač/síť"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Add host/network"
-msgstr ""
+msgstr "Přidat počítač/síť"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12633,6 +12741,7 @@ msgid ""
"These are the machines and networks on which the locally connected printer"
"(s) should be available:"
msgstr ""
+"Zde jsou počítače a sítě, na kterých budou dostupné lokální tiskarna(y):"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12650,11 +12759,23 @@ msgid ""
"If some of these measures lead to problems for you, turn this option off, "
"but then you have to take care of these points."
msgstr ""
+"Pokud je tato volba zvolena, pak je při každém startu CUPS démona "
+"automaticky zajištěno že\n"
+"\n"
+"- pokud je nainstalován LPD/LPRng, nebude CUPS přepisovat /etc/printcap\n"
+"\n"
+"- pokud chybí soubor /etc/cups/cupsd.conf, tak bude vytvořen\n"
+"\n"
+"- pokud jsou rozesílány informace do sítě, nebudou obsahovat v názvu serveru "
+"\"localhost\".\n"
+"\n"
+"Pokud některá volba způsobuje problémy, vypněte tuto volbu, ale potom si na "
+"tyto zmíněné body musíte dávat pozor."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Automatic correction of CUPS configuration"
-msgstr "Automatické nastavení pro CUPS"
+msgstr "Automatická korekce nastavení pro CUPS"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12668,41 +12789,48 @@ msgid ""
"address(es) and optionally the port number(s) here to get the printer "
"information from the server(s)."
msgstr ""
+"Pro získání přístupu na vzdálené CUPS servery v lokální síti potřebujete "
+"pouze povolit volbu \"Automaticky nalézt dostupné tiskárny na vzdálených "
+"počítačích\". CUPS server následně informuje o těchto tiskárnách. Všechny "
+"známé tiskárny potom budou vypsány v sekci \"Vzdálené tiskárny\" v hlavním "
+"okně aplikace PrinterDrake. Pokud CUPS server(y) nejsou ve vaší lokální "
+"síti, musíte zadat IP adresu a volitelně také číslo portu, aby bylo možné "
+"uvedené informace ze serverů získat."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "None"
-msgstr "Hotovo"
+msgstr "Žádné"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Additional CUPS servers: "
-msgstr "Na serveru CUPS \"%s\""
+msgstr "Další CUPS servery: "
#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "No remote machines"
-msgstr "(na tomto počítači)"
+msgstr "Nejsou žádné vzdálené počítače"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Custom configuration"
-msgstr "nastavení varování"
+msgstr "Vlastní nastavení"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Printer sharing on hosts/networks: "
-msgstr "Sdílení souborů"
+msgstr "Tiskárny sdílené na počítačích/síti: "
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Automatically find available printers on remote machines"
-msgstr ""
+msgstr "Automaticky nalézt dostupné tiskárny na vzdálených počítačích"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The printers on this machine are available to other computers"
-msgstr ""
+msgstr "Tiskárny na tomto počítači jsou přístupné jiným vzdáleným počítačům"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12710,6 +12838,8 @@ msgid ""
"You can also decide here whether printers on remote machines should be "
"automatically made available on this machine."
msgstr ""
+"Můžete se rozhodnout, zda všechny tiskárny na vzdálených počítačích budou "
+"dostupné i na tomto počítači"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12717,11 +12847,13 @@ msgid ""
"Here you can choose whether the printers connected to this machine should be "
"accessable by remote machines and by which remote machines."
msgstr ""
+"Zde můžete rozhodnout, zda tiskárny připojené k tomuto počítači budou "
+"vzdáleně přístupné a z kterých vzdálených počítačů."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "CUPS printer sharing configuration"
-msgstr "Nastavení pro OKI win-tiskárnu"
+msgstr "Nastavení sdílení tiskáren přes CUPS"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12729,7 +12861,7 @@ msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr "Autodetekce tiskárny (lokální, TCP/soket, a tiskárny SMB)"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Printers on remote CUPS servers do not need to be configured here; these "
@@ -12756,6 +12888,9 @@ msgid ""
"\n"
"Set the user umask."
msgstr ""
+"Argumenty: (umask)\n"
+"\n"
+"Nastavte uživatelskou masku."
#: ../../security/help.pm:1
#, c-format
@@ -12764,6 +12899,9 @@ msgid ""
"\n"
"Set the shell timeout. A value of zero means no timeout."
msgstr ""
+"Argumenty: (val)\n"
+"\n"
+"Nastaví čas vypršení pro shell. Nulová hodnota znamená žádný čas."
#: ../../security/help.pm:1
#, c-format
@@ -12772,67 +12910,76 @@ msgid ""
"\n"
"Set shell commands history size. A value of -1 means unlimited."
msgstr ""
+"Argumenty: (velikost)\n"
+"\n"
+"Nastaví velikost historie pro příkazy. Hodnota -1 znamená neomezená."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check additions/removals of sgid files."
-msgstr ""
+msgstr "pokud je nastaveno, provádí se kontrola přidané/odebrané sgid soubory."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check open ports."
-msgstr ""
+msgstr "pokud je nastaveno, provádí se kontrola na otevřené porty."
#: ../../security/help.pm:1
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
msgstr ""
+"pokud je nastaveno, odesílá report na daný email nebo přímo uživateli root"
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report check result by mail."
-msgstr ""
+msgstr "pokud je nastaveno, odesílá výsledek kontroly mailem."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check files/directories writable by everybody."
msgstr ""
+"pokud je nastaveno, kontroluje, které soubory/adresáře jsou zapisovatelné "
+"pro všechny."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, reports check result to tty."
-msgstr ""
+msgstr "pokud je nastaveno, posílá výsledek kontroly na tty."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, run some checks against the rpm database."
-msgstr ""
+msgstr "pokud je nastaveno, spouští kontrolu rpm database."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""
+"pokud je nastaveno, kontroluje, zda je síťové rozhraní v promiskuitním režimu"
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, run chkrootkit checks."
-msgstr ""
+msgstr "pokud je nastaveno, provádí kontrolu na chkrootkit."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
msgstr ""
+"pokud je nastaveno, kontrolu práva souborů v domovském adresáři uživatele"
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
msgstr ""
+"pokud je nastaveno, kontroluje přidávání/odebírání souborů se suid root."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report check result to syslog."
-msgstr ""
+msgstr "pokud je nastaveno, posílá výstup kontroly do syslogu."
#: ../../security/help.pm:1
#, c-format
@@ -12840,26 +12987,28 @@ msgid ""
"if set to yes, check for empty passwords, for no password in /etc/shadow and "
"for users with the 0 id other than root."
msgstr ""
+"pokud je nastaveno, kontroluje heslo, zda není prázdné heslo v /etc/shadow a "
+"uživatele, kteří mají id 0 jiní než uživatel root."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, run the daily security checks."
-msgstr ""
+msgstr "pokud je nastaveno, spouští každý den bezpečnostní kontrolu."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr ""
+msgstr "pokud je nastaveno, ověřuje kontrolní součet pro suid/sgid soubory."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check empty password in /etc/shadow."
-msgstr ""
+msgstr "pokud je nastaveno, kontroluje prázdná hesla v /etc/shadow."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report unowned files."
-msgstr ""
+msgstr "pokud je nastaveno, vypisuje soubory bez vlastníka."
#: ../../security/help.pm:1
#, c-format
@@ -12868,6 +13017,9 @@ msgid ""
"\n"
"Set the root umask."
msgstr ""
+"Argumenty: (umask)\n"
+"\n"
+"Natavuje umask pro uživatele roo."
#: ../../security/help.pm:1
#, c-format
@@ -12877,6 +13029,10 @@ msgid ""
"Set the password minimum length and minimum number of digit and minimum "
"number of capitalized letters."
msgstr ""
+"Argumenty: (délka, ndigits=0, nupper=0)\n"
+"\n"
+"Nastaví minimální délku hesla, minimální počet číslic a velkých písmen v "
+"hesle."
#: ../../security/help.pm:1
#, c-format
@@ -12885,6 +13041,9 @@ msgid ""
"\n"
"Set the password history length to prevent password reuse."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+"Nastavuje déku historie pro použitá hesla."
#: ../../security/help.pm:1
#, c-format
@@ -12894,6 +13053,10 @@ msgid ""
"Set password aging to \\fImax\\fP days and delay to change to \\fIinactive"
"\\fP."
msgstr ""
+"Argumenty: (max, inactive=-1)\n"
+"\n"
+"Nastaví dobu platnosti hesla na \\fImax\\fP dnů a prodlevu mezi změnami na "
+"\\fIinactive\\fP."
#: ../../security/help.pm:1
#, c-format
@@ -12902,6 +13065,9 @@ msgid ""
"\n"
"Add the name as an exception to the handling of password aging by msec."
msgstr ""
+"Argumenty: (jméno)\n"
+"\n"
+"Přidá jméno k výjimkám, které se nekontrolují na dobu platnosti pomocí msec."
#: ../../security/help.pm:1
#, c-format
@@ -12910,6 +13076,9 @@ msgid ""
"\n"
" Enable/Disable sulogin(8) in single user level."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+"Povolí/Zakáže sulogin(8) v jednouživatelském režimu."
#: ../../security/help.pm:1
#, c-format
@@ -12918,6 +13087,9 @@ msgid ""
"\n"
" Activate/Disable daily security check."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+" Povolí/Zakáže provádění denních bezpečnostních kontrol."
#: ../../security/help.pm:1
#, c-format
@@ -12926,6 +13098,9 @@ msgid ""
"\n"
"Activate/Disable ethernet cards promiscuity check."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+" Povolí/Zakáže kontrolu na nastavení promiskuitního režimu síťového rozhraní."
#: ../../security/help.pm:1
#, c-format
@@ -12934,6 +13109,9 @@ msgid ""
"\n"
"Use password to authenticate users."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+"Použije heslo pro autentizaci uživatelů."
#: ../../security/help.pm:1
#, c-format
@@ -12942,6 +13120,9 @@ msgid ""
"\n"
" Enabling su only from members of the wheel group or allow su from any user."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+"Povoluje su pouze členům skupiny whell nebo povoluje su každému uživateli."
#: ../../security/help.pm:1
#, c-format
@@ -12950,6 +13131,9 @@ msgid ""
"\n"
"Enable/Disable msec hourly security check."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+" Povolí/Zakáže bezpečnostní kontrolu pravidelně každou hodinu."
#: ../../security/help.pm:1
#, c-format
@@ -12958,6 +13142,9 @@ msgid ""
"\n"
"Enable/Disable the logging of IPv4 strange packets."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+" Povolí/Zakáže logování podivných IPv4 paketů."
#: ../../security/help.pm:1
#, c-format
@@ -12966,6 +13153,9 @@ msgid ""
"\n"
"Enable/Disable libsafe if libsafe is found on the system."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+" Povolí/Zakáže použití knihovny libsafe, pokud je na systému nalezena."
#: ../../security/help.pm:1
#, c-format
@@ -12974,6 +13164,9 @@ msgid ""
"\n"
"Enable/Disable IP spoofing protection."
msgstr ""
+"Argumenty: (arg, alert=1)\n"
+"\n"
+" Povolí/Zakáže ochranu přech IP spoofing."
#: ../../security/help.pm:1
#, c-format
@@ -12983,6 +13176,10 @@ msgid ""
"Enable/Disable name resolution spoofing protection. If\n"
"\\fIalert\\fP is true, also reports to syslog."
msgstr ""
+"Argumenty: (arg, alert=1)\n"
+"\n"
+" Povolí/Zakáže ochranu před spoofingem jmenných služeb. Pokud\n"
+"je \\fIalert\\fP nastaveno, vypíše report do syslogu."
#: ../../security/help.pm:1
#, c-format
@@ -12993,6 +13190,11 @@ msgid ""
"expression describing what to log (see syslog.conf(5) for more details) and\n"
"dev the device to report the log."
msgstr ""
+"Argumenty: (arg, expr='*.*', dev='tty12')\n"
+"\n"
+"Povolí zakáže výpis syslog hlášek na konsoli 12. Výraz \\fIexpr\\fP\n"
+"určuje, co se bude logovat (více detailů najdete v nápovědě syslog.conf(5))\n"
+"a dev určuje na které zařízení se bude log posílat."
#: ../../security/help.pm:1
#, c-format
@@ -13003,6 +13205,11 @@ msgid ""
"allow and /etc/at.allow\n"
"(see man at(1) and crontab(1))."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+"Povolí/Zakáže příkaz crontab a at pro uživatele. Vyjmenovaní uživatelé se\n"
+"zapíšou do /etc/cron.allow and /etc/at.allow\n"
+"(více manat(1) a crontab(1))."
#: ../../security/help.pm:1
#, c-format
@@ -13018,6 +13225,13 @@ msgid ""
"the file\n"
"during the installation of packages."
msgstr ""
+"Argumenty: ()\n"
+"\n"
+"Pokud je SERVER_LEVEL (nebo SECURE_LEVEL chybí) v souboru\n"
+"/etc/security/msec/security.conf větší než 3, vytvoří je symbolický odkaz\n"
+"/etc/security/msec/server na /etc/security/msec/server.<SERVER_LEVEL>.\n"
+"/etc/security/msec/server je použit programem chkconfig --add pro přidání\n"
+"služby během instalace balíčků."
#: ../../security/help.pm:1
#, c-format
@@ -13030,6 +13244,12 @@ msgid ""
"services you need, use /etc/hosts.allow\n"
"(see hosts.allow(5))."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+"Autorizuje všechny služby kontrolované tcp_wrappers (více hosts.deny(5)) "
+"pokud je nastaveno \\fIarg\\fP = ALL. Autorizuje\n"
+"pouze lokální, pokud je nastaveno \\fIarg\\fP = LOCAL a nic pokud je\n"
+"nastaveno \\fIarg\\fP = NONE. Více najdete v man hosts.allow(5)."
#: ../../security/help.pm:1
#, c-format
@@ -13039,6 +13259,10 @@ msgid ""
"The argument specifies if clients are authorized to connect\n"
"to the X server on the tcp port 6000 or not."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+"Argument udává, zda je klient oprávněn se připojit k X serveru\n"
+"na tcp port 6000 nebo ne."
#: ../../security/help.pm:1
#, c-format
@@ -13049,6 +13273,12 @@ msgid ""
"on the client side: ALL (all connections are allowed), LOCAL (only\n"
"local connection) and NONE (no connection)."
msgstr ""
+"Argumenty: (arg, listen_tcp=None)\n"
+"\n"
+"Povolí/Zakáže spojení na X server. První argument udává, co se provede\n"
+"na straně klienta. ALL (všichna spojení jsou povolena), LOCAL (pouze "
+"lokální\n"
+"spojení je povoleno) a NONE (není povoleno žádné spojení)."
#: ../../security/help.pm:1
#, c-format
@@ -13058,6 +13288,9 @@ msgid ""
"Allow/Forbid the list of users on the system on display managers (kdm and "
"gdm)."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+"Povolí/Zakáže výpis uživatelů ve správcích přihlášení (kdm nebo gdm)."
#: ../../security/help.pm:1
#, c-format
@@ -13066,6 +13299,9 @@ msgid ""
"\n"
"Allow/Forbid direct root login."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+"Povolí/Zakáže přímé přihlášení uživatele root."
#: ../../security/help.pm:1
#, c-format
@@ -13074,6 +13310,9 @@ msgid ""
"\n"
"Allow/Forbid remote root login."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+"Povolí/Zakáže vzdálené přihlášení uživatele root."
#: ../../security/help.pm:1
#, c-format
@@ -13082,6 +13321,9 @@ msgid ""
"\n"
"Allow/Forbid reboot by the console user."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+"Povolí/Zakáže reboot s konsole provedené uživatelem."
#: ../../security/help.pm:1
#, c-format
@@ -13092,6 +13334,11 @@ msgid ""
"\\fP = NONE no issues are\n"
"allowed else only /etc/issue is allowed."
msgstr ""
+"Arguments: (arg)\n"
+"\n"
+"Pokud je nastaven \\fIarg\\fP = ALL je povolena existence soubor /etc/issue\n"
+"a /etc/issue.net. Pokud je nastaven \\fP = NONE není povolen žádný\n"
+"soubor /etc/issue."
#: ../../security/help.pm:1
#, c-format
@@ -13100,6 +13347,9 @@ msgid ""
"\n"
"Allow/Forbid autologin."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+"Povolí/Zakáže automatické přihlášení."
#: ../../security/help.pm:1
#, c-format
@@ -13108,6 +13358,9 @@ msgid ""
"\n"
" Accept/Refuse icmp echo."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+"Akceptuje/Odmítne icmp echo."
#: ../../security/help.pm:1
#, c-format
@@ -13116,6 +13369,9 @@ msgid ""
"\n"
" Accept/Refuse broadcasted icmp echo."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+"Akceptuje/Odmítne všesměrové icmp echo."
#: ../../security/help.pm:1
#, c-format
@@ -13124,6 +13380,9 @@ msgid ""
"\n"
"Accept/Refuse bogus IPv4 error messages."
msgstr ""
+"Argumenty: (arg)\n"
+"\n"
+"Akceptuje/odmítne nekorektní chybové IPv4 zprávy."
#: ../../security/level.pm:1
#, c-format
@@ -13249,8 +13508,8 @@ msgstr "Dveře dokořán"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
"Úspěch společnosti MandrakeSoft je založen na principech Svobodného "
"Software. Tento operační systém je výsledkem spolupráce části celosvětové "
@@ -13258,7 +13517,7 @@ msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "Vítejte do světa Open Source"
#: ../../share/advertising/01-thanks.pl:1
@@ -13269,8 +13528,8 @@ msgstr "Děkujeme vám, že jste si vybrali Mandrake Linux 9.1"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
"Chcete-li sdílet své vědomosti a pomáhat vytvářet nástroje pro Linux, "
"připojte se do diskusních klubů, které najdete na našich stránkách "
@@ -13278,217 +13537,159 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr "Chcete vědět více o komunitě okolo Open Source?"
-
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Připojte se ke světu Svobodného Software"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
-"Distribuce Mandrake Linux 9.1 vám přináší ten nejlepší software. S pomocí "
-"aplikací Mozilla a Konqueror si můžete prohlížet webové stránky a animace, "
-"ke čtení pošty a zpracování osobních informací lze použít aplikace Evolution "
-"a Kmail."
+"Chcete vědět více o komunitě okolo Open Source? Připojte se ke světu "
+"Svobodného Software!"
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
-msgstr "Dostaňte z Internetu co nejvíce"
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
"Mandrake Linux 9.1 vám dovoluje naplno využít poslední software pro "
"přehrávání hudebních souborů, editovat či pracovat s vašimi obrázky nebo "
"fotografiemi, či sledovat video."
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr "Využijte multimédia na maximum!"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr "Objevte nejnovější verze nástrojů pro grafiku a multimédia!"
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"Mandrake Linux 9.1 nabízí ty nejlepší Open Source hry - arkády, akční, "
-"strategické, ..."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "Hry"
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-"Ovládací centrum pro Mandrake Linux 9.0 poskytuje výkonné nástroje pro "
-"správu a nastavení vašeho počítače."
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Řídící centrum Mandrake"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Nastavení Mandrake Terminal Server"
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
"Distribuce Mandrake Linux 9.1 vám poskytuje 11 uživatelských rozhraní, které "
"lze plně upravovat: KDE 3, GNOME 2, WindowMaker, ..."
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "Uživatelská rozhraní"
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-"Využijte plnou sílu kompilátoru GNU gcc 3, stejně jako nejlepší vývojová "
-"prostředí, které Open Source software poskytuje."
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "Distribuce Mandrake Linux 9.1 je nejlepší vývojová platforma."
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr "Zjednodušený vývoj"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
-"Váš počítač lze několika kliknutími myši změnit na velmi výkonný Linuxový "
+"Váš počítač lze několika klepnutími myši změnit na velmi výkonný Linuxový "
"server: webový server, poštovní server, firewall, router, souborový a "
"tiskový server, ..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr "Vytvořte se svého počítače spolehlivý server."
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr "Tento produkt je k dispozici na webových stránkách MandrakeStore."
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-"Tento produkt pro firewall v sobě zahrnuje síťové funkce, které uspokojí "
-"všechny vaše potřeby při zabezpečení vaší sítě."
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr ""
-"Produktová řada společnosti Mandrake zahrnuje produkt Multi Network Firewall "
-"(M. N. F.)."
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr "Optimalizujte vaše zabezpečení"
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"Náš elektronický obchod nabízí ucelenou řadu našich Linuxových řešení, "
"stejně jako speciální nabídky našich produktů a další \"lahůdky\":"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr "Oficiální obchod společnosti MandrakeSoft"
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
+#: ../../share/advertising/09-mdksecure.pl:1
+#, fuzzy, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"Společnost MandrakeSoft působí po boku vybraných společností, které nabízejí "
"profesionální řešení kompatibilní se systémem Mandrake Linux. Seznam těchto "
"partnerů naleznete na stránkách MandrakeStore"
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr "Strategičtí partneři"
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-"Ať už se budete školit on-line nebo pomocí naší sítě školících partnerů, "
-"katalog Linux-Campus vás připraví na známý certifikační program LPI "
-"(celosvětovou profesionální technickou certifikaci)."
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
+#, c-format
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "Optimalizujte vaše zabezpečení"
+
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr "Získejte certifikát pro Linux"
+msgid "This product is available on the MandrakeStore Web site."
+msgstr "Tento produkt je k dispozici na webových stránkách MandrakeStore."
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-"Program školení byl navržen tak, aby uspokojil požadavky jak koncových "
-"uživatelů, tak expertů (správců sítí a systémů)"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-"Objevte katalog školení společnosti MandrakeSoft na stránkách Linux-Campus"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -13499,21 +13700,21 @@ msgstr ""
"komunitě, sdílejte své znalosti a pomozte ostatním tím, že se stanete "
"uznávaným Expertem na webových stránkách on-line technické podpory:"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
"Nalezněte řešení vašich problémů pomocí on-line platformy společnosti "
"MandrakeSoft pro podporu"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr "Staňte se Mandrake Expertem"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
@@ -13522,39 +13723,17 @@ msgstr ""
"Všechny incidenty budou sledovány vyhrazeným kvalifikovaným technickým "
"expertem společnosti MandrakeSoft."
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
"Online platforma odpovídající specifickým potřebám podpory společností."
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert Corporate"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-"Kluby MandrakeClub a Mandrake Corporate Club byly vytvořeny pro ty podnikové "
-"a soukromé uživatele systému Mandrake Linux, kteří chtějí přímo podporovat "
-"svou oblíbenou distribuci Linuxu a ještě k tomu obdržet zvláštní privilegia. "
-"Pokud vás naše produkty oslovily, jestliže vaše společnost díky našim "
-"produktům získala konkurenční výhodu, pokud chcete podpořit vývoj distribuce "
-"Mandrake Linux, připojte se ke klubu MandrakeClub!"
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr "Objevte MandrakeClub a Mandrake Corporate Club"
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -13568,7 +13747,7 @@ msgstr "Prosím odhlaste se a pak stiskněte Ctrl-Alt-Backspace"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
-msgstr ""
+msgstr "/etc/hosts.allow a /etc/hosts.deny jsou již nastaveny - beze změn"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -13613,17 +13792,17 @@ msgstr "Zapsat nastavení"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Dynamic IP Address Pool:"
-msgstr ""
+msgstr "Dynamický rozsah IP adres:"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Most of these values were extracted\n"
"from your running system.\n"
"You can modify as needed."
msgstr ""
"Většina těchto údajů byla získána z vašeho\n"
-"běžícího systému. Můžete je upravit dle potřeby."
+"běžícího systému. Můžete je upravit dle potřeby"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -13633,47 +13812,47 @@ msgstr "Nastavení serveru dhcpd"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "IP Range End:"
-msgstr ""
+msgstr "IP rozsah do:"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "IP Range Start:"
-msgstr ""
+msgstr "IP rozsah od:"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "Name Servers:"
-msgstr "Server Samba"
+msgstr "Jmenné servery:"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "Domain Name:"
-msgstr "Jméno domény"
+msgstr "Název domény:"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Broadcast Address:"
-msgstr ""
+msgstr "Adresa broadcastu:"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Subnet Mask:"
-msgstr ""
+msgstr "Maska podsítě:"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Routers:"
-msgstr ""
+msgstr "Směrovače:"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "Netmask:"
-msgstr "Maska sítě"
+msgstr "Maska sítě:"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Subnet:"
-msgstr ""
+msgstr "Podsíť:"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -13681,6 +13860,8 @@ msgid ""
"Need to restart the Display Manager for full changes to take effect. \n"
"(service dm restart - at the console)"
msgstr ""
+"Pro aktivaci změn je potřeba správce oken restartovat.\n"
+"(příkaz v konzoli: service dm restart)"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -13688,14 +13869,14 @@ msgid "dhcpd Config..."
msgstr "Nastavení dhcpd..."
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "Delete Client"
-msgstr "<-- Odebrat klienta"
+msgstr "Odebrat klienta"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "<-- Edit Client"
-msgstr "<-- Odebrat klienta"
+msgstr "<-- Upravit klienta"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -13703,14 +13884,14 @@ msgid "Add Client -->"
msgstr "Přidat klienta -->"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "Allow Thin Clients"
-msgstr "Přidat/Odebrat klienty"
+msgstr "Povolit tenké klienty"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "Thin Client"
-msgstr "DHCP klient"
+msgstr "Tenký klient"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -13718,9 +13899,9 @@ msgid "No net boot images created!"
msgstr "Nepodařilo se vytvořit obraz pro spouštění ze sítě!"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "type: %s"
-msgstr "Typ: "
+msgstr "typ: %s"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -13739,6 +13920,9 @@ msgid ""
" the one in the Terminal Server database.\n"
"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
+"!!! Signalizuje, že heslo v databázi je jiné než které má v databázi\n"
+"Terminal Server.\n"
+"Smažte/znovu přidejte uživatele pro povolení přihlášení na Terminal Server."
#: ../../standalone/drakTermServ:1
#, c-format
@@ -13761,9 +13945,9 @@ msgid "Build All Kernels -->"
msgstr "Sestavit všechna jádra -->"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "No NIC selected!"
-msgstr "Není zvolena žádná NIC!"
+msgstr "Není vybrána žádná NIC!"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -13937,17 +14121,25 @@ msgid ""
"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
msgstr ""
+"\n"
+"\n"
+" Poděkování:\n"
+"\t- LTSP Projekt http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
+"\n"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
" Copyright (C) 2002 by MandrakeSoft \n"
"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
"\n"
msgstr ""
-" aktualizace 2002 MandrakeSoft od Stewa Benedicta <sbenedict\\@mandrakesoft."
-"com>"
+"\n"
+" Copyright (C) 2002 by MandrakeSoft \n"
+"\tStew Benedict <sbenedict\\@mandrakesoft.com>\n"
+"\n"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -14045,7 +14237,7 @@ msgstr "Vytvářím disketu pro automatickou instalaci"
#: ../../standalone/drakautoinst:1
#, c-format
msgid "manual"
-msgstr ""
+msgstr "ručně"
#: ../../standalone/drakautoinst:1
#, c-format
@@ -14062,9 +14254,9 @@ msgid "Automatic Steps Configuration"
msgstr "Nastavení automatických kroků"
#: ../../standalone/drakautoinst:1
-#, fuzzy, c-format
+#, c-format
msgid "replay"
-msgstr "Zopakovat"
+msgstr "zopakovat"
#: ../../standalone/drakautoinst:1
#, c-format
@@ -14151,7 +14343,7 @@ msgstr ""
"\n"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Description:\n"
"\n"
@@ -14234,12 +14426,13 @@ msgstr ""
"com>"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid ""
" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
"fr>"
msgstr ""
-" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
+" Copyright (C) 2001-2002 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita."
+"fr>"
#: ../../standalone/drakbackup:1
#, c-format
@@ -14386,7 +14579,7 @@ msgstr ""
"\n"
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"options description:\n"
"\n"
@@ -14424,9 +14617,9 @@ msgstr ""
" - Režim komprese:\n"
" \n"
" Pokud zvolíte kompresi bzip2, budete mít kompresi\n"
-" lepší než pomocí gzip (okolo 2-10%).\n"
+" lepší než pomocí gzip (okolo 2-10%%).\n"
" Tato volba není zvolena jako výchozí, protože\n"
-" vyžaduje daleko více času (až o 1000% více).\n"
+" vyžaduje daleko více času (až o 1000%% více).\n"
"\n"
" - Režim aktualizace:\n"
"\n"
@@ -14528,12 +14721,12 @@ msgid ""
"please click Wizard or Advanced."
msgstr ""
"Nebyl nalezen konfigurační soubor, \n"
-"klikněte na Průvodce nebo na Rozšířené."
+"klepněte na Průvodce nebo na Rozšířené."
#: ../../standalone/drakbackup:1
#, c-format
msgid "%s"
-msgstr ""
+msgstr "%s"
#: ../../standalone/drakbackup:1
#, c-format
@@ -14551,9 +14744,9 @@ msgid "Please select data to restore..."
msgstr "Prosím zvolte data pro obnovu..."
#: ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "The following packages need to be installed:\n"
-msgstr "Tyto balíčky budou instalovány"
+msgstr "Je potřeba nainstalovat tyto balíčky:\n"
#: ../../standalone/drakbackup:1
#, c-format
@@ -15451,7 +15644,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, c-format
msgid "Select the files or directories and click on 'Add'"
-msgstr "Vyberte soubory nebo adresáře a klikněte na 'Přidat'"
+msgstr "Vyberte soubory nebo adresáře a klepněte na 'Přidat'"
#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, c-format
@@ -15924,9 +16117,9 @@ msgid "connecting to Bugzilla wizard ..."
msgstr "připojuji se k průvodci Bugzilla ..."
#: ../../standalone/drakbug:1
-#, fuzzy, c-format
+#, c-format
msgid "Package not installed"
-msgstr "Není instalováno"
+msgstr "Balíček není nainstalován"
#: ../../standalone/drakbug:1
#, c-format
@@ -16047,6 +16240,11 @@ msgstr "Průvodce pro nové uživatele"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr "Řídící centrum Mandrake"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr "Nástroj společnosti Mandrake pro hlášení chyb"
@@ -16097,7 +16295,7 @@ msgid ""
"Create one first by clicking on 'Configure'"
msgstr ""
"Nemáte žádné připojení k Internetu.\n"
-"Vytvořte si jej kliknutím na 'Konfigurovat'"
+"Vytvořte si jej klepnutím na 'Konfigurovat'"
#: ../../standalone/drakconnect:1
#, c-format
@@ -16155,7 +16353,7 @@ msgid ""
"Configure them first by clicking on 'Configure'"
msgstr ""
"Nemáte nakonfigurováno žádné rozhraní.\n"
-"Nastavte jej kliknutím na 'Konfigurovat'"
+"Nastavte jej klepnutím na 'Konfigurovat'"
#: ../../standalone/drakconnect:1
#, c-format
@@ -16202,7 +16400,7 @@ msgstr "Použít"
#: ../../standalone/drakconnect:1
#, c-format
msgid "Click here to launch the wizard ->"
-msgstr "Klikněte pro spuštění průvodce ->"
+msgstr "Klepněte pro spuštění průvodce ->"
#: ../../standalone/drakconnect:1
#, c-format
@@ -16300,11 +16498,14 @@ msgid ""
"into your system with the X Window System running and supports running\n"
"several different X sessions on your local machine at the same time."
msgstr ""
+"Správce přihlášení pro X11 umožňuje se přihlásit přes grafické\n"
+"rozhraní k bežícímu systému X Window a podporuje spuštění různých\n"
+"X sezení na lokálním počítači současně."
#: ../../standalone/drakedm:1
#, c-format
msgid "Choosing a display manager"
-msgstr ""
+msgstr "Výběr správce oken"
#: ../../standalone/drakfloppy:1
#, c-format
@@ -16474,7 +16675,7 @@ msgstr "zde pokud si nejste jisti."
#: ../../standalone/drakfont:1
#, c-format
msgid "click here if you are sure."
-msgstr "klikněte zde, pokud jste si jisti."
+msgstr "klepněte zde, pokud jste si jisti."
#: ../../standalone/drakfont:1
#, c-format
@@ -16484,7 +16685,7 @@ msgstr "Instalovat seznam"
#: ../../standalone/drakfont:1
#, c-format
msgid "Select the font file or directory and click on 'Add'"
-msgstr "Vyberte soubor s fontem nebo adresář a klikněte na 'Přidat'"
+msgstr "Vyberte soubor s fontem nebo adresář a klepněte na 'Přidat'"
#: ../../standalone/drakfont:1
#, c-format
@@ -16527,7 +16728,7 @@ msgid "Choose the applications that will support the fonts:"
msgstr "Zvolte aplikace, které podporují fonty:"
#: ../../standalone/drakfont:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
" Copyright (C) 2001-2002 by MandrakeSoft \n"
@@ -16559,7 +16760,12 @@ msgid ""
"\t by Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
" Convert ttf font files to afm and pfb fonts\n"
msgstr ""
-" Tento program je svobodný software; můžete ho šířit a/nebo modifikovat\n"
+"\n"
+" Copyright (C) 2001-2002 MandrakeSoft \n"
+"\tDUPONT Sebastien (původní verze)\n"
+" CHAUMETTE Damien <dchaumette\\@mandrakesoft.com>\n"
+"\n"
+" Tento program je svobodný software; můžete ho šířit a/nebo modifikovat\n"
" podle specifikace GNU General Public Licence, která byla publikována\n"
" Free Software Foundation; buď verze 2, nebo (podle volby) pozdější verze.\n"
"\n"
@@ -16569,12 +16775,23 @@ msgstr ""
"\n"
" Kopii GNU General Public Licence můžete obdržet buď s tímto programem\n"
" nebo si o ní můžete napsat na adresu Free Software Foundation, Inc.,\n"
-" 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
+" 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
+"\n"
+" Poděkování:\n"
+" - pfm2afm: \n"
+"\t autor Ken Borgendale:\n"
+"\t Převádí Windows .pfm soubor na .afm (Adobe Font Metrics)\n"
+" - type1inst:\n"
+"\t autor James Macnicol: \n"
+"\t type1inst generuje soubory fonts.dir fonts.scale & Fontmap.\n"
+" - ttf2pt1: \n"
+"\t autoři Andrew Weeks, Frank Siegert, Thomas Henlich, Sergey Babkin \n"
+" Převádí soubory s ttf fonty na soubory afm a pfb\n"
#: ../../standalone/drakfont:1
-#, fuzzy, c-format
+#, c-format
msgid "About"
-msgstr "Přerušit"
+msgstr "O aplikaci"
#: ../../standalone/drakfont:1
#, c-format
@@ -16724,7 +16941,7 @@ msgstr ""
"\n"
"%s\n"
"\n"
-"Klikněte na Konfigurovat, pokud chcete spustit průvodce nastavením."
+"Klepněte na Konfigurovat, pokud chcete spustit průvodce nastavením."
#: ../../standalone/drakgw:1
#, c-format
@@ -16843,7 +17060,7 @@ msgid "Local Network adress"
msgstr "Adresa lokální sítě"
#: ../../standalone/drakgw:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the Network that you use "
@@ -16888,9 +17105,9 @@ msgstr ""
"Ovladač: %s"
#: ../../standalone/drakgw:1
-#, fuzzy, c-format
+#, c-format
msgid "Current interface configuration"
-msgstr "Zobrazit aktuální nastavení rozhraní"
+msgstr "Aktuální nastavení rozhraní"
#: ../../standalone/drakgw:1
#, c-format
@@ -16900,7 +17117,7 @@ msgstr "Zobrazit aktuální nastavení rozhraní"
#: ../../standalone/drakgw:1
#, c-format
msgid "No (experts only)"
-msgstr ""
+msgstr "Ne (pouze pro experty)"
#: ../../standalone/drakgw:1
#, c-format
@@ -16980,6 +17197,28 @@ msgstr "Rozhraní %s (používá modul %s)"
#: ../../standalone/drakgw:1
#, c-format
+msgid "Net Device"
+msgstr "Síťové zařízení"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+"Zadejte prosím název rozhraní, které je připojeno k Internetu.\n"
+"\n"
+"Příklady:\n"
+"\t\tppp+ pro modem nebo pro DSL připojení,\n"
+"\t\teth0 nebo eth1 pro připojení přes kabel,\n"
+"\t\tippp+ pro isdn připojení.\n"
+
+#: ../../standalone/drakgw:1
+#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -17031,7 +17270,7 @@ msgid "enable"
msgstr "povolit"
#: ../../standalone/drakgw:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -17092,6 +17331,8 @@ msgid ""
"No browser is installed on your system, Please install one if you want to "
"browse the help system"
msgstr ""
+"V systému není instalován žádný prohlížeč. Pokud chcete používat nápovědu, "
+"je nutné nějaký nainstalovat."
#: ../../standalone/drakperm:1
#, c-format
@@ -17259,9 +17500,9 @@ msgid "path"
msgstr "cesta"
#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
+#, c-format
msgid "Location of auto_install.cfg file"
-msgstr "Vytvářím disketu pro automatickou instalaci"
+msgstr "Umístění souboru auto_install.cfg"
#: ../../standalone/drakpxe:1
#, c-format
@@ -17271,22 +17512,28 @@ msgid ""
"Leave it blank if you do not want to set up automatic installation mode.\n"
"\n"
msgstr ""
+"Určete, kde je umístěn soubor auto_install.cfg.\n"
+"\n"
+"Ponechte prázdné, pokud nechcete použít režim automatické instalace.\n"
+"\n"
#: ../../standalone/drakpxe:1
#, c-format
msgid ""
"No CD or DVD image found, please copy the installation program and rpm files."
msgstr ""
+"Nebylo nalezen CD či DVD obraz, prosím zkopírujte instalační program a rpm "
+"soubory."
#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
+#, c-format
msgid "No image found"
-msgstr "Nenalezena žádná tiskárna!"
+msgstr "Obraz nebyl nalezen"
#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
+#, c-format
msgid "Installation image directory"
-msgstr "Xpmac (instalační ovladač pro obrazovku)"
+msgstr "Adresář s obrazem instalace"
#: ../../standalone/drakpxe:1
#, c-format
@@ -17297,14 +17544,18 @@ msgid ""
"contents.\n"
"\n"
msgstr ""
+"Určete, kde je umístěn instalační obraz.\n"
+"\n"
+"Pokud nemáte již existující adresář, zkopírujte prosím obsah CD nebo DVD.\n"
+"\n"
#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
+#, c-format
msgid "The DHCP end ip"
msgstr "Konec pásma adres DHCP"
#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
+#, c-format
msgid "The DHCP start ip"
msgstr "Počátek pásma adres DHCP"
@@ -17317,27 +17568,30 @@ msgid ""
"The network address is %s using a netmask of %s.\n"
"\n"
msgstr ""
+"DHCP server dovoluje dalším počítačům spuštění pomocí PXE s využitím daného "
+"rozsahu adres.\n"
+"\n"
+"Síťová adresa je %s a použitá maska je %s\n"
+"\n"
#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
+#, c-format
msgid "Interface %s (on network %s)"
-msgstr "Rozhraní %s (používá modul %s)"
+msgstr "Rozhraní %s (na síti %s)"
#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
+#, c-format
msgid "Please choose which network interface will be used for the dhcp server."
-msgstr ""
-"Vyberte si prosím, který síťový adaptér chcete použít pro připojení k "
-"internetu"
+msgstr "Vyberte si prosím, který síťový adaptér chcete použít pro dhcp server."
#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"You are about to configure your computer to install a PXE server as a DHCP "
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -17345,9 +17599,10 @@ msgid ""
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
"(LAN)."
msgstr ""
-"Váš počítač bude nastaven pro sdílení svého připojení k Internetu.\n"
-"Tato vlastnost umožňuje přístup dalších počítačů na lokální síti k síti "
-"Internet přes připojení tohoto počítače.\n"
+"Váš počítač bude nastaven jako instalační PXE server se službou DHCP\n"
+"a TFTP serveru.\n"
+"Tato vlastnost umožňuje instalovat další počítače na lokální síti pomocí\n"
+"počítače.\n"
"\n"
"Před pokračováním se ujistěte, že jste nastavili vaši síť a připojení k "
"Internetu pomocí aplikace drakconnect.\n"
@@ -17355,14 +17610,14 @@ msgstr ""
"Pozn.: Pro nastavení lokální sítě (LAN) potřebujete vyhrazený síťový adaptér."
#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
+#, c-format
msgid "Installation Server Configuration"
-msgstr "Nastavení serveru dhcpd"
+msgstr "Nastavení pro instalaci serveru"
#: ../../standalone/drakpxe:1
-#, fuzzy, c-format
+#, c-format
msgid "PXE Server Configuration"
-msgstr "Nastavení serveru dhcpd"
+msgstr "Nastavení PXE serveru"
#: ../../standalone/draksec:1
#, c-format
@@ -17390,13 +17645,13 @@ msgid "Network Options"
msgstr "Volby sítě"
#: ../../standalone/draksec:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The following options can be set to customize your\n"
"system security. If you need an explanation, look at the help tooltip.\n"
msgstr ""
"Nastavením následujících voleb lze upravit zabezpečení vašeho\n"
-"systému. Pokud potřebujete poradit, stiskněte tlačítko Nápověda.\n"
+"systému. Pokud potřebujete poradit, prohlédněte si tipy s nápovědou.\n"
#: ../../standalone/draksec:1
#, c-format
@@ -17414,12 +17669,12 @@ msgid "Security Level:"
msgstr "Úroveň zabezpečení:"
#: ../../standalone/draksec:1
-#, fuzzy, c-format
+#, c-format
msgid "(default value: %s)"
-msgstr " (výchozí: %s)"
+msgstr "(výchozí hodnota: %s)"
#: ../../standalone/draksec:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Standard: This is the standard security recommended for a computer that will "
"be used to connect\n"
@@ -17447,8 +17702,8 @@ msgstr ""
"síti\n"
" Internet jako klient.\n"
"\n"
-"Vysoká: Jsou již zavedena některá omezení, a každou noc je spuštěno více "
-"automatických kontrol.\n"
+"Vysoká: Jsou již zavedena některá omezení a každou noc je spuštěno "
+"několik automatických kontrol.\n"
"\n"
"Vyšší: Úroveň zabezpečení je nyní dostatečně vysoká, aby bylo možné "
"použít\n"
@@ -17543,6 +17798,11 @@ msgid "choose image file"
msgstr "vyberte soubor s obrazem"
#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "vyberte soubor s obrazem"
+
+#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
msgstr "Nastavit obrázek pro bootsplash"
@@ -17839,16 +18099,17 @@ msgstr "sekundární"
msgid ""
"Click on a device in the left tree in order to display its information here."
msgstr ""
+"Klepněte na zařízení v levé části stromu a zobrazíte zde o něm informace."
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Unknown"
-msgstr "Neznámý model"
+msgstr "Neznámý"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "unknown"
-msgstr "Neznámý model"
+msgstr "neznámý"
#: ../../standalone/harddrake2:1
#, c-format
@@ -17920,11 +18181,13 @@ msgid ""
"Once you've selected a device, you'll be able to see the device information "
"in fields displayed on the right frame (\"Information\")"
msgstr ""
+"Pokud vyberete nějaké zařízení, uvidíte o něm informace v pravém rámci "
+"(\"Informace\")"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Select a device !"
-msgstr "Zvolte si skener"
+msgstr "Zvolte zařízení !"
#: ../../standalone/harddrake2:1
#, c-format
@@ -17941,9 +18204,9 @@ msgid "Harddrake help"
msgstr "Nápověda pro HardDrake"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "/_Fields description"
-msgstr "Popis"
+msgstr "/_Popis položek"
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
@@ -17956,19 +18219,19 @@ msgid "/_Quit"
msgstr "/_Konec"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "/Autodetect _jazz drives"
-msgstr "Automaticky nalezeno"
+msgstr "/Automaticky detekovat _jazz disky"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "/Autodetect _modems"
-msgstr "Automaticky nalezeno"
+msgstr "/Automaticky detekovat _modemy"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "/Autodetect _printers"
-msgstr "Automaticky nalezeno"
+msgstr "/Automaticky detekova _tiskárny"
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
@@ -17976,9 +18239,9 @@ msgid "/_Options"
msgstr "/_Volby"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "the vendor name of the processor"
-msgstr "jméno dodavatele zařízení"
+msgstr "jméno dodavatele procesoru"
#: ../../standalone/harddrake2:1
#, c-format
@@ -17986,39 +18249,49 @@ msgid "the vendor name of the device"
msgstr "jméno dodavatele zařízení"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "The type of bus on which the mouse is connected"
-msgstr "Ke kterému sériovému portu je připojena vaše myš?"
+msgstr "Typ sběrnice, ke které je připojena myš"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Stepping of the cpu (sub model (generation) number)"
-msgstr ""
+msgstr "Model cpu (generované číslo pro submodel)"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Model stepping"
-msgstr "nahrát volby"
+msgstr "Číslování modelu"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "the number of the processor"
-msgstr "barva lišty s průběhem"
+msgstr "číslo procesoru"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Processor ID"
-msgstr ""
+msgstr "ID procesoru"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "network printer port"
-msgstr ", síťová tiskárna \"%s\", port %s"
+msgstr "port síťové tiskárny"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
+msgid "the name of the CPU"
+msgstr "název CPU"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "Name"
-msgstr "Jméno: "
+msgstr "Název"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the number of buttons the mouse has"
+msgstr "počet tlačítek na myši"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18026,19 +18299,19 @@ msgid "Number of buttons"
msgstr "Počet tlačítek"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Official vendor name of the cpu"
-msgstr "jméno dodavatele zařízení"
+msgstr "Oficiální jméno dodavatele procesoru"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Model name"
-msgstr "Název modulu"
+msgstr "Název modelu"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr ""
+msgstr "Generace cpu (např. 8 pro PentiumIII, ...)"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18063,22 +18336,22 @@ msgstr "Třída médií"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Sub generation of the cpu"
-msgstr ""
+msgstr "Specifická třída cpu"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Level"
-msgstr "úroveň"
+msgstr "Úroveň"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Format of floppies supported by the drive"
-msgstr ""
+msgstr "Druhy formátu disket podporované mechanikou"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Floppy format"
-msgstr "Formátovat"
+msgstr "Formáty pro diskety"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18086,41 +18359,45 @@ msgid ""
"Some of the early i486DX-100 chips cannot reliably return to operating mode "
"after the \"halt\" instruction is used"
msgstr ""
+"Nekteré první modely chipsetů i486DX100 neprováděly správně po instrucki "
+"\"halt\" návrat do operačního režimu"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Halt bug"
-msgstr ""
+msgstr "Halt chyba"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Early pentiums were buggy and freezed when decoding the F00F bytecode"
msgstr ""
+"První verze procesorů Pentium byly chybové a způsobovaly zatuhnutí při "
+"dekodování instrukce F00F"
#: ../../standalone/harddrake2:1
#, c-format
msgid "F00f bug"
-msgstr ""
+msgstr "F00f chyba"
#: ../../standalone/harddrake2:1
#, c-format
msgid "yes means the arithmetic coprocessor has an exception vector attached"
-msgstr ""
+msgstr "ano znamená, že aritmetický koprocesor je vybaven vektorem výjimek"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Whether the FPU has an irq vector"
-msgstr ""
+msgstr "Zda má FPU irq vektor"
#: ../../standalone/harddrake2:1
#, c-format
msgid "yes means the processor has an arithmetic coprocessor"
-msgstr ""
+msgstr "ano znamená, že procesor má aritmetický koprocesor"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Is FPU present"
-msgstr ""
+msgstr "Přítomnost FPU"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18129,21 +18406,23 @@ msgid ""
"processor which did not achieve the required precision when performing a "
"Floating point DIVision (FDIV)"
msgstr ""
+"První verze procesorů Pentium měly z výroby chybu v jednotce pro plovoucí "
+"řádovou čárku, která nedosahovala požadované přesnosti při operaci FDIV"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Fdiv bug"
-msgstr ""
+msgstr "Fdiv chyba"
#: ../../standalone/harddrake2:1
#, c-format
msgid "CPU flags reported by the kernel"
-msgstr ""
+msgstr "Příznaky CPU nalezené jádrem"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Flags"
-msgstr ""
+msgstr "Příznaky"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18156,7 +18435,7 @@ msgid "Module"
msgstr "Modul"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "new dynamic device name generated by core kernel devfs"
msgstr ""
"nový, dynamický název zařízení, který generuje zabudovaný systém jádra devfs"
@@ -18177,72 +18456,75 @@ msgid "Old device file"
msgstr "Starý soubor se zařízením"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "This field describes the device"
-msgstr "toto pole popisuje zařízení"
+msgstr "Toto pole popisuje zařízení"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
+"Frekvence CPU v MHz (Megahertz je hodnota přibližně rovna vypočtenému počtu "
+"instrukcí, které je schopen procesor provést za sekundu)"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Frequency (MHz)"
-msgstr ""
+msgstr "Frekvence (MHz)"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Information level that can be obtained through the cpuid instruction"
-msgstr ""
+msgstr "Úroveň, kterou lze získat po provedení instrukce cpuid"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Cpuid level"
-msgstr "Úroveň zabezpečení"
+msgstr "Cpuid úroveň"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Family of the cpu (eg: 6 for i686 class)"
-msgstr ""
+msgstr "Rodina pro cpu (např. 6 pro i686 třídu)"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Cpuid family"
-msgstr ""
+msgstr "Rodina CPU"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr ""
+msgstr "Zda má cpu chybu čárky Cyrix 6x86"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Coma bug"
-msgstr ""
+msgstr "Chyba čárky"
#: ../../standalone/harddrake2:1
#, c-format
msgid "special capacities of the driver (burning ability and or DVD support)"
msgstr ""
+"speciální schopnosti zařízení (schopnost vypalování a/nebo podpora DVD)"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Drive capacity"
-msgstr ""
+msgstr "Kapacita zařízení"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Size of the (second level) cpu cache"
-msgstr ""
+msgstr "Velikost cache (druhá úroveň) na cpu"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Cache size"
-msgstr "Velikost bloku (chunk)"
+msgstr "Velikost vyrovnávací paměti"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18261,12 +18543,12 @@ msgid "Location on the bus"
msgstr "Umístění na sběrnici"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"- PCI and USB devices: this lists the vendor, device, subvendor and "
"subdevice PCI/USB ids"
msgstr ""
-"- zařízení PCI a USB: vypisuje se dodavatel, zařízení, poddodavatel a "
+"- zařízení PCI a USB: vypisuje se dodavatel, zařízení, subdodavatel a "
"podzařízení (ID PCI/USB)"
#: ../../standalone/harddrake2:1
@@ -18281,11 +18563,14 @@ msgid ""
"initialize a timer counter. Its result is stored as bogomips as a way to "
"\"benchmark\" the cpu."
msgstr ""
+"GNU/Linux jádro potřebuje spustit výpočetní smyčku při spuštění pro "
+"inicializaci čítače hodin. Výsledek je uložen v proměnné bogomips jako "
+"takový \"bechmark\" pro cpu."
#: ../../standalone/harddrake2:1
#, c-format
msgid "Bogomips"
-msgstr ""
+msgstr "Bogomips"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18380,7 +18665,7 @@ msgid "load setting"
msgstr "nahrát volby"
#: ../../standalone/logdrake:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"You will receive an alert if one of the selected services is no longer "
"running"
@@ -18580,59 +18865,60 @@ msgstr "Emulovat třetí tlačítko?"
#: ../../standalone/mousedrake:1
#, c-format
msgid "Please choose your mouse type."
-msgstr "Jaký je typ vaší myši?"
+msgstr "Vyberte si typ vaši myši."
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Connect %s"
-msgstr "Připojit"
+msgstr "Připojit %s"
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Disconnect %s"
-msgstr "Odpojit"
+msgstr "Odpojit %s"
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
"network"
-msgstr "Varování, bylo detekováno jiné připojení k Internetu, zřejmě je to síť"
+msgstr ""
+"Varování, bylo detekováno jiné připojení k Internetu, zřejmě je použita síť"
#: ../../standalone/net_monitor:1
#, c-format
msgid "received"
-msgstr ""
+msgstr "přijato"
#: ../../standalone/net_monitor:1
#, c-format
msgid "transmitted"
-msgstr ""
+msgstr "přeneseno"
#: ../../standalone/net_monitor:1
#, c-format
msgid "received: "
-msgstr ""
+msgstr "přijato: "
#: ../../standalone/net_monitor:1
#, c-format
msgid "sent: "
-msgstr ""
+msgstr "odesláno: "
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Local measure"
-msgstr "Lokální soubory"
+msgstr "Lokální měřítko"
#: ../../standalone/net_monitor:1
#, c-format
msgid "average"
-msgstr ""
+msgstr "průměr"
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Color configuration"
-msgstr "nastavení varování"
+msgstr "Nastavení barev"
#: ../../standalone/net_monitor:1
#, c-format
@@ -18640,141 +18926,143 @@ msgid ""
"Connection failed.\n"
"Verify your configuration in the Mandrake Control Center."
msgstr ""
+"Připojení selhalo.\n"
+"Ověřte nastavení v řídícím centru Mandrake."
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Connection complete."
-msgstr "Rychlost připojení"
+msgstr "Připojení ukončeno."
#: ../../standalone/net_monitor:1
#, c-format
msgid "Disconnection from the Internet complete."
-msgstr ""
+msgstr "Odpojení z Internetu ukončeno."
#: ../../standalone/net_monitor:1
#, c-format
msgid "Disconnection from the Internet failed."
-msgstr ""
+msgstr "Odpojení z Internetu selhalo."
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Connecting to the Internet "
msgstr "Připojení k Internetu"
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Disconnecting from the Internet "
-msgstr "Připojení k Internetu"
+msgstr "Odpojení z Internetu "
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Wait please, testing your connection..."
-msgstr "Testuji připojení k internetu..."
+msgstr "Čekejte prosím, testuji připojení..."
#: ../../standalone/net_monitor:1
#, c-format
msgid "Logs"
-msgstr ""
+msgstr "Logy"
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Connection Time: "
-msgstr "Typ připojení:"
+msgstr "Doba připojení: "
#: ../../standalone/net_monitor:1
#, c-format
msgid "Receiving Speed:"
-msgstr ""
+msgstr "Rychlost na příjmu:"
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Sending Speed:"
-msgstr "Posílám soubory..."
+msgstr "Odchozí rychlost:"
#: ../../standalone/net_monitor:1
#, c-format
msgid "Statistics"
-msgstr ""
+msgstr "Statistiky"
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Profile "
-msgstr "Profil: "
+msgstr "Profil "
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Network Monitoring"
-msgstr "Nastavení sítě"
+msgstr "Monitorování sítě"
#: ../../standalone/printerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Reading data of installed printers..."
-msgstr "Tiskárny k dispozici"
+msgstr "Načítám data z instalovaných tiskáren..."
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Name/IP address of host:"
-msgstr ""
+msgstr "Název/IP adresa počítače:"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "This host is already in the list, it cannot be added again.\n"
-msgstr ""
+msgstr "Tento počítač je již na seznamu, nelze jej tedy přidat dvakrát.\n"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Scannerdrake"
-msgstr "Zvolte si skener"
+msgstr "Scannerdrake"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "You must enter a host name or an IP address.\n"
-msgstr "Zadejte prosím název počítače nebo IP."
+msgstr "Musíte zadat název počítače nebo IP adresu.\n"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Choose the host on which the local scanners should be made available:"
-msgstr ""
+msgstr "Zvolte počítač, na kterém budou přístupné lokální skenery:"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Sharing of local scanners"
-msgstr "Tiskárny k dispozici"
+msgstr "Sdílení lokálních skenerů"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "This machine"
-msgstr "(na tomto počítači)"
+msgstr "Tento počítač"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Remove selected host"
-msgstr "Odstranit vybrané"
+msgstr "Odstranit vybraný počítač"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Edit selected host"
-msgstr "detekováno %s"
+msgstr "Upravit vybraný počítač"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Add host"
-msgstr "Přidat uživatele"
+msgstr "Přidat počítač"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "These are the machines from which the scanners should be used:"
-msgstr ""
+msgstr "Zde je seznam počítačů, ze kterých je možné využít skenery: "
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Usage of remote scanners"
-msgstr "Použít volné místo"
+msgstr "Použití vzdálených skenerů"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "All remote machines"
-msgstr "(na tomto počítači)"
+msgstr "Všechny vzdálené počítače"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -18782,26 +19070,27 @@ msgid ""
"These are the machines on which the locally connected scanner(s) should be "
"available:"
msgstr ""
+"Zde je seznam počítačů, na kterých jsou přístupné lokálně připojené skenery: "
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Use the scanners on hosts: "
-msgstr ""
+msgstr "Použít skenery na počítači: "
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Use scanners on remote computers"
-msgstr ""
+msgstr "Použít skenery na vzdáleném počítači"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Scanner sharing to hosts: "
-msgstr "Sdílení souborů"
+msgstr "Sdílet skener pro počítače: "
#: ../../standalone/scannerdrake:1
#, c-format
msgid "The scanners on this machine are available to other computers"
-msgstr ""
+msgstr "Skenery na tomto počítači jsou přístupné i pro vzdálené počítače"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -18809,6 +19098,8 @@ msgid ""
"You can also decide here whether scanners on remote machines should be made "
"available on this machine."
msgstr ""
+"Zde můžete rozhodnout o tom, zda vzdáleně přístupné skenery budou využitelné "
+"i na tomto počítači."
#: ../../standalone/scannerdrake:1
#, c-format
@@ -18816,66 +19107,70 @@ msgid ""
"Here you can choose whether the scanners connected to this machine should be "
"accessable by remote machines and by which remote machines."
msgstr ""
+"Zde můžete nastavit, zda skenery, co jsou připojeny k tomuto počítači, mohou "
+"být vzdáleně přístupné a také přesně z jakých počítačů."
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Re-generating list of configured scanners ..."
-msgstr ""
+msgstr "Znovu generuji seznam nastavených skenerů..."
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Searching for new scanners ..."
-msgstr "Tiskárny k dispozici"
+msgstr "Vyhledávám nové kenery ..."
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Searching for configured scanners ..."
-msgstr "Tiskárny k dispozici"
+msgstr "Vyhledávám nastavené skenery ...."
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Scanner sharing"
-msgstr "Sdílení souborů"
+msgstr "Sdílení skeneru"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Add a scanner manually"
-msgstr "Vybrat uživatele manuálně"
+msgstr "Přidat skener ručně"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Search for new scanners"
-msgstr "Tiskárny k dispozici"
+msgstr "Vyhledání nový skenerů"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "There are no scanners found which are available on your system.\n"
-msgstr "Na vašem počítači nebyla nalezena žádná přímo připojená tiskárna"
+msgstr "Na vašem počítači nebyly nalezeny žádné připojené skenery.\n"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The following scanner\n"
"\n"
"%s\n"
"is available on your system.\n"
msgstr ""
+"V tomto počítači je dostupný skener\n"
"\n"
-"Našel jsem jednu neznámou tiskárnu přímo připojenou k vašemu počítači"
+"%s\n"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The following scanners\n"
"\n"
"%s\n"
"are available on your system.\n"
msgstr ""
+"V tomto počítači jsou dostupné skenery\n"
"\n"
-"Našel jsem jednu neznámou tiskárnu přímo připojenou k vašemu počítači"
+"%s\n"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Your %s has been configured.\n"
"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
@@ -18891,29 +19186,27 @@ msgid "choose device"
msgstr "vyberte zařízení"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Please select the device where your %s is attached"
-msgstr ""
-"Scannerdrake nebyl schopen detekovat váš skener %s.\n"
-"Vyberte prosím zařízení, ke kterému je skener připojen"
+msgstr "Vyberte prosím zařízení, ke kterému je skener %s připojen"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Searching for scanners ..."
-msgstr "Tiskárny k dispozici"
+msgstr "Vyhledávám skenery..."
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Auto-detect available ports"
-msgstr "Automaticky nalezeno"
+msgstr "Automaticky detekovat dostupné porty"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "(Note: Parallel ports cannot be auto-detected)"
-msgstr ""
+msgstr "(Pozn: Paralelní porty nepoužívají autodetekci)"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The %s must be configured by printerdrake.\n"
"You can launch printerdrake from the Mandrake Control Center in Hardware "
@@ -18923,14 +19216,14 @@ msgstr ""
"Spustit PrinterDrake lze z řídícího centra Mandrake v sekci Hardware"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "The %s is unsupported"
msgstr "Skener %s není podporován"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "The %s is not known by this version of Scannerdrake."
-msgstr "Tato verze Mandrake Linux %s nepodporuje."
+msgstr "Skener %s není zatím v této verzi Scannerdrake podporován."
#: ../../standalone/scannerdrake:1
#, c-format
@@ -18938,29 +19231,29 @@ msgid "The %s is not supported by this version of Mandrake Linux."
msgstr "Tato verze Mandrake Linux %s nepodporuje."
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Port: %s"
-msgstr "Port"
+msgstr "Port: %s"
#: ../../standalone/scannerdrake:1
#, c-format
msgid ", "
-msgstr ""
+msgstr ", "
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Detected model: %s"
-msgstr "Nalezen model: %s %s"
+msgstr "Nalezen model: %s"
#: ../../standalone/scannerdrake:1
#, c-format
msgid " ("
-msgstr ""
+msgstr " ("
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Select a scanner model"
-msgstr "Zvolte si skener"
+msgstr "Zvolte si model skeneru"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -18968,14 +19261,14 @@ msgid "%s is not in the scanner database, configure it manually?"
msgstr "%s není v databázi skenerů, nastavit ručně?"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "%s found on %s, configure it automatically?"
-msgstr "%s nalezeno na %s, chcete ho nastavit?"
+msgstr "%s nalezeno na %s, chcete ho nastavit automaticky?"
#: ../../standalone/service_harddrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Hardware probing in progress"
-msgstr "Probíhá detekce"
+msgstr "Probíhá detekce hardware"
#: ../../standalone/service_harddrake:1
#, c-format
@@ -19053,7 +19346,7 @@ msgstr "Vědecká stanice"
#: ../../share/compssUsers:999
msgid "Scientific applications such as gnuplot"
-msgstr ""
+msgstr "Vědecké aplikace jako je gnuplot"
#: ../../share/compssUsers:999
msgid "Console Tools"
@@ -19132,12 +19425,10 @@ msgid "Apache, Pro-ftpd"
msgstr "Apache a Pro-ftpd"
#: ../../share/compssUsers:999
-#, fuzzy
msgid "Mail"
-msgstr "Mali"
+msgstr "Pošta"
#: ../../share/compssUsers:999
-#, fuzzy
msgid "Postfix mail server"
msgstr "Poštovní server Postfix"
@@ -19183,6 +19474,10 @@ msgstr ""
"Skupina programů pro poštu, diskusní skupiny, web, přenos souborů a chat"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Hry"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimédia - grafika"
@@ -19236,23 +19531,116 @@ msgstr "Správa osobních financí"
#: ../../share/compssUsers:999
msgid "Programs to manage your finances, such as gnucash"
-msgstr "Programy na správu financí jako např. GnuCash"
+msgstr "Programy na správu vašich financí jako např. gnucash"
+
+#~ msgid "no network card found"
+#~ msgstr "nebyla nalezena síťová karta"
#~ 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''."
+#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "and view animations with Mozilla and Konqueror, or read your mail and "
+#~ "handle your personal information with Evolution and Kmail"
#~ msgstr ""
-#~ "Prosím zadejte název vašeho počítače, protože ho vyžadují některé\n"
-#~ "DHCP servery. Tento název musí být úplný, jako například\n"
-#~ "'mybox.mylab.myco.com'."
+#~ "Distribuce Mandrake Linux 9.1 vám přináší ten nejlepší software. S pomocí "
+#~ "aplikací Mozilla a Konqueror si můžete prohlížet webové stránky a "
+#~ "animace, ke čtení pošty a zpracování osobních informací lze použít "
+#~ "aplikace Evolution a Kmail."
-#~ msgid "DrakFloppy Error: %s"
-#~ msgstr "Chyba DrakFloppy: %s"
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Dostaňte z Internetu co nejvíce"
-#~ msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#~ msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-iso8859-2,*"
+#~ msgid "Push multimedia to its limits!"
+#~ msgstr "Využijte multimédia na maximum!"
+
+#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
+#~ msgstr "Objevte nejnovější verze nástrojů pro grafiku a multimédia!"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 nabízí ty nejlepší Open Source hry - arkády, akční, "
+#~ "strategické, ..."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ "Ovládací centrum pro Mandrake Linux 9.0 poskytuje výkonné nástroje pro "
+#~ "správu a nastavení vašeho počítače."
+
+#~ msgid "User interfaces"
+#~ msgstr "Uživatelská rozhraní"
+
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+#~ "Využijte plnou sílu kompilátoru GNU gcc 3, stejně jako nejlepší vývojová "
+#~ "prostředí, které Open Source software poskytuje."
+
+#~ msgid "Development simplified"
+#~ msgstr "Zjednodušený vývoj"
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ "Tento produkt pro firewall v sobě zahrnuje síťové funkce, které uspokojí "
+#~ "všechny vaše potřeby při zabezpečení vaší sítě."
+
+#~ msgid ""
+#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
+#~ "N.F.)"
+#~ msgstr ""
+#~ "Produktová řada společnosti Mandrake zahrnuje produkt Multi Network "
+#~ "Firewall (M. N. F.)."
+
+#~ msgid "Strategic partners"
+#~ msgstr "Strategičtí partneři"
+
+#~ msgid ""
+#~ "Whether you choose to teach yourself online or via our network of "
+#~ "training partners, the Linux-Campus catalogue prepares you for the "
+#~ "acknowledged LPI certification program (worldwide professional technical "
+#~ "certification)"
+#~ msgstr ""
+#~ "Ať už se budete školit on-line nebo pomocí naší sítě školících partnerů, "
+#~ "katalog Linux-Campus vás připraví na známý certifikační program LPI "
+#~ "(celosvětovou profesionální technickou certifikaci)."
+
+#~ msgid "Certify yourself on Linux"
+#~ msgstr "Získejte certifikát pro Linux"
+
+#~ msgid ""
+#~ "The training program has been created to respond to the needs of both end "
+#~ "users and experts (Network and System administrators)"
+#~ msgstr ""
+#~ "Program školení byl navržen tak, aby uspokojil požadavky jak koncových "
+#~ "uživatelů, tak expertů (správců sítí a systémů)"
+
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr ""
+#~ "Objevte katalog školení společnosti MandrakeSoft na stránkách Linux-Campus"
+
+#~ msgid ""
+#~ "MandrakeClub and Mandrake Corporate Club were created for business and "
+#~ "private users of Mandrake Linux who would like to directly support their "
+#~ "favorite Linux distribution while also receiving special privileges. If "
+#~ "you enjoy our products, if your company benefits from our products to "
+#~ "gain a competititve edge, if you want to support Mandrake Linux "
+#~ "development, join MandrakeClub!"
+#~ msgstr ""
+#~ "Kluby MandrakeClub a Mandrake Corporate Club byly vytvořeny pro ty "
+#~ "podnikové a soukromé uživatele systému Mandrake Linux, kteří chtějí přímo "
+#~ "podporovat svou oblíbenou distribuci Linuxu a ještě k tomu obdržet "
+#~ "zvláštní privilegia. Pokud vás naše produkty oslovily, jestliže vaše "
+#~ "společnost díky našim produktům získala konkurenční výhodu, pokud chcete "
+#~ "podpořit vývoj distribuce Mandrake Linux, připojte se ke klubu "
+#~ "MandrakeClub!"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr "Objevte MandrakeClub a Mandrake Corporate Club"
#~ msgid "Launch Aurora at boot time"
#~ msgstr "Spustit Auroru při startu"
@@ -19269,12 +19657,941 @@ msgstr "Programy na správu financí jako např. GnuCash"
#~ msgid "NewStyle Categorizing Monitor"
#~ msgstr "Novější zatříděný monitor "
+#~ msgid ""
+#~ "As a review, DrakX will present a summary of various information it has\n"
+#~ "about your system. Depending on your installed hardware, you may have "
+#~ "some\n"
+#~ "or all of the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary.\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Country\": check the current country selection. If you are not in "
+#~ "this\n"
+#~ "country, click on the button and choose another one.\n"
+#~ "\n"
+#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+#~ "primary language you have chosen. But here, just as in your choice of a\n"
+#~ "keyboard, you may not be in a country to which the chosen language\n"
+#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
+#~ "configure the clock for the correct timezone.\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation.\n"
+#~ "\n"
+#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+#~ "click that button. This should be reserved to advanced users.\n"
+#~ "\n"
+#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+#~ "interface in \"800x600\" resolution. If that does not suits you, click "
+#~ "on\n"
+#~ "the button to reconfigure your graphical interface.\n"
+#~ "\n"
+#~ " * \"Network\": If you want to configure your Internet or local network\n"
+#~ "access now, you can by clicking on this button.\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. If you notice the sound card displayed is not the one "
+#~ "that\n"
+#~ "is actually present on your system, you can click on the button and "
+#~ "choose\n"
+#~ "another driver.\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. If you have a TV card and it is not detected, click on the button "
+#~ "to\n"
+#~ "try to configure it manually.\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with the card."
+#~ msgstr ""
+#~ "Zde jsou shromážděny různé informace, které se vztahují k tomuto "
+#~ "počítači.\n"
+#~ "V závislosti na tom, zda je či není přítomen daný hardware, můžete nebo\n"
+#~ "nemusíte vidět tyto položky: \n"
+#~ "\n"
+#~ " * \"Myš\": pokud je zjištěna myš, můžete zde změnit její nastavení.\n"
+#~ "\n"
+#~ " * \"Klávesnice\": zkontrolujte nastavení rozložení kláves, klepnutím na "
+#~ "tlačítko\n"
+#~ "lze změnit rozložení kláves, pokud je to nutné.\n"
+#~ "\n"
+#~ " * \"Země\": zkontrolujte výběr země. Pokud výběr nesouhlasí, klepnutím "
+#~ "na\n"
+#~ "tlačítko můžete vybrat jinou zemi.\n"
+#~ "\n"
+#~ " * \"Časové pásmo\": instalační program se pokusí odhadnout časové pásmo "
+#~ "na\n"
+#~ "základě vámi vybraného jazyka. To ale nemusí souhlasit, stejně jako v "
+#~ "případě\n"
+#~ "rozložení klávesnice můžete žít v jiné zemi a proto je zde umožněno "
+#~ "změnit\n"
+#~ "časovou zónu, ve které se nyní nacházíte.\n"
+#~ "\n"
+#~ " * \"Tiskárna\": Klepnutím na tlačítko \"Bez tiskárny\" se spustí "
+#~ "průvodce\n"
+#~ "nastavením tiskárny. V odpovídající kapitole v \"Uživatelské příručce\" "
+#~ "se\n"
+#~ "dozvíte více o tom, jak tiskárnu nastavit. Rozhraní, které je v ní "
+#~ "popsané, je\n"
+#~ "podobné rozhraní použitému při této instalaci.\n"
+#~ "\n"
+#~ " * \"Zavaděč\": pokud chcete změnit nastavení zavaděče, můžete to "
+#~ "provést\n"
+#~ "klepnutím na tlačítko. Změny by měly provádět pouze zkušení uživatelé.\n"
+#~ "\n"
+#~ " * \"Grafické rozlišení\": instalační program jako výchozí rozlišení "
+#~ "zvolí\n"
+#~ "rozlišení \"800x600\". Pokud vám to nevyhovuje, je možné to změnit.\n"
+#~ "\n"
+#~ " * \"Síť\": pokud chcete nyní nastavit připojení k Internetu nebo k "
+#~ "lokální\n"
+#~ "síti, klepnutím na tlačítko se spustí průvodce.\n"
+#~ "\n"
+#~ " * \"Zvuková karta\": pokud byla při instalaci detekována zvuková karta, "
+#~ "je\n"
+#~ "zde zobrazena. Pokud uvedený ovladač není správný, lze provést výběr "
+#~ "správného.\n"
+#~ "\n"
+#~ " * \"TV karta\": pokud byla detekována televizní karta, je zde "
+#~ "zobrazena.\n"
+#~ "Pokud karta nebyla automaticky detekována, klepnutím na tlačítko můžete.\n"
+#~ "provést ruční nastavení.\n"
+#~ "\n"
+#~ " * \"ISDN karta\": pokud byla detekována ISDN karta, je zde zobrazena.\n"
+#~ "Klepnutím na tlačítko můžete měnit parametry pro tuto kartu."
+
+#~ msgid ""
+#~ "DrakX will first detect any IDE devices present in your computer. It "
+#~ "will\n"
+#~ "also scan for one or more PCI SCSI cards on your system. If a SCSI card "
+#~ "is\n"
+#~ "found, DrakX will automatically install the appropriate driver.\n"
+#~ "\n"
+#~ "Because hardware detection is not foolproof, DrakX will ask you if you "
+#~ "have\n"
+#~ "a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI "
+#~ "cards\n"
+#~ "to choose from. Click \"No\" if you know that you have no SCSI hardware "
+#~ "in\n"
+#~ "your machine. If you're not sure, you can check the list of hardware\n"
+#~ "detected in your machine by selecting \"See hardware info \" and "
+#~ "clicking\n"
+#~ "the \"Next ->\". Examine the list of hardware and then click on the "
+#~ "\"Next\n"
+#~ "->\" button to return to the SCSI interface question.\n"
+#~ "\n"
+#~ "If you had to manually specify your PCI SCSI adapter, DrakX will ask if "
+#~ "you\n"
+#~ "want to configure options for it. You should allow DrakX to probe the\n"
+#~ "hardware for the card-specific options which are needed to initialize "
+#~ "the\n"
+#~ "adapter. Most of the time, DrakX will get through this step without any\n"
+#~ "issues.\n"
+#~ "\n"
+#~ "If DrakX is not able to probe for the options to automatically determine\n"
+#~ "which parameters need to be passed to the hardware, you'll need to "
+#~ "manually\n"
+#~ "configure the driver."
+#~ msgstr ""
+#~ "Aplikace DrakX se nejdříve pokusí najít všechny pevné disky v počítači. "
+#~ "Také se\n"
+#~ "pokusí nalézt jeden nebo více PCI SCSI adaptérů. Pokud nějaký najde,\n"
+#~ "automaticky nainstaluje správný ovladač.\n"
+#~ "\n"
+#~ "Protože automatická detekce hardware nemusí vždy nalézt všechny typy "
+#~ "hardware,\n"
+#~ "budete v dialogu dotázáni, zda vůbec máte nějaký SCSI adaptér. Odpovězte\n"
+#~ "\"Ano\" a vyberte si ze seznamu adaptérů nebo odpovězte \"Ne\", jestliže "
+#~ "žádný\n"
+#~ "adaptér nemáte. Pokud nevíte přesně, zda-li nějaký máte, můžete to "
+#~ "zjistit\n"
+#~ "klepnutím na tlačítko \"Zobrazit informace o hardware\"a prozkoumat "
+#~ "seznam.\n"
+#~ "Klepnutím na tlačítko \"Další ->\" se vrátíte k otázce o adaptéru SCSI.\n"
+#~ "\n"
+#~ "Pokud si budete muset vybrat ovladač ručně, aplikace DrakX se zeptá, zda "
+#~ "pro\n"
+#~ "něj chcete zadat nějaké volby Měli byste povolit aplikaci DrakX, ať se "
+#~ "pokusí\n"
+#~ "zjistit, které volby jsou pro danou kartu potřeba. Většinou to funguje "
+#~ "dobře.\n"
+#~ "\n"
+#~ "Pokud to nebude fungovat, budete muset zadat další informace pro ovladač "
+#~ "ručně."
+
+#~ msgid ""
+#~ "Now, it's time to select a printing system for your computer. Other OSs "
+#~ "may\n"
+#~ "offer you one, but Mandrake Linux offers two. Each of the printing "
+#~ "systems\n"
+#~ "is best for a particular type of configuration.\n"
+#~ "\n"
+#~ " * \"pdq\" -- which is an acronym for ``print, don't queue'', is the "
+#~ "choice\n"
+#~ "if you have a direct connection to your printer, you want to be able to\n"
+#~ "panic out of printer jams, and you do not have networked printers. "
+#~ "(\"pdq\n"
+#~ "\" will handle only very simple network cases and is somewhat slow when\n"
+#~ "used with networks.) It's recommended that you use \"pdq \" if this is "
+#~ "your\n"
+#~ "first experience with GNU/Linux.\n"
+#~ "\n"
+#~ " * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice "
+#~ "for\n"
+#~ "printing to your local printer or to one halfway around the planet. It "
+#~ "is\n"
+#~ "simple to configure and can act as a server or a client for the ancient\n"
+#~ "\"lpd \" printing system, so it compatible with older operating systems\n"
+#~ "that may still need print services. While quite powerful, the basic "
+#~ "setup\n"
+#~ "is almost as easy as \"pdq\". If you need to emulate a \"lpd\" server, "
+#~ "make\n"
+#~ "sure to turn on the \"cups-lpd \" daemon. \"CUPS\" includes graphical\n"
+#~ "front-ends for printing or choosing printer options and for managing the\n"
+#~ "printer.\n"
+#~ "\n"
+#~ "If you make a choice now, and later find that you don't like your "
+#~ "printing\n"
+#~ "system you may change it by running PrinterDrake from the Mandrake "
+#~ "Control\n"
+#~ "Center and clicking the expert button."
+#~ msgstr ""
+#~ "Zde si můžete vybrat tiskový systém, který budete používat. Jiné OS "
+#~ "nabízejí\n"
+#~ "jeden, Mandrake nabízí dva.\n"
+#~ "\n"
+#~ " * \"pdq\" - což znamená 'print, don't queue' a je vhodný tehdy, pokud "
+#~ "nemáte\n"
+#~ "žádné síťové tiskárny. Zvládá pouze několik možností a tisk na něj ze "
+#~ "sítě\n"
+#~ "je velmi pomalý. Pokud se s GNU/Linuxem teprve seznamujete, je "
+#~ "doporučeno\n"
+#~ "použít právě tento tiskový systém.\n"
+#~ "\n"
+#~ " * \"CUPS\"'Common Unix Printing System' je vynikající v tisku na "
+#~ "lokální\n"
+#~ "tiskárny stejně jako při tisku na tiskárnu na druhé straně planety. "
+#~ "Nastavení\n"
+#~ "je jednoduché a může fungovat jako klient i server pro klienty z \"lpd\"\n"
+#~ "systému, takže je s nimi kompatibilní. Je možné nastavit spoustu voleb,\n"
+#~ "ale základní nastavení je velmi jednoduché. Pokud potřebujete emulovat\n"
+#~ "\"lpd\" server, stačí spustit démona \"cups-lpd\". Má také grafické "
+#~ "rozhraní\n"
+#~ "pro tisk, nastavení tiskárny a správu tiskových úloh.\n"
+#~ "\n"
+#~ "Pokud provedete volbu teď a později zjistíte, že se vám daný systém "
+#~ "nelíbí,\n"
+#~ "můžete ho změnit spuštěním aplikace PrinterDrake z řídícího centra "
+#~ "Mandrake\n"
+#~ "a klepně na tlačítko pro experty."
+
+#~ msgid ""
+#~ "LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
+#~ "what it finds there:\n"
+#~ "\n"
+#~ " * if a Windows boot sector is found, it will replace it with a grub/"
+#~ "LILO\n"
+#~ "boot sector. This way you will be able to load either GNU/Linux or "
+#~ "another\n"
+#~ "OS.\n"
+#~ "\n"
+#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
+#~ "one.\n"
+#~ "\n"
+#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
+#~ "bootloader.\n"
+#~ "\n"
+#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
+#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
+#~ "disk\n"
+#~ "(\"On Floppy\").\n"
+#~ "\n"
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "LILO a grub jsou zavaděče operačního systému GNU/Linux. Běžně je tento "
+#~ "krok\n"
+#~ "plně automatický, instalační program analyzuje zaváděcí sektor na disku\n"
+#~ "a zachová se podle toho, co tam nalezne:\n"
+#~ "\n"
+#~ " * pokud je nalezen zaváděcí sektor z Windows, bude nahrazen zaváděcím\n"
+#~ "sektorem grub/LILO. To umožňuje zavést jak GNU/Linux tak i jiné OS.\n"
+#~ "\n"
+#~ " * pokud je nalezen zaváděcí sektor grub nebo LILO, bude nahrazen novým.\n"
+#~ "\n"
+#~ "Pokud instalační program nedokáže rozhodnout, zeptá se na to, kam se má\n"
+#~ "zavaděč umístit.\n"
+#~ "\n"
+#~ "\"Spouštěcí zařízení\": ve většině případů není nutné měnit (\"První "
+#~ "sektor\n"
+#~ "disku (MBR)\"), ale pokud si přejete, může být nainstalován na druhém "
+#~ "pevném\n"
+#~ "disku (\"/dev/hdb\"), nebo dokonce na disketě (\"Na disketu\").\n"
+#~ "\n"
+#~ "Zaškrtnutím volby \"Vytvořit spouštěcí disk\" budete mít pro případ "
+#~ "záchrany\n"
+#~ "po ruce spustitelný disk.\n"
+#~ "\n"
+#~ "CDROM s distribucí Mandrake Linux má zabudovaný záchranný režim. Můžete "
+#~ "ho\n"
+#~ "spustit přímo při spuštění z CD, kdy stisknete klávesu >>F1<< a na "
+#~ "příkazový\n"
+#~ "řádek napíšete >>rescue<<. Pokud počítač neumožňuje bootovat z CD, potom\n"
+#~ "v tomto kroku najdete řešení alespoň dvou následujících situací:\n"
+#~ "\n"
+#~ " * při instalaci zaváděcího programu přepíše aplikace DrakX zaváděcí "
+#~ "sektor\n"
+#~ "(MBR) na hlavním pevném disku (pokud nepoužíváte jiný zaváděcí program),\n"
+#~ "aby umožnil start buď systému Windows nebo GNU/Linux (pokud máte Windows\n"
+#~ "na počítači nainstalovány). Pokud potřebujete Windows přeinstalovat, "
+#~ "instalační\n"
+#~ "program společnosti Microsoft přepíše zaváděcí sektor a nebudete tak mít "
+#~ "možnost\n"
+#~ "spustit systém GNU/Linux!\n"
+#~ "\n"
+#~ " * pokud se objeví problémy a není možné spustit systém GNU/Linux z "
+#~ "pevného\n"
+#~ "disku, je tato disketa jedinou možností, jak systém spustit. Obsahuje "
+#~ "několik\n"
+#~ "základních systémových nástrojů pro obnovení systému pří výpadku "
+#~ "napájení,\n"
+#~ "nešťastném překlepu, chybě v hesle, nebo z jiných důvodů.\n"
+#~ "\n"
+#~ "Pokud zvolíte tento krok, musíte vložit disketu do mechaniky. Disketa "
+#~ "musí\n"
+#~ "být prázdná, nebo na ní mohou být data, která již nepotřebujete. Disketa\n"
+#~ "nemusí být formátována, aplikace DrakX přepíše celý její obsah."
+
+#~ msgid ""
+#~ "Your choice of preferred language will affect the language of the\n"
+#~ "documentation, the installer and the system in general. Select first the\n"
+#~ "region you are located in, and then the language you speak.\n"
+#~ "\n"
+#~ "Clicking on the \"Advanced\" button will allow you to select other\n"
+#~ "languages to be installed on your workstation, thereby installing the\n"
+#~ "language-specific files for system documentation and applications. For\n"
+#~ "example, if you will host users from Spain on your machine, select "
+#~ "English\n"
+#~ "as the default language in the tree view and \"Espanol\" in the Advanced\n"
+#~ "section.\n"
+#~ "\n"
+#~ "Note that you're not limited to choosing a single additional language. "
+#~ "Once\n"
+#~ "you have selected additional locales, click the \"Next ->\" button to\n"
+#~ "continue.\n"
+#~ "\n"
+#~ "To switch between the various languages installed on the system, you can\n"
+#~ "launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
+#~ "language used by the entire system. Running the command as a regular "
+#~ "user\n"
+#~ "will only change the language settings for that particular user."
+#~ msgstr ""
+#~ "V prvním kroku si vyberete požadovaný jazyk. Vyberte si vámi preferovaný\n"
+#~ "jazyk, který se bude používat při instalaci a během užívání celém "
+#~ "systému.\n"
+#~ "Nejprve vyberte region kde žijete a potom jazyk, jakým se tam mluví.\n"
+#~ "\n"
+#~ "Tlačítko \"Rozšířené\" umožňuje zvolit další jazyky, které budou také\n"
+#~ "nainstalovány a můžete je použít v systému. Výběrem dalších jazyků "
+#~ "nainstalujete\n"
+#~ "soubory s aplikacemi a dokumentací specifické pro tyto jazyky. Pokud "
+#~ "například\n"
+#~ "na počítači pracují občas lidé ze Španělska, vyberte angličtinu jako "
+#~ "hlavní\n"
+#~ "jazyk a pod tlačítkem rozšířené zatrhněte volbu \"Španělština|Španělsko"
+#~ "\".\n"
+#~ "\n"
+#~ "Takto lze doinstalovat více jazyků. Pokud máte jazyky vybrány, klepněte "
+#~ "na\n"
+#~ "tlačítko \"Další ->\" a instalace bude pokračovat dalším krokem."
+
+#~ msgid ""
+#~ "\"Country\": check the current country selection. If you are not in this\n"
+#~ "country, click on the button and choose another one."
+#~ msgstr ""
+#~ "\"Země\": zkontrolujte aktuální výběr země. Pokud nežijete v této zemi,\n"
+#~ "klepněte na tlačítko a vyberte jinou zemi."
+
+#~ msgid ""
+#~ "At this point, DrakX will allow you to choose the security level desired\n"
+#~ "for the machine. As a rule of thumb, the security level should be set\n"
+#~ "higher if the machine will contain crucial data, or if it will be a "
+#~ "machine\n"
+#~ "directly exposed to the Internet. The trade-off of a higher security "
+#~ "level\n"
+#~ "is generally obtained at the expense of ease of use. Refer to the \"msec"
+#~ "\"\n"
+#~ "chapter of the ``Command Line Manual'' to get more information about the\n"
+#~ "meaning of these levels.\n"
+#~ "\n"
+#~ "If you do not know what to choose, keep the default option."
+#~ msgstr ""
+#~ "Nyní si vyberte úroveň zabezpečení vašeho počítače Je zřejmé, že čím více "
+#~ "je\n"
+#~ "počítač využíván a čím cennější data obsahuje, tím je potřeba zvolit "
+#~ "vyšší\n"
+#~ "úroveň. Na druhou stranu, vyšší úroveň znesnadňuje některé obvyklé "
+#~ "postupy.\n"
+#~ "Více informací o úrovních bezpečnosti se dočtete v kapitole \"msec\" v "
+#~ "referenční příručce.\n"
+#~ "\n"
+#~ "Pokud nevíte co vybrat, ponechte výchozí nastavení."
+
+#~ msgid ""
+#~ "At the time you are installing Mandrake Linux, it is likely that some\n"
+#~ "packages have been updated since the initial release. Bugs may have been\n"
+#~ "fixed, security issues resolved. To allow you to benefit from these\n"
+#~ "updates, you are now able to download them from the Internet. Choose\n"
+#~ "\"Yes\" if you have a working Internet connection, or \"No\" if you "
+#~ "prefer\n"
+#~ "to install updated packages later.\n"
+#~ "\n"
+#~ "Choosing \"Yes\" displays a list of places from which updates can be\n"
+#~ "retrieved. Choose the one nearest you. A package-selection tree will\n"
+#~ "appear: review the selection, and press \"Install\" to retrieve and "
+#~ "install\n"
+#~ "the selected package( s), or \"Cancel\" to abort."
+#~ msgstr ""
+#~ "Pokaždé, když instalujete distribuci Mandrake Linux, je možné, že "
+#~ "některé\n"
+#~ "balíčky byly od vydání distribuce aktualizovány. Mohly to být opravy "
+#~ "chyb\n"
+#~ "či řešení možných bezpečnostních problémů. Pokud chcete využít právě\n"
+#~ "této nabídky, je možné tyto balíčky nyní stáhnout z Internetu. Zvolte "
+#~ "\"Ano\"\n"
+#~ "pokud máte funkční připojení na Internet nebo \"Ne\", pokud budete\n"
+#~ "instalovat aktualizace později.\n"
+#~ "\n"
+#~ "Po zvolení \"Ano\" se zobrazí seznam míst, odkud mohou být aktualizace "
+#~ "získány.\n"
+#~ "Vyberte si nejbližší místo. Následně se objeví stromový seznam balíčků, "
+#~ "který\n"
+#~ "je možno ještě upravit a stisknutím tlačítka \"Instalovat\" se provede "
+#~ "stažení\n"
+#~ "a instalace vybraných balíčků. Akci můžete přerušit klepnutím na \"Zrušit"
+#~ "\"."
+
+#~ msgid ""
+#~ "There you are. Installation is now complete and your GNU/Linux system is\n"
+#~ "ready to use. Just click \"Next ->\" to reboot the system. The first "
+#~ "thing\n"
+#~ "you should see after your computer has finished doing its hardware tests "
+#~ "is\n"
+#~ "the bootloader menu, giving you the choice of which operating system to\n"
+#~ "start.\n"
+#~ "\n"
+#~ "The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+#~ "\n"
+#~ " * \"generate auto-install floppy\": to create an installation floppy "
+#~ "disk\n"
+#~ "that will automatically perform a whole installation without the help of "
+#~ "an\n"
+#~ "operator, similar to the installation you just configured.\n"
+#~ "\n"
+#~ " Note that two different options are available after clicking the "
+#~ "button:\n"
+#~ "\n"
+#~ " * \"Replay\". This is a partially automated installation. The\n"
+#~ "partitioning step is the only interactive procedure.\n"
+#~ "\n"
+#~ " * \"Automated\". Fully automated installation: the hard disk is\n"
+#~ "completely rewritten, all data is lost.\n"
+#~ "\n"
+#~ " This feature is very handy when installing a number of similar "
+#~ "machines.\n"
+#~ "See the Auto install section on our web site for more information.\n"
+#~ "\n"
+#~ " * \"Save packages selection\"(*): saves a list of the package selected "
+#~ "in\n"
+#~ "this installation. To use this selection with another installation, "
+#~ "insert\n"
+#~ "the floppy and start the installation. At the prompt, press the [F1] key\n"
+#~ "and type >>linux defcfg=\"floppy\" <<.\n"
+#~ "\n"
+#~ "(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
+#~ "\"mformat a:\")"
+#~ msgstr ""
+#~ "Nyní je instalace ukončena a operační systém GNU/Linux je připraven k "
+#~ "použití.\n"
+#~ "Klepněte na \"Další ->\" a systém bude restartován. Potom můžete "
+#~ "spustit \n"
+#~ "GNU/Linux. Jako provní se po restartu a kontrole hardware zobrazí "
+#~ "nabídka\n"
+#~ "s výběrem operačních systémů, ze kterých si můžete vybrat ten "
+#~ "preferovaný.\n"
+#~ "\n"
+#~ "Tlačítko \"Rozšířené\" zobrazí další dvě tlačítka:\n"
+#~ "\n"
+#~ " * Generovat disketu pro automatickou instalaci: vytvoří disketu, se "
+#~ "kterou\n"
+#~ "lze celou instalaci opakovat bez zásahu operátora se stejnými volbami,\n"
+#~ "které byly zvoleny při instalaci.\n"
+#~ "\n"
+#~ " Po klepnutí na toto tlačítko se zobrazí další dvě volby:\n"
+#~ "\n"
+#~ " * : Zopakovat: je to částečně automatická instalace, kdy se "
+#~ "potvrzuje krok\n"
+#~ "při rozdělování disků (a pouze tento krok).\n"
+#~ "\n"
+#~ " * : Automaticky: plně automatická instalace, data na pevném disku "
+#~ "budou\n"
+#~ "zrušena a disk přepsán.\n"
+#~ "\n"
+#~ " Tato volba je velmi užitečná, když potřebujete nainstalovat větší "
+#~ "počet\n"
+#~ "stejných počítačů. Více o této možnosti je na našich WWW stránkách.\n"
+#~ "\n"
+#~ " * Uložit výběr balíčků(*): uloží výběr balíčků, který byl zvolen při "
+#~ "instalaci.\n"
+#~ "Pokud budete instalovat další počítač, vložte disketu do mechaniky a "
+#~ "spusťte\n"
+#~ "instalaci, stiskněte [F1] a napište na příkazový řádek >linux defcfg="
+#~ "\"floppy\"<.\n"
+#~ "\n"
+#~ "(*) Potřebujete disketu formátovanou FAT (Pod Linuxem ji vytvoříte "
+#~ "příkazem\n"
+#~ "\"mformat a:\")"
+
+#~ msgid ""
+#~ "At this point, you need to decide where you want to install the Mandrake\n"
+#~ "Linux operating system on your hard drive. If your hard drive is empty "
+#~ "or\n"
+#~ "if an existing operating system is using all the available space you "
+#~ "will\n"
+#~ "have to partition the drive. Basically, partitioning a hard drive "
+#~ "consists\n"
+#~ "of logically dividing it to create the space needed to install your new\n"
+#~ "Mandrake Linux system.\n"
+#~ "\n"
+#~ "Because the process of partitioning a hard drive is usually irreversible\n"
+#~ "and can lead to lost data if there is an existing operating system "
+#~ "already\n"
+#~ "installed on the drive, partitioning can be intimidating and stressful "
+#~ "if\n"
+#~ "you are an inexperienced user. Fortunately, DrakX includes a wizard "
+#~ "which\n"
+#~ "simplifies this process. Before continuing with this step, read through "
+#~ "the\n"
+#~ "rest of this section and above all, take your time.\n"
+#~ "\n"
+#~ "Depending on your hard drive configuration, several options are "
+#~ "available:\n"
+#~ "\n"
+#~ " * \"Use free space\": this option will perform an automatic "
+#~ "partitioning\n"
+#~ "of your blank drive(s). If you use this option there will be no further\n"
+#~ "prompts.\n"
+#~ "\n"
+#~ " * \"Use existing partition\": the wizard has detected one or more "
+#~ "existing\n"
+#~ "Linux partitions on your hard drive. If you want to use them, choose "
+#~ "this\n"
+#~ "option. You will then be asked to choose the mount points associated "
+#~ "with\n"
+#~ "each of the partitions. The legacy mount points are selected by default,\n"
+#~ "and for the most part it's a good idea to keep them.\n"
+#~ "\n"
+#~ " * \"Use the free space on the Windows partition\": if Microsoft Windows "
+#~ "is\n"
+#~ "installed on your hard drive and takes all the space available on it, "
+#~ "you\n"
+#~ "have to create free space for Linux data. To do so, you can delete your\n"
+#~ "Microsoft Windows partition and data (see `` Erase entire disk'' "
+#~ "solution)\n"
+#~ "or resize your Microsoft Windows FAT partition. Resizing can be "
+#~ "performed\n"
+#~ "without the loss of any data, provided you previously defragment the\n"
+#~ "Windows partition and that it uses the FAT format. Backing up your data "
+#~ "is\n"
+#~ "strongly recommended.. Using this option is recommended if you want to "
+#~ "use\n"
+#~ "both Mandrake Linux and Microsoft Windows on the same computer.\n"
+#~ "\n"
+#~ " Before choosing this option, please understand that after this\n"
+#~ "procedure, the size of your Microsoft Windows partition will be smaller\n"
+#~ "then when you started. You will have less free space under Microsoft\n"
+#~ "Windows to store your data or to install new software.\n"
+#~ "\n"
+#~ " * \"Erase entire disk\": if you want to delete all data and all "
+#~ "partitions\n"
+#~ "present on your hard drive and replace them with your new Mandrake Linux\n"
+#~ "system, choose this option. Be careful, because you will not be able to\n"
+#~ "undo your choice after you confirm.\n"
+#~ "\n"
+#~ " !! If you choose this option, all data on your disk will be "
+#~ "deleted. !!\n"
+#~ "\n"
+#~ " * \"Remove Windows\": this will simply erase everything on the drive "
+#~ "and\n"
+#~ "begin fresh, partitioning everything from scratch. All data on your disk\n"
+#~ "will be lost.\n"
+#~ "\n"
+#~ " !! If you choose this option, all data on your disk will be lost. !!\n"
+#~ "\n"
+#~ " * \"Custom disk partitionning\": choose this option if you want to\n"
+#~ "manually partition your hard drive. Be careful -- it is a powerful but\n"
+#~ "dangerous choice and you can very easily lose all your data. That's why\n"
+#~ "this option is really only recommended if you have done something like "
+#~ "this\n"
+#~ "before and have some experience. For more instructions on how to use the\n"
+#~ "DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
+#~ "the ``Starter Guide''."
+#~ msgstr ""
+#~ "V tomto bodě se musíte rozhodnout, na které diskové oddíly budete\n"
+#~ "instalovat nový operační systém Mandrake Linux. Pokud je disk prázdný\n"
+#~ "nebo existující operační systém používá celý disk, je nutné ho rozdělit.\n"
+#~ "Rozdělení disku spočívá ve vytvoření volného prostoru pro instalaci\n"
+#~ "systému Mandrake Linux.\n"
+#~ "\n"
+#~ "Protože rozdělení disku je nenávratná operace, je to velmi nebezpečná\n"
+#~ "akce pro ty uživatele, kteří nemají žádné zkušenosti.\n"
+#~ "Pro tyto uživatele je dobrý průvodce, který zjednoduší daný proces.\n"
+#~ "Ještě před započetím rozdělování disku si pročtěte manuál.\n"
+#~ "Pokud máte již vytvořeny diskové oddíly z předchozích instalací nebo\n"
+#~ "od jiných diskových nástrojů, lze je nyní použít pro instalaci tohoto\n"
+#~ "systému Linux.\n"
+#~ "\n"
+#~ "Pokud nejsou definovány žádné diskové oddíly, je nutné je vytvořit.\n"
+#~ "K tomu slouží průvodce, který nabídne několik řešení:\n"
+#~ "\n"
+#~ " * \"Použít volný prostor\": takto se jednoduše automaticky disk(y) "
+#~ "rozdělí\n"
+#~ "a již se o nic nemusíte starat.\n"
+#~ "\n"
+#~ " * \"Použít existující oddíly\": průvodce detekoval jeden nebo více "
+#~ "existujících\n"
+#~ "Linuxových oddílů a ty nabídne pro instalaci. Budete muset definovat ke "
+#~ "každému\n"
+#~ "oddílu přípojný bod. Původní přípojné body jsou předvyplněny, a obvykle "
+#~ "byste\n"
+#~ "je měli ponechat.\n"
+#~ "\n"
+#~ " * \"Použít volné místo na oddílu s Windows\": pokud máte na disku\n"
+#~ "nainstalovány Microsoft Windows a tyto zabírají celý disk, je možné tento "
+#~ "prostor\n"
+#~ "zmenšit a použít ho pro instalaci. Oddíl lze také vymazat a tím ztratit "
+#~ "data (viz volby\n"
+#~ "\"Smazat celý disk\" a \"Expertní režim\"). Změna velikosti oddílu je "
+#~ "provedena\n"
+#~ "bez ztráty dat a je možná, pokud jste předtím tento oddíl ve Windows "
+#~ "defragmentovali.\n"
+#~ "Také neuškodí zazálohovat vaše data... Tento postup je doporučený, pokud "
+#~ "chcete\n"
+#~ "na disku provozovat současně systém Mandrake Linux i Microsoft Windows.\n"
+#~ "\n"
+#~ " Před výběrem této volby si prosím uvědomte, že velikost oddílu s "
+#~ "Microsoft Windows\n"
+#~ "bude menší než je nyní. To znamená, že budete mít méně místa pro \n"
+#~ "uložení dat nebo instalaci programů do Microsoft Windows.\n"
+#~ "\n"
+#~ " * \"Zrušit celý disk\": pokud chcete smazat veškerá data a všechny "
+#~ "oddíly\n"
+#~ "na disku a použít je pro instalaci systému Mandrake Linux, vyberte toto\n"
+#~ "řešení. Zde postupujte opatrně, po výběru již není možné vzít volbu "
+#~ "zpět.\n"
+#~ "\n"
+#~ " !! Pokud zvolíte tuto možnost, všechna data na disku budou "
+#~ "ztracena.!!\n"
+#~ "\n"
+#~ " * \"Odstranit Windows\": takto se jednoduše smaže celý disk a bude se "
+#~ "instalovat\n"
+#~ "na celý disk. Všechna data tak budou ztracena.\n"
+#~ "\n"
+#~ " !! Pokud vyberete tuto volbu, veškerá data budou ztracena. !!\n"
+#~ "\n"
+#~ " * \"Vlastní rozdělení disku\": pokud chcete disk rozdělit ručně. Před "
+#~ "touto\n"
+#~ "volbou buďte opatrní, je sice mocná, ale nebezpečná. Velmi jednoduše zde\n"
+#~ "můžete přijít o svá data.\n"
+#~ "Nedoporučuje se těm, kteří přesně nevědí, co dělají. Chcete-li se "
+#~ "dozvědět více\n"
+#~ "o nástroji DiskDrake, který se v tomto případě používá, prostudujte sekci "
+#~ "\"Správa vašich oddílů\" v \"Uživatelské příručce\"."
+
+#~ msgid ""
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Záchrannou disketu si vytvoříte zaškrtnutím volby \"Vytvořit záchrannou "
+#~ "disketu\".\n"
+#~ "\n"
+#~ "CDROM s distribucí Mandrake Linux má zabudovaný záchranný režim. Můžete "
+#~ "ho\n"
+#~ "spustit přímo při spuštění z CD, kdy stisknete klávesu >>F1<< a na "
+#~ "příkazový\n"
+#~ "řádek napíšete >>rescue<<. Pokud počítač neumožňuje bootovat z CD, potom\n"
+#~ "v tomto kroku najdete řešení alespoň dvou následujících situací:\n"
+#~ "\n"
+#~ " * při instalaci zaváděcího programu přepíše aplikace DrakX zaváděcí "
+#~ "sektor\n"
+#~ "(MBR) na hlavním pevném disku (pokud nepoužíváte jiný zaváděcí program),\n"
+#~ "aby umožnil start buď systému Windows nebo GNU/Linux (pokud máte Windows\n"
+#~ "na počítači nainstalovány). Pokud potřebujete Windows přeinstalovat, "
+#~ "instalační\n"
+#~ "program společnosti Microsoft přepíše zaváděcí sektor a nebudete tak mít "
+#~ "možnost\n"
+#~ "spustit systém GNU/Linux!\n"
+#~ "\n"
+#~ " * pokud se objeví problémy a není možné spustit systém GNU/Linux z "
+#~ "pevného\n"
+#~ "disku, je tato disketa jedinou možností, jak systém spustit. Obsahuje "
+#~ "několik\n"
+#~ "základních systémových nástrojů pro obnovení systému pří výpadku "
+#~ "napájení,\n"
+#~ "nešťastném překlepu, chybě v hesle, nebo z jiných důvodů.\n"
+#~ "\n"
+#~ "Pokud zvolíte tento krok, musíte vložit disketu do mechaniky. Disketa "
+#~ "musí\n"
+#~ "být prázdná, nebo na ní mohou být data, která již nepotřebujete. Disketa\n"
+#~ "nemusí být formátována, aplikace DrakX přepíše celý její obsah."
+
+#~ msgid ""
+#~ "This step is used to choose which services you wish to start at boot "
+#~ "time.\n"
+#~ "\n"
+#~ "DrakX will list all the services available on the current installation.\n"
+#~ "Review each one carefully and uncheck those which are not always needed "
+#~ "at\n"
+#~ "boot time.\n"
+#~ "\n"
+#~ "A short explanatory text will be displayed about a service when it is\n"
+#~ "selected. However, if you are not sure whether a service is useful or "
+#~ "not,\n"
+#~ "it is safer to leave the default behavior.\n"
+#~ "\n"
+#~ "!! At this stage, be very careful if you intend to use your machine as a\n"
+#~ "server: you will probably not want to start any services that you do not\n"
+#~ "need. Please remember that several services can be dangerous if they are\n"
+#~ "enabled on a server. In general, select only the services you really "
+#~ "need.\n"
+#~ "!!"
+#~ msgstr ""
+#~ "Nyní si zvolte, které služby mají být spuštěny při startu počítače.\n"
+#~ "\n"
+#~ "Je zde seznam všech služeb, které jsou aktuálně nainstalovány.\n"
+#~ "Prohlédněte si seznam pozorně a zrušte ty, které nepotřebujete spouštět "
+#~ "při\n"
+#~ "startu počítače.\n"
+#~ "\n"
+#~ "Pokud přejedete myší nad některou položkou, objeví se malá nápověda\n"
+#~ "s popisem, co daná služba dělá. Pokud přesně nevíte, zda je služba "
+#~ "užitečná\n"
+#~ "nebo ne, je lepší ji nechat ve výchozím stavu.\n"
+#~ "\n"
+#~ "!! Rozvažte, co za služby spustit, zvláště pokud budete počítač "
+#~ "provozovat\n"
+#~ "jako server: nepotřebujete všechny služby. Pamatujte, že čím více služeb\n"
+#~ "je spuštěno, tím je větší nebezpečí nežádoucího proniknutí do počítače.\n"
+#~ "Takže povolte opravdu jen ty služby, které nezbytně potřebujete.\n"
+#~ "!!"
+
+#~ msgid ""
+#~ "\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation."
+#~ msgstr ""
+#~ "\"Tiskárna\": klepnutím na \"Bez tiskárny\" se otevře průvodce "
+#~ "nastavením\n"
+#~ "tisku. Více o nastavení tiskáren naleznete v odpovídající kapitole "
+#~ "příručky\n"
+#~ "\"Začínáme\". Zde zobrazené rozhraní je podobné tomu při instalaci."
+
+#~ msgid ""
+#~ "The classic bug sound tester is to run the following commands:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card "
+#~ "use\n"
+#~ "by default\n"
+#~ "\n"
+#~ "- \"grep snd-slot /etc/modules.conf\" will tell you what driver it\n"
+#~ "currently uses\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
+#~ "loaded or not\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" "
+#~ "will\n"
+#~ "tell you if sound and alsa services're configured to be run on\n"
+#~ "initlevel 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" will tell you if the sound volume is muted or not\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound "
+#~ "card.\n"
+#~ msgstr ""
+#~ "Klasické testování funkčnosti zvuku je možné provádět pomocí\n"
+#~ "následujících příkazů:\n"
+#~ "\n"
+#~ "\n"
+#~ "- \"lspcidrake -v | fgrep AUDIO\" vám řekne, jaký výchozí ovladač vaše\n"
+#~ "zvuková karta používá\n"
+#~ "\n"
+#~ "- \"grep snd-slot /etc/modules.conf\" vám řekne, které ovladače se nyní\n"
+#~ "používají\n"
+#~ "\n"
+#~ "- \"/sbin/lsmod\" provede kontrolu toho, zda je požadovaný modul zaveden\n"
+#~ "nebo ne\n"
+#~ "\n"
+#~ "- \"/sbin/chkconfig --list sound\" a \"/sbin/chkconfig --list alsa\" vám\n"
+#~ "řekne, zda zvuková karta má nastaveny služby pro alsa v úrovni 3\n"
+#~ "\n"
+#~ "- \"aumix -q\" vám řekne, zda je zvuk na kartě ztlumen nebo ne\n"
+#~ "\n"
+#~ "- \"/sbin/fuser -v /dev/dsp\" vám řekne, které programy kartu používají.\n"
+
+#~ msgid "Sagem (using pppoe) usb"
+#~ msgstr "Sagem usb (pomocí pppoe)"
+
+#~ 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 název vašeho počítače, protože ho vyžadují některé\n"
+#~ "DHCP servery. Tento název musí být úplný, jako například\n"
+#~ "'mybox.mylab.myco.com'."
+
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "Jsou nastaveny následující tiskárny. Dvojitým klepnutím na každou z nich "
+#~ "je možné je modifikovat, nastavit jako výchozí, získat o nich informace "
+#~ "nebo je nastavit na vzdáleném CUPS serveru pro využití v aplikaci Star "
+#~ "Office/OpenOffice.org/GIMP."
+
#~ msgid "Secure Connection"
#~ msgstr "Bezpečné připojení"
#~ msgid "FTP Connection"
#~ msgstr "FTP připojení"
+#~ msgid "DrakFloppy Error: %s"
+#~ msgstr "Chyba DrakFloppy: %s"
+
+#~ msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+#~ msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-iso8859-2,*"
+
+#~ msgid ""
+#~ "You are about to configure your computer to install a PXE server as a "
+#~ "DHCP server\n"
+#~ "and a TFTP server to build an installation server.\n"
+#~ "With that feature, other computers on your local network will be "
+#~ "installable using from this computer.\n"
+#~ "\n"
+#~ "Make sure you have configured your Network/Internet access using "
+#~ "drakconnect before going any further.\n"
+#~ "\n"
+#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
+#~ "(LAN)."
+#~ msgstr ""
+#~ "Váš počítač bude nastaven jako PXE server, ze kterého lze pomocí DHCP a "
+#~ "TFTP vytvořit instalační server.\n"
+#~ "Tato vlastnost umožňuje to, že z tohoto počítače mohou být instalovány\n"
+#~ "další počítače na lokální síti.\n"
+#~ "\n"
+#~ "Před pokračováním se ujistěte, že jste nastavili vaši síť a připojení k "
+#~ "Internetu pomocí aplikace drakconnect.\n"
+#~ "\n"
+#~ "Pozn.: Pro nastavení lokální sítě (LAN) potřebujete vyhrazený síťový "
+#~ "adaptér."
+
+#~ msgid "Format of floppies the drive accept"
+#~ msgstr "Formáty, které disketová mechanika podporuje"
+
+#~ msgid ""
+#~ "The cpu frequency in Mhz (Mega herz which in first approximation may be "
+#~ "coarsely assimilated to number of instructions the cpu is able to execute "
+#~ "per second)"
+#~ msgstr ""
+#~ "Frekvence procesoru v MHz (Mega hertz se přibližně počítá podle toho "
+#~ "kolik instrukcí je procesor schopen vykonat za vteřinu)"
+
#~ msgid "Mail/Groupware/News"
#~ msgstr "Pošta/Groupware/Diskuse"
@@ -19329,6 +20646,9 @@ msgstr "Programy na správu financí jako např. GnuCash"
#~ msgid "Know how to use this printer"
#~ msgstr "Nápověda pro tisk na této tiskárně"
+#~ msgid "Would you like to configure printing?"
+#~ msgstr "Chtěli byste nastavit tiskárnu?"
+
#~ msgid "Preparing Printerdrake..."
#~ msgstr "Připravuji PrinterDrake...."
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 300bdc9cc..bc5cadd01 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -5,10 +5,10 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
-"PO-Revision-Date: 2003-02-27 17:22-0000\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
+"PO-Revision-Date: 2003-03-04 08:55-0000\n"
"Last-Translator: Rhoslyn Prys <rhoslyn.prys@meddal.org.uk>\n"
-"Language-Team: Cymraeg <cy@li.org>\n"
+"Language-Team: Cymraeg <rhoslyn.prys@meddal.org.uk>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -20,7 +20,7 @@ msgid ""
"You can use userdrake to add a user to this group."
msgstr ""
"Mae'r rhannu yn ôl defnyddiwr yn defnyddio grwp \"rhannu ffeiliau\" .\n"
-"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grwp."
+"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grwp. "
#: ../../any.pm:1 ../../install_steps_gtk.pm:1
#: ../../install_steps_interactive.pm:1 ../../interactive.pm:1
@@ -89,7 +89,7 @@ msgstr "Caniatáu pob defnyddiwr"
#: ../../any.pm:1
#, c-format
msgid "No sharing"
-msgstr "Dim rhannu"
+msgstr "Peidio rhannu"
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
@@ -783,12 +783,12 @@ msgstr "kdesu ar goll"
#: ../../common.pm:1
#, c-format
msgid "Screenshots will be available after install in %s"
-msgstr "Bydd lluniau o'r sgrin ar gael ar ôl gosod yn %s"
+msgstr "Bydd lluniau o'r sgrîn ar gael ar ôl gosod yn %s"
#: ../../common.pm:1
#, c-format
msgid "Can't make screenshots before partitioning"
-msgstr "Meth creu lluniau o'r sgrin cyn rhannu"
+msgstr "Meth creu lluniau o'r sgrîn cyn rhannu"
#: ../../common.pm:1
#, c-format
@@ -1083,93 +1083,66 @@ msgstr ""
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
-msgstr ""
-"I adolygu, bydd DrakX yn cyflwyno crynodeb amrywiol wybodaeth\n"
-"ynghylch eich peiriant. Yn ddibynnol ar eich caledwedd, mae'n bosibl fod\n"
-"gwnnych chai o'r rhain:\n"
-"\n"
-" *\"Llygoden\": gwirio ffurfweddiad presennol y llygoden a chliciwch ar y\n"
-" botwm a dewis un arall.\n"
-"\n"
-" *\"Bysellfwrdd\" gwirio ffurfweddiad presennol y bysellfwrdd a chliciwch\n"
-"ar y botwm a'i newid.\n"
-"\n"
-" *\"Cylchfa amser\" Mae DrakX, yn dyfalu eich cylchfa amser o'r iaith\n"
-"rydych wedi ei dewis. Eto fel gyda bysellfwrdd efallai nad ydych yn y wlad\n"
-"sy'n cyfateb i'r dewis iaith. Felly, mae'n bosibl y bydd angen i chi glicio "
-"arfotwm \"Cylchfa amser\" i ffurfweddi'r cloc yn ôl y gylchfa amser "
-"rydychynddi.\n"
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
"\n"
-" *\"Argraffydd\": bydd clicio ar y botwm \"Dim argraffydd\" yn agor y\n"
-"dewin ffurfweddi. Darllenwch y bennod berthnasol o'r 'Starter Guide'\n"
-"am wybodaeth ar sut mae gosod yr argraffydd. Mae'r rhyngwyneb yno'n\n"
-"debyg i'r un sy'n cael ei ddefnyddio wrth osod y system.\n"
-"\n"
-" * \"Cychwynnydd\": os hoffech newid ffurfweddiad eich cychwynnydd,\n"
-"cliciwch y botwm. Ar gyfer defnyddwyr uwch yn unig.\n"
-"\n"
-" * \"Rhyngwyneb Graffigol\": Mae DraKX yn gosod eich rhyngwyneb i\n"
-"gydraniad \"800x600\". Os nad yw hynny'n addas cliciwch y botwm\n"
-"i ailffurfweddu eich rhyngwyneb graffigol.\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
"\n"
-" * \"Rhwydwaith\": Os hoffech chi ffurfweddu eich rhwydwaith\n"
-"Rhyngrwyd neu lleol cliciwch y botwm.\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
"\n"
-" *\"Cerdyn sain\": os oes cerdyn sain yn cael ei ganfod ar eich system, bydd "
-"yn\n"
-"cael ei ddangos yma. Nid oes modd creu newidiadau adeg y gosodiad.\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
"\n"
-" *\"Cerdyn teledu\": os oes cerdyn teledu yn cael ei ganfod ar eich system, "
-"bydd\n"
-" yn cael ei ddangos yma. Nid oes modd creu newidiadau adeg y gosodiad.\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
"\n"
-" *\"Cerdyn IDSN\":os oes cerdyn IDSN yn cael ei ganfod ar eich system, bydd\n"
-" yn cael ei ddangos yma. Mae modd clicio ar y botwm i newid y paramedrau\n"
-" cysylltiedig."
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
+msgstr ""
#: ../../help.pm:1
#, c-format
@@ -1353,19 +1326,14 @@ msgstr ""
" bwyso ar [Tab] i weld dewisiadau'r cychwyn."
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"DrakX will first detect any IDE devices present in your computer. It will\n"
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1403,7 +1371,7 @@ msgstr ""
" chi ffurfweddu'r gyrrwr gyda llaw. "
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"Now, it's time to select a printing system for your computer. Other OSs may\n"
"offer you one, but Mandrake Linux offers two. Each of the printing systems\n"
@@ -1413,7 +1381,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1480,83 +1448,8 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+"(\"On Floppy\")."
msgstr ""
-"Mae LILO a grub yn gychwynwyr ar gyfer GNU/Linux. Fel rheol mae'r cam\n"
-"yma'n gwbl awtomatig. Mae DrakX yn dadansoddi'r adran gychwyn ac yn\n"
-"gweithredu ar yr hyn mae'n ei ganfod yma:\n"
-"\n"
-" *os yw'n canfod adran gychwyn Windows mae'n gosod adran cychwyn\n"
-"grub/LILO yno yn ei le. Felly bydd modd i chi gychwyn un ai GNU/Linux\n"
-"neu system weithredu arall.\n"
-"\n"
-" *os fydd yn canfod adran gychwyn grub neu LILO, bydd yn gosod un mwy\n"
-"diweddar yn ei le.\n"
-"\n"
-"Os oes amheuaeth, bydd DrakX yn dangos blwch deialog gyda dewisiadau.\n"
-"\n"
-" * \"Dyfais cychwyn\": yn y rhan fwyaf o achosion ni fyddwch yn newid\n"
-"y rhagosodedig (\"/Adran Gyntaf y gyrrwr (MBR)\"), ond os yw'n well "
-"gennych,\n"
-"gall y cychwynnwr gael ei osod ar yr ail ddisg caled (\"/dev/hdb\"), neu hyd "
-"yn\n"
-"oed ar ddisg meddal (\"Ar Ddisg Meddal\")\n"
-"\n"
-"Mae ticio \"Creu disg cychwyn\" yn caniatau i chi gael cyfrwng achub wrth "
-"law\n"
-"ar gyfer argyfyngau.\n"
-"\n"
-"Mae gan yr CD-ROM Mandrake Linux modd achub. Gallwch ei gyrraedd drwy\n"
-"gychwyn y peiriant o'r CD-ROM, gwasgu'r fysell >>F1<< o'r cychwyn a theipio\n"
-" >>rescue<<wrth yr anogwr. Ond os nad yw eich cyfrifiadur yn medru cychwyn\n"
-"drwy'r CD-ROM dylech ddod yn ôl i'r cam hwn am gymorth mewn o leiaf dwy "
-"sefyllfa:\n"
-"\n"
-" *wrth lwytho'r llwythwr cychwyn, bydd DrakX yn ailysgrifennu'r adran bwtio "
-"[MBR]\n"
-"ar eich prif ddisg [oni bai eich bod yn defnyddio rheolwr cychwyn arall] fel "
-"eich bod\n"
-"yn medru cychwyn yn Windows neu GNU/Linux [gan gymryd bod gennych Windows\n"
-"ar eich system]. Os fyddwch angen ailosod Windows, bydd proses osod "
-"Microsoft yn\n"
-"ail ysgrifennu'r adran bwtio, ac felly ni fydd modd i chi gychwyn GNU/"
-"Linux!\n"
-"\n"
-" * os oes anhawster yn codi ac nid ydych yn medru cychwyn GNU/Linux o'r "
-"ddisg\n"
-"caled, y ddisg feddal fydd yr unig ffordd i gychwyn GNU/Linux.Mae'n cynnwys\n"
-"nifer dda o offer i adfer y system, gwall teipio anffodus, camdeipio "
-"cyfrinair neu\n"
-"rhesymau eraill\n"
-"\n"
-"Os ddywedwch \"Iawn\", bydd gofyn i chi roi disg meddal yn y gyrrwr Rhaid \n"
-"ei fod yn wag neu bod dim o werth arno - bydd DrakX yn fformatio'r ddisg\n"
-"a'i ailysgrifennu."
#: ../../help.pm:1
#, c-format
@@ -1800,14 +1693,14 @@ msgstr ""
"mae wedi ei gysylltu iddo. Wedi i chi wasgu'r botwm \"Nesaf ->\" bydd "
"delwedd\n"
"llygoden yn cael ei ddangos. Bydd angen i chi symud olwyn y llygoden iddo \n"
-"weithio'n gywir. Wrth i chi wedl yr olwyn sgroli ar y sgrin yn symud wrth i "
+"weithio'n gywir. Wrth i chi wedl yr olwyn sgroli ar y sgrîn yn symud wrth i "
"chi droi'r\n"
"olwyn, profwch y botymau a gwirio fod cyfeirydd y llygoden yn symud ar y "
"sgrin\n"
"wrth i chi symud eich l;lygoden."
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"Your choice of preferred language will affect the language of the\n"
"documentation, the installer and the system in general. Select first the\n"
@@ -1820,9 +1713,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1934,10 +1832,12 @@ msgstr ""
"fersiynau cyn Mandrake Linux \"8.1\" yn cael ei gymeradwyo."
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
"\"Gwlad\":gwiriwch y dewis gwlad. Os nad ydych yn y wlad hon\n"
"cliciwch y botwm a dewis un arall."
@@ -2160,15 +2060,13 @@ msgstr ""
" sefyllfaoedd cychwyn argyfyngus!"
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"At this point, DrakX will allow you to choose the security level desired\n"
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -2182,19 +2080,19 @@ msgstr ""
"Os nad ydych yn siwr beth i'w ddewis, dewiswch y rhagosodedig."
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
"Ar yr adeg pan fyddwch yn gosod Mandrake Linux, mae'n debygol y bydd\n"
"rhai pecynnau wedi eu diweddaru ers y rhyddhad cychwynnol. Bydd rhai \n"
@@ -2263,7 +2161,7 @@ msgstr ""
"gwallus ar y ddisg."
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"Next ->\" to reboot the system. The first thing\n"
@@ -2271,7 +2169,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2323,7 +2221,7 @@ msgstr ""
" *\"Cadw'r dewis o becynnau\": mae hyn yn cadw'r dewis o becynnau wnaed\n"
"cynt. Yna wrth wneud gosodiad arall, rhowch ddisg meddal yn y gyrrwr a "
"rhedeg\n"
-"y gosodiad gan fynd i'r sgrin cymorth drwy wasgu'r fysell [F1], a chyflwyno\n"
+"y gosodiad gan fynd i'r sgrîn cymorth drwy wasgu'r fysell [F1], a chyflwyno\n"
">>linux defcfg=\"disg meddal\"<<.\n"
"\n"
"(*) Bydd angen disg meddal wedi ei fformatio fel FAT (i greu un yn GNU/"
@@ -2331,7 +2229,7 @@ msgstr ""
"teipiwch \"mformat a:\")"
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"At this point, you need to decide where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -2362,7 +2260,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2387,13 +2285,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"Yn awr mae angen i chi ddewis lle ar eich disg caled i osod eich\n"
"system weithredu Linux Mandrake. Os yw eich disg caled yn wag neu\n"
@@ -2460,65 +2358,6 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Mae ticio |2Creu disg meddal cychwyn\" yn caniatáu i chi gael cyfrwng\n"
-"achub wrth law.\n"
-"\n"
-"Mae gan yr CD-ROM Mandrake Linux modd achub. Gallwch ei gyrraedd drwy\n"
-"gychwyn y peiriant o'r CD-ROM, gwasgu'r fysell >>F1<< o'r cychwyn a theipio\n"
-" >>rescue<<wrth yr anogwr. Ond os nad yw eich cyfrifiadur yn medru cychwyn\n"
-"drwy'r CD-ROM dylech ddod yn ôl i'r cam hwn am gymorth mewn o leiaf dwy "
-"sefyllfa:\n"
-"\n"
-" *wrth lwytho'r llwythwr cychwyn, bydd DrakX yn ailysgrifennu'r adran bwtio "
-"[MBR]\n"
-"ar eich prif ddisg [oni bai eich bod yn defnyddio rheolwr cychwyn arall] fel "
-"eich bod\n"
-"yn medru cychwyn yn Windows neu GNU/Linux [gan gymryd bod gennych Windows\n"
-"ar eich system]. Os fyddwch angen ailosod Windows, bydd proses osod "
-"Microsoft yn\n"
-"ail ysgrifennu'r adran bwtio, ac felly ni fydd modd i chi gychwyn GNU/"
-"Linux!\n"
-"\n"
-" * os oes anhawster yn codi ac nid ydych yn medru cychwyn GNU/Linux o'r "
-"ddisg\n"
-"caled, y ddisg feddal fydd yr unig ffordd i gychwyn GNU/Linux.Mae'n cynnwys\n"
-"nifer dda o offer i adfer y system, gwall teipio anffodus, camdeipio "
-"cyfrinair neu\n"
-"rhesymau eraill\n"
-"\n"
-"Pan fyddwch yn clicio \"Iawn\"yma, bydd gofyn i chi rhoi disg meddal yn\n"
-"y gyrrwr. Rhaid i'r ddisg fod yn wag neu fod dim gwahaniaeth colli'r data\n"
-"arno.Does dim angen ei fformatio gan y bydd DrakX yn ailysgrifennu'r holl "
-"ddisg."
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
@@ -2728,9 +2567,10 @@ msgstr ""
"rhwydwaith."
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2769,9 +2609,9 @@ msgstr ""
"!!"
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -3187,7 +3027,7 @@ msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
-"Digwyddodd gwall - ni chanfyddwyd dyfeisiadau dilys i greu systemau ffeil "
+"Digwyddodd gwall - ni chanfyddwyd dyfeisiau dilys i greu systemau ffeil "
"arnynt. Gwiriwch eich caledwedd am ffynhonnell yr anhawster."
#: ../../install_any.pm:1 ../../partition_table.pm:1
@@ -3272,12 +3112,12 @@ msgstr ""
#: ../../install_gtk.pm:1
#, c-format
msgid "System configuration"
-msgstr "Ffurfweddiad y system"
+msgstr "Ffurfweddu'r system"
#: ../../install_gtk.pm:1
#, c-format
msgid "System installation"
-msgstr "Gosodiad system"
+msgstr "Gosod y system"
#: ../../install_interactive.pm:1
#, c-format
@@ -3949,7 +3789,7 @@ msgstr "Manylion"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Please wait, preparing installation..."
-msgstr "Arhoswch, paratoi'r gosodiad"
+msgstr "Arhoswch, paratoi i osod"
#: ../../install_steps_gtk.pm:1
#, c-format
@@ -4375,6 +4215,12 @@ msgstr "Gwasanaethau"
msgid "System"
msgstr "System"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "%s(Porth %s)"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
@@ -4512,14 +4358,14 @@ msgid "Which is your timezone?"
msgstr "Pa un yw eich parth amser?"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Would you like to try again?"
-msgstr "Dewis gwael, ceisiwch eto\n"
+msgstr "Hoffech chi geisio eto?"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Unable to contact mirror %s"
-msgstr "Methu fforchio: %s"
+msgstr "Methu canfod drych: %s."
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4812,6 +4658,11 @@ msgid "Please choose your type of mouse."
msgstr "Dewiswch math eich llygoden"
#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Allwedd amgryptio"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr "Diweddaru %s"
@@ -4819,7 +4670,7 @@ msgstr "Diweddaru %s"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Is this an install or an upgrade?"
-msgstr "Gosodiad neu diweddariad?"
+msgstr "Gosod neu ddiweddaru?"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4860,7 +4711,7 @@ msgstr "Digwyddodd gwall"
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-" <Tab>/<Alt-Tab> rhwng elfennau | <Space> yn dewis | <F12> y sgrin nesaf "
+" <Tab>/<Alt-Tab> rhwng elfennau | <Space> yn dewis | <F12> y sgrînnesaf "
#: ../../install_steps_newt.pm:1
#, c-format
@@ -7493,12 +7344,12 @@ msgstr ""
#: ../../steps.pm:1
#, c-format
msgid "Exit install"
-msgstr "Gadael gosod"
+msgstr "Gorffen"
#: ../../steps.pm:1
#, c-format
msgid "Install updates"
-msgstr "Gosod diweddariadau"
+msgstr "Diweddariadau"
#: ../../steps.pm:1
#, c-format
@@ -7513,7 +7364,7 @@ msgstr "Ffurfweddu X"
#: ../../steps.pm:1
#, c-format
msgid "Install bootloader"
-msgstr "Gosod llwythwr cychwyn"
+msgstr "Gosod cychwynnwr"
#: ../../steps.pm:1
#, c-format
@@ -7533,7 +7384,7 @@ msgstr "Cyfrinair gwraidd"
#: ../../steps.pm:1
#, c-format
msgid "Install system"
-msgstr "System osod"
+msgstr "Gosod y system"
#: ../../steps.pm:1
#, c-format
@@ -7548,7 +7399,7 @@ msgstr "Fformatio rhaniadau"
#: ../../steps.pm:1
#, c-format
msgid "Partitioning"
-msgstr "Rhannu"
+msgstr "Creu Rhanniadau"
#: ../../steps.pm:1
#, c-format
@@ -7826,7 +7677,7 @@ msgid ""
" If in doubt, choose a conservative setting."
msgstr ""
"Y ddau baramedr pwysig yw'r raddfa adnewyddu fertigol, sef y raddfa mae'r\n"
-"holl sgrin yn cael ei adnewyddu, ac yn fwyaf pwysig y raddfa cydamseru\n"
+"holl sgrîn yn cael ei adnewyddu, ac yn fwyaf pwysig y raddfa cydamseru\n"
"llorweddol, sef y raddfa mae'r llinellau sganio'n cael eu dangos.\n"
"\n"
"Mae'n BWYSIG IAWN nad ydych yn enwi monitor gyda graddfa cydamseru\n"
@@ -8959,9 +8810,9 @@ msgid "SCSI controllers"
msgstr "Rheolyddion SCSI"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Firewire controllers"
-msgstr "Rheolyddion USB"
+msgstr "Rheolyddion firewire"
#: ../../harddrake/data.pm:1
#, c-format
@@ -9735,11 +9586,6 @@ msgstr "Ffurfweddu'r rhwydwaith"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "heb ganfod cerdyn rhwydwaith"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
@@ -9772,7 +9618,7 @@ msgstr ""
#: ../../network/isdn.pm:1
#, c-format
msgid "No ISDN PCI card found. Please select one on the next screen."
-msgstr "Heb ganfod cerdyn PCI ISDN. Dewiswch un o'r sgrin nesaf."
+msgstr "Heb ganfod cerdyn PCI ISDN. Dewiswch un o'r sgrîn nesaf."
#: ../../network/isdn.pm:1
#, c-format
@@ -9781,7 +9627,7 @@ msgid ""
"PCI card on the next screen."
msgstr ""
"Rwyf wedi canfod cerdyn IDSN, ond nid wyf yn gwybod pa fath. Dewiswch un "
-"cerdyn PCI ar y sgrin nesaf."
+"cerdyn PCI ar y sgrîn nesaf."
#: ../../network/isdn.pm:1
#, c-format
@@ -9813,7 +9659,7 @@ msgid ""
"card.\n"
msgstr ""
"\n"
-"Os oes gennych gerdyn, dylai'r gwerthoedd ar y sgrin nesaf fod yn gywir.\n"
+"Os oes gennych gerdyn, dylai'r gwerthoedd ar y sgrîn nesaf fod yn gywir.\n"
"\n"
"Os oes gennych gerdyn PCMCIA, rhaid i chi wybod irq ac io eich cerdyn.\n"
@@ -10167,7 +10013,7 @@ msgstr "Cysylltiad modem arferol"
#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Detecting devices..."
-msgstr "Canfod dyfeisiadau..."
+msgstr "Canfod dyfeisiau..."
#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
@@ -10384,9 +10230,9 @@ msgid "Start at boot"
msgstr "Cychwyn y peiriant"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Assign host name from DHCP address"
-msgstr "Rhowch enw'r gwesteiwr neu'r cyfeiriad IP.\n"
+msgstr "Rhowch enw'r gwesteiwr o'r cyfeiriad DHCP"
#: ../../network/network.pm:1
#, c-format
@@ -10399,9 +10245,9 @@ msgid "Track network card id (useful for laptops)"
msgstr "Dilynnwch cyfernod cerdyn rhwydwaith (defnyddiol ar gyfer gliniadur)"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "DHCP host name"
-msgstr "Enw gwesteiwr"
+msgstr "Enw gwesteiwr DHCP"
#: ../../network/network.pm:1 ../../standalone/drakconnect:1
#: ../../standalone/drakgw:1
@@ -11038,19 +10884,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"Mae'r argraffyddion canlynol wedi eu ffurfweddu. Cliciwch ar un i newid ei "
-"osodiadau; ei wneud yn argraffydd rhagosodedig; i edrych am wybodaeth "
-"amdano; neu i wneud argraffydd CUPS pell ar gael ar gyfer Star Office/"
-"OpenOffice.org/GIMP."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "System argraffu."
@@ -11489,7 +11322,7 @@ msgstr ""
"a thrin gwaith argraffu.\n"
"\n"
"Os ydych yn defnyddio KDE fel amgylchedd pen bwrdd mae gennych \"botwm "
-"argyfwng\", eicon ar y pen bwrdd, wedi ei labelu \"Atal yr Argraffydd!\", "
+"argyfwng\", eicon ar y bwrdd gwaith, wedi ei labelu \"Atal yr Argraffydd!\", "
"fydd yn stopio 'r holl waith argraffu'n syth pan fyddwch yn ei glicio. Mae "
"hyn yn ddefnyddiol pan fydd y papur wedi mynd yn sownd, ag ati.\n"
@@ -11686,6 +11519,11 @@ msgstr "Rhaid i ddewis %s fod yn gyfanrif"
#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Printer default settings"
+msgstr "Gosod yr Argraffydd Rhagosodedig"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
"Printer default settings\n"
"\n"
@@ -11879,7 +11717,7 @@ msgstr ""
"Gall y dewis fod yn anghywir, yn arbennig os nad yw eich argraffydd yn cael "
"ei enwi yn y gronfa ddata. Felly, edrychwch i weld â yw'r dewis yn gywir a "
"chliciwch \"Model cywir\" os yw ac os nad yw, cliciwch \" Dewiswch y model "
-"gyda llaw\" fel bo modd i chi ddewis eich argraffydd gyda llaw ar y sgrin "
+"gyda llaw\" fel bo modd i chi ddewis eich argraffydd gyda llaw ar y sgrîn "
"nesaf.\n"
"\n"
"Ar gyfer eich argraffydd mae Printerdrake wedi canfod\n"
@@ -12180,7 +12018,7 @@ msgstr ""
"cael ei osod mewn testun plaen ar y llinell orchymyn y cleient Samba sy'n "
"cael ei ddefnyddio i anfon gwaith argraffu i'r gwasanaethwr Windows. Felly "
"mae'n bosibl i bob defnyddiwr ar y peiriant i arddangos y cyfrinair ar y "
-"sgrin drwy'r gorchymyn \"ps auxwww\".\n"
+"sgrîn drwy'r gorchymyn \"ps auxwww\".\n"
"\n"
"Rydym yn argymell eich bod yn defnyddio un o'r dulliau gwahanol hyn ( yn yr "
"holl achosion hyn, rhaid i chi wneud yn siwr mae dim ond peiriannau o'ch "
@@ -12657,7 +12495,7 @@ msgstr ""
"gyrwyr a mathau o gysylltiadau argraffyddion."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"\n"
@@ -12666,8 +12504,8 @@ msgid ""
msgstr ""
"\n"
"\n"
-"Nid oedd Printerdrake yn adnabod eich argraffydd. Dewiswch yr un cywir o'r "
-"rhestr."
+"Nid oedd Printerdrake yn medru adnabod eich argraffydd %s. Dewiswch yr un "
+"cywir o'r rhestr."
#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, c-format
@@ -13151,8 +12989,7 @@ msgstr "os wedi ei osod i iawn, gwirio yn erbyn y gronfa ddata rpm."
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""
-"os wedi ei osod i iawn, gwirio os yw'r dyfeisiadau rhwydwaith mewn modd "
-"cymysg"
+"os wedi ei osod i iawn, gwirio os yw'r dyfeisiau rhwydwaith mewn modd cymysg"
#: ../../security/help.pm:1
#, c-format
@@ -13710,8 +13547,8 @@ msgstr "Croeso i Crackers"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
"Mae llwyddiant MandrakeSoft yn seiliedig ar egwyddor Meddalwedd Rhydd. Mae "
"eich system weithredu newydd yn ganlyniad gwaith cydweithredol ar ran y "
@@ -13719,7 +13556,7 @@ msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "Croeso i fyd Cod Agored"
#: ../../share/advertising/01-thanks.pl:1
@@ -13730,8 +13567,8 @@ msgstr "Diolch am ddewis Mandrake Linux 9.1"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
"Dewch i adnabod y gymuned Cod Agored a dewch yn aelod. Dysgwch, addysgwch a "
"chynorthwywch eraill drwy ymuno yn y grwpiau trafod niferus sydd i'w cael yn "
@@ -13739,215 +13576,159 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr "Hoffech chi wybod mwy am y gymuned Cod Agored?"
-
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Ymunwch â byd Meddalwedd Rhydd"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
-"Mae Mandrake Linux 9.1 yn cynnig y feddalwedd orau i chi. Syrffiwch y we a "
-"gwylio animeddiadau gyda Mozilla a Konqueror, cyfnewid e-bost a threfnu eich "
-"gwybodaeth gyda Evolution a Kmail."
+"Hoffech chi wybod mwy am y gymuned Cod Agored? Ymunwch â byd Meddalwedd "
+"Rhydd!"
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
-msgstr "Cael y mwyaf o'r Rhyngrwyd"
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
"Mae Mandrake Linux 9.1 yn caniatáu i chi ddefnyddio'r feddalwedd ddiweddaraf "
"i chwarae ffeiliau cerddoriaeth a sain, golygu a threfnu eich delweddau, "
"lluniau a fideo."
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr "Gyrrwch dechnegau aml-gyfrwng i'w eithaf!"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr "Darganfyddwch yr offer graffigol ac amlgyfrwng mwyaf diweddar!"
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"Mae Mandrake Linux 9.1 yn darparu'r gemau Cod Agored gorau - arcêd, antur, "
-"strategaeth..."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "Gemau"
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-"Canolfan Rheoli Mandrake Linux 9.1 yw'r lleoliad canolog ar gyfer llunio a "
-"ffurfio eich peiriant"
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Canolfan Rheoli Mandrake"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Ffurfweddiad Gwasanaethwr Terfynell Mandrake"
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
"Mae Mandrake Linux 9.1 yn darparu 11 rhyngwyneb defnyddiwr y mae modd eu "
"newid yn helaeth: KDE 3, Gnome 2, WindowMaker, ..."
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "Rhyngwynebau defnyddwyr"
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-"Defnyddiwch rym grynhowr gcc 3 GNU yn ogystal ag amgylcheddau datblygiadol "
-"Cod Agored gorau oll"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "Mandrake Linux 9.1 yw'r platfform datblygu gorau"
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr "Symleiddio datblygiad"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"Trowch eich peiriant i fod yn wasanaethwr pwerus gydag ychydig gliciau ar "
"eich llygoden: gwasanaethwyr gwe, e-bost, mur gwarchod, llwybrydd, "
"gwasanaethwr ffeil ac argraffu..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr "Trowch eich peiriant i fod yn wasanaethwr dibynadwy"
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr "Mae'r cynnyrch ar gael ar safle gwe MandrakeStore"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-"Mae'r mur cadarn hwn yn cynnwys nodwedd rhwydwaith i'ch galluogi i gyflawni "
-"eich anghenion diogelwch i gyd"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr ""
-"Mae'r casgliad MandrakeSecurity'n cynnwys Multi Network Firewall (M.N.F.)"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr "Y diogelwch mwyaf"
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"Mae amrediad eang o ddarpariaeth Linux, yn ogystal â chynigion arbennig ar "
"gynnyrch a 'difyrrwch', ar gael ar-lein yn ein e-siop"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr "Y siop MandrakeSoft swyddogol"
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
+#: ../../share/advertising/09-mdksecure.pl:1
+#, fuzzy, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"Mane Mandrake Linux yn cydweithio gyda dewis o gwmniau yn cynnig atebion "
"proffesiynnol sy'n cydweddu â Mandrake Linux Mae rhestr o 'r partneriaid hyn "
"i'w cael yn MandrakeStore"
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr "Partneriaid strategol"
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-"P'un a'i rydych yn dewis dysgu eich hun arlein neu drwy gyfrwng ein "
-"rhwydwaith o bartneriaid hyfforddi, mae catalog Linux-Campus yn eich paratoi "
-"ar gyfer rhaglen dystiedig LPI cydnabyddedig (tystysgrif technegol "
-"proffesiynnol byd-eang)"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr "Mynnwch dystysgrifo eich hun gyda Linux"
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "Y diogelwch mwyaf"
+
+#: ../../share/advertising/11-mnf.pl:1
+#, c-format
+msgid "This product is available on the MandrakeStore Web site."
+msgstr "Mae'r cynnyrch ar gael ar safle gwe MandrakeStore"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-"Mae'r rhaglen hyfforddiant yma wedi ei greu i ymateb i anghenion y "
-"defnyddiwr a'r arbennigwr (Gweinyddwyr Rhwydwaith a System0"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr "Mae catalog hyfforddiant MandrakeSoft i'w gael yn Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
+msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -13958,21 +13739,21 @@ msgstr ""
"eich gwybodaeth ac i helpu eraill drwy ddod yn Arbenigwr cydnabyddedig ar y "
"safle cefnogaeth dechnegol."
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
"Dewch o hyd i ateb eich anhawsterau drwy blatfform cefnogaeth ar-lein "
"MandrakeSoft."
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr "Dewch yn MandrakeExpert"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
@@ -13981,37 +13762,16 @@ msgstr ""
"Bydd pob digwyddiad yn cael ei archwilio gan arbenigwr technegol "
"MandrakeSoft cymwysedig"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr "Platfform arlein i ymateb i anghenion cefnogaeth penodol cwmni"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert Corfforaethol"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-"Crewyd MandrakeClub a MandrakeCorporateClub ar gyfer defnyddwyr preifat a "
-"busnes Mandrake Linux fyddai'n hoffi cefnogi eu hoff ddosbarthiad Linux "
-"tra'n derbyn breintiau arbennig. Os ydych yn mwynhau ein cynnyrch, os yw "
-"eich cwmni'n manteisio o'n cynnyrch i gael y blaen ar eraill, os hoffech "
-"gefnogi datblygiad Linux mandrake, yna ymunwch â MandrakeClub!"
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr "Darganfyddwch MandrakeClub a'r mandrake Corporate Club"
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -16354,7 +16114,7 @@ msgstr "Croeso Cychwyn"
#: ../../standalone/drakboot:1
#, c-format
msgid "Lilo screen"
-msgstr "Sgrin Lilo"
+msgstr "Sgrîn Lilo"
#: ../../standalone/drakboot:1
#, c-format
@@ -16379,7 +16139,7 @@ msgstr "Themâu"
#: ../../standalone/drakboot:1
#, c-format
msgid "Splash selection"
-msgstr "Dewis sgrin croeso"
+msgstr "Dewis sgrîn croeso"
#: ../../standalone/drakboot:1
#, c-format
@@ -16648,6 +16408,11 @@ msgstr "Dewin Tro Cyntaf"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr "Canolfan Rheoli Mandrake"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr "Offeryn Adross Gwall Mandrake"
@@ -17610,6 +17375,22 @@ msgid "Interface %s (using module %s)"
msgstr "Rhyngwyneb %s (gan ddefnyddio modiwl %s)"
#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Gwasanaeth Xinetd"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -17987,7 +17768,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -18195,6 +17976,11 @@ msgid "choose image file"
msgstr "dewis ffeil delwedd"
#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "dewis ffeil delwedd"
+
+#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
msgstr "Ffurfweddu llun croeso cychwyn"
@@ -18669,11 +18455,21 @@ msgstr "porth argraffydd rhwydwaith"
#: ../../standalone/harddrake2:1
#, c-format
+msgid "the name of the CPU"
+msgstr "enw'r prosesydd"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "Name"
msgstr "Enw"
#: ../../standalone/harddrake2:1
#, c-format
+msgid "the number of buttons the mouse has"
+msgstr "nifer y botymau sydd gan y llygoden"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "Number of buttons"
msgstr "Nifer o fotymau"
@@ -18842,7 +18638,7 @@ msgstr "Mae'r maes yn disgrifio'r ddyfais"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr "Amledd y cpu mewn MHz (y nifer o gyfarwyddiadau'r eiliad)"
@@ -19857,6 +19653,10 @@ msgstr ""
"sgwrsio"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Gemau"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Aml-gyfrwng - Graffig"
@@ -19912,19 +19712,400 @@ msgstr "Cyllid Personol"
msgid "Programs to manage your finances, such as gnucash"
msgstr "Rhaglenni i reoli eich cyllid, fel gnucash"
+#~ msgid "no network card found"
+#~ msgstr "heb ganfod cerdyn rhwydwaith"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "and view animations with Mozilla and Konqueror, or read your mail and "
+#~ "handle your personal information with Evolution and Kmail"
+#~ msgstr ""
+#~ "Mae Mandrake Linux 9.1 yn cynnig y feddalwedd orau i chi. Syrffiwch y we "
+#~ "a gwylio animeddiadau gyda Mozilla a Konqueror, cyfnewid e-bost a threfnu "
+#~ "eich gwybodaeth gyda Evolution a Kmail."
+
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Cael y mwyaf o'r Rhyngrwyd"
+
+#~ msgid "Push multimedia to its limits!"
+#~ msgstr "Gyrrwch dechnegau aml-gyfrwng i'w eithaf!"
+
+#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
+#~ msgstr "Darganfyddwch yr offer graffigol ac amlgyfrwng mwyaf diweddar!"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mae Mandrake Linux 9.1 yn darparu'r gemau Cod Agored gorau - arcêd, "
+#~ "antur, strategaeth..."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ "Canolfan Rheoli Mandrake Linux 9.1 yw'r lleoliad canolog ar gyfer llunio "
+#~ "a ffurfio eich peiriant"
+
+#~ msgid "User interfaces"
+#~ msgstr "Rhyngwynebau defnyddwyr"
+
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+#~ "Defnyddiwch rym grynhowr gcc 3 GNU yn ogystal ag amgylcheddau "
+#~ "datblygiadol Cod Agored gorau oll"
+
+#~ msgid "Development simplified"
+#~ msgstr "Symleiddio datblygiad"
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ "Mae'r mur cadarn hwn yn cynnwys nodwedd rhwydwaith i'ch galluogi i "
+#~ "gyflawni eich anghenion diogelwch i gyd"
+
+#~ msgid ""
+#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
+#~ "N.F.)"
+#~ msgstr ""
+#~ "Mae'r casgliad MandrakeSecurity'n cynnwys Multi Network Firewall (M.N.F.)"
+
+#~ msgid "Strategic partners"
+#~ msgstr "Partneriaid strategol"
+
+#~ msgid ""
+#~ "Whether you choose to teach yourself online or via our network of "
+#~ "training partners, the Linux-Campus catalogue prepares you for the "
+#~ "acknowledged LPI certification program (worldwide professional technical "
+#~ "certification)"
+#~ msgstr ""
+#~ "P'un a'i rydych yn dewis dysgu eich hun arlein neu drwy gyfrwng ein "
+#~ "rhwydwaith o bartneriaid hyfforddi, mae catalog Linux-Campus yn eich "
+#~ "paratoi ar gyfer rhaglen dystiedig LPI cydnabyddedig (tystysgrif "
+#~ "technegol proffesiynnol byd-eang)"
+
+#~ msgid "Certify yourself on Linux"
+#~ msgstr "Mynnwch dystysgrifo eich hun gyda Linux"
+
+#~ msgid ""
+#~ "The training program has been created to respond to the needs of both end "
+#~ "users and experts (Network and System administrators)"
+#~ msgstr ""
+#~ "Mae'r rhaglen hyfforddiant yma wedi ei greu i ymateb i anghenion y "
+#~ "defnyddiwr a'r arbennigwr (Gweinyddwyr Rhwydwaith a System0"
+
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr "Mae catalog hyfforddiant MandrakeSoft i'w gael yn Linux-Campus"
+
+#~ msgid ""
+#~ "MandrakeClub and Mandrake Corporate Club were created for business and "
+#~ "private users of Mandrake Linux who would like to directly support their "
+#~ "favorite Linux distribution while also receiving special privileges. If "
+#~ "you enjoy our products, if your company benefits from our products to "
+#~ "gain a competititve edge, if you want to support Mandrake Linux "
+#~ "development, join MandrakeClub!"
+#~ msgstr ""
+#~ "Crewyd MandrakeClub a MandrakeCorporateClub ar gyfer defnyddwyr preifat a "
+#~ "busnes Mandrake Linux fyddai'n hoffi cefnogi eu hoff ddosbarthiad Linux "
+#~ "tra'n derbyn breintiau arbennig. Os ydych yn mwynhau ein cynnyrch, os yw "
+#~ "eich cwmni'n manteisio o'n cynnyrch i gael y blaen ar eraill, os hoffech "
+#~ "gefnogi datblygiad Linux mandrake, yna ymunwch â MandrakeClub!"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr "Darganfyddwch MandrakeClub a'r mandrake Corporate Club"
+
#~ 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''."
+#~ "As a review, DrakX will present a summary of various information it has\n"
+#~ "about your system. Depending on your installed hardware, you may have "
+#~ "some\n"
+#~ "or all of the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary.\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Country\": check the current country selection. If you are not in "
+#~ "this\n"
+#~ "country, click on the button and choose another one.\n"
+#~ "\n"
+#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+#~ "primary language you have chosen. But here, just as in your choice of a\n"
+#~ "keyboard, you may not be in a country to which the chosen language\n"
+#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
+#~ "configure the clock for the correct timezone.\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation.\n"
+#~ "\n"
+#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+#~ "click that button. This should be reserved to advanced users.\n"
+#~ "\n"
+#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+#~ "interface in \"800x600\" resolution. If that does not suits you, click "
+#~ "on\n"
+#~ "the button to reconfigure your graphical interface.\n"
+#~ "\n"
+#~ " * \"Network\": If you want to configure your Internet or local network\n"
+#~ "access now, you can by clicking on this button.\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. If you notice the sound card displayed is not the one "
+#~ "that\n"
+#~ "is actually present on your system, you can click on the button and "
+#~ "choose\n"
+#~ "another driver.\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. If you have a TV card and it is not detected, click on the button "
+#~ "to\n"
+#~ "try to configure it manually.\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with the card."
#~ msgstr ""
-#~ "Rhowch eich enw gwesteiwr os ydych yn gwybod\n"
-#~ "beth ydyw Mae rhai gwasanaethwyr angen gwybod\n"
-#~ "yr enw gwesteiwr i weithio. Dylai eich enw gwesteiwr\n"
-#~ "fod yn enw cymhwysol llawn megis \"fymlwch.fynesg.fyco.com\""
+#~ "I adolygu, bydd DrakX yn cyflwyno crynodeb amrywiol wybodaeth\n"
+#~ "ynghylch eich peiriant. Yn ddibynnol ar eich caledwedd, mae'n bosibl fod\n"
+#~ "gwnnych chai o'r rhain:\n"
+#~ "\n"
+#~ " *\"Llygoden\": gwirio ffurfweddiad presennol y llygoden a chliciwch ar "
+#~ "y\n"
+#~ " botwm a dewis un arall.\n"
+#~ "\n"
+#~ " *\"Bysellfwrdd\" gwirio ffurfweddiad presennol y bysellfwrdd a "
+#~ "chliciwch\n"
+#~ "ar y botwm a'i newid.\n"
+#~ "\n"
+#~ " *\"Cylchfa amser\" Mae DrakX, yn dyfalu eich cylchfa amser o'r iaith\n"
+#~ "rydych wedi ei dewis. Eto fel gyda bysellfwrdd efallai nad ydych yn y "
+#~ "wlad\n"
+#~ "sy'n cyfateb i'r dewis iaith. Felly, mae'n bosibl y bydd angen i chi "
+#~ "glicio arfotwm \"Cylchfa amser\" i ffurfweddi'r cloc yn ôl y gylchfa "
+#~ "amser rydychynddi.\n"
+#~ "\n"
+#~ " *\"Argraffydd\": bydd clicio ar y botwm \"Dim argraffydd\" yn agor y\n"
+#~ "dewin ffurfweddi. Darllenwch y bennod berthnasol o'r 'Starter Guide'\n"
+#~ "am wybodaeth ar sut mae gosod yr argraffydd. Mae'r rhyngwyneb yno'n\n"
+#~ "debyg i'r un sy'n cael ei ddefnyddio wrth osod y system.\n"
+#~ "\n"
+#~ " * \"Cychwynnydd\": os hoffech newid ffurfweddiad eich cychwynnydd,\n"
+#~ "cliciwch y botwm. Ar gyfer defnyddwyr uwch yn unig.\n"
+#~ "\n"
+#~ " * \"Rhyngwyneb Graffigol\": Mae DraKX yn gosod eich rhyngwyneb i\n"
+#~ "gydraniad \"800x600\". Os nad yw hynny'n addas cliciwch y botwm\n"
+#~ "i ailffurfweddu eich rhyngwyneb graffigol.\n"
+#~ "\n"
+#~ " * \"Rhwydwaith\": Os hoffech chi ffurfweddu eich rhwydwaith\n"
+#~ "Rhyngrwyd neu lleol cliciwch y botwm.\n"
+#~ "\n"
+#~ " *\"Cerdyn sain\": os oes cerdyn sain yn cael ei ganfod ar eich system, "
+#~ "bydd yn\n"
+#~ "cael ei ddangos yma. Nid oes modd creu newidiadau adeg y gosodiad.\n"
+#~ "\n"
+#~ " *\"Cerdyn teledu\": os oes cerdyn teledu yn cael ei ganfod ar eich "
+#~ "system, bydd\n"
+#~ " yn cael ei ddangos yma. Nid oes modd creu newidiadau adeg y gosodiad.\n"
+#~ "\n"
+#~ " *\"Cerdyn IDSN\":os oes cerdyn IDSN yn cael ei ganfod ar eich system, "
+#~ "bydd\n"
+#~ " yn cael ei ddangos yma. Mae modd clicio ar y botwm i newid y paramedrau\n"
+#~ " cysylltiedig."
-#~ msgid "DrakFloppy Error: %s"
-#~ msgstr "Gwall Drakfloppy: %s"
+#~ msgid ""
+#~ "LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
+#~ "what it finds there:\n"
+#~ "\n"
+#~ " * if a Windows boot sector is found, it will replace it with a grub/"
+#~ "LILO\n"
+#~ "boot sector. This way you will be able to load either GNU/Linux or "
+#~ "another\n"
+#~ "OS.\n"
+#~ "\n"
+#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
+#~ "one.\n"
+#~ "\n"
+#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
+#~ "bootloader.\n"
+#~ "\n"
+#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
+#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
+#~ "disk\n"
+#~ "(\"On Floppy\").\n"
+#~ "\n"
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Mae LILO a grub yn gychwynwyr ar gyfer GNU/Linux. Fel rheol mae'r cam\n"
+#~ "yma'n gwbl awtomatig. Mae DrakX yn dadansoddi'r adran gychwyn ac yn\n"
+#~ "gweithredu ar yr hyn mae'n ei ganfod yma:\n"
+#~ "\n"
+#~ " *os yw'n canfod adran gychwyn Windows mae'n gosod adran cychwyn\n"
+#~ "grub/LILO yno yn ei le. Felly bydd modd i chi gychwyn un ai GNU/Linux\n"
+#~ "neu system weithredu arall.\n"
+#~ "\n"
+#~ " *os fydd yn canfod adran gychwyn grub neu LILO, bydd yn gosod un mwy\n"
+#~ "diweddar yn ei le.\n"
+#~ "\n"
+#~ "Os oes amheuaeth, bydd DrakX yn dangos blwch deialog gyda dewisiadau.\n"
+#~ "\n"
+#~ " * \"Dyfais cychwyn\": yn y rhan fwyaf o achosion ni fyddwch yn newid\n"
+#~ "y rhagosodedig (\"/Adran Gyntaf y gyrrwr (MBR)\"), ond os yw'n well "
+#~ "gennych,\n"
+#~ "gall y cychwynnwr gael ei osod ar yr ail ddisg caled (\"/dev/hdb\"), neu "
+#~ "hyd yn\n"
+#~ "oed ar ddisg meddal (\"Ar Ddisg Meddal\")\n"
+#~ "\n"
+#~ "Mae ticio \"Creu disg cychwyn\" yn caniatau i chi gael cyfrwng achub wrth "
+#~ "law\n"
+#~ "ar gyfer argyfyngau.\n"
+#~ "\n"
+#~ "Mae gan yr CD-ROM Mandrake Linux modd achub. Gallwch ei gyrraedd drwy\n"
+#~ "gychwyn y peiriant o'r CD-ROM, gwasgu'r fysell >>F1<< o'r cychwyn a "
+#~ "theipio\n"
+#~ " >>rescue<<wrth yr anogwr. Ond os nad yw eich cyfrifiadur yn medru "
+#~ "cychwyn\n"
+#~ "drwy'r CD-ROM dylech ddod yn ôl i'r cam hwn am gymorth mewn o leiaf dwy "
+#~ "sefyllfa:\n"
+#~ "\n"
+#~ " *wrth lwytho'r llwythwr cychwyn, bydd DrakX yn ailysgrifennu'r adran "
+#~ "bwtio [MBR]\n"
+#~ "ar eich prif ddisg [oni bai eich bod yn defnyddio rheolwr cychwyn arall] "
+#~ "fel eich bod\n"
+#~ "yn medru cychwyn yn Windows neu GNU/Linux [gan gymryd bod gennych "
+#~ "Windows\n"
+#~ "ar eich system]. Os fyddwch angen ailosod Windows, bydd proses osod "
+#~ "Microsoft yn\n"
+#~ "ail ysgrifennu'r adran bwtio, ac felly ni fydd modd i chi gychwyn GNU/"
+#~ "Linux!\n"
+#~ "\n"
+#~ " * os oes anhawster yn codi ac nid ydych yn medru cychwyn GNU/Linux o'r "
+#~ "ddisg\n"
+#~ "caled, y ddisg feddal fydd yr unig ffordd i gychwyn GNU/Linux.Mae'n "
+#~ "cynnwys\n"
+#~ "nifer dda o offer i adfer y system, gwall teipio anffodus, camdeipio "
+#~ "cyfrinair neu\n"
+#~ "rhesymau eraill\n"
+#~ "\n"
+#~ "Os ddywedwch \"Iawn\", bydd gofyn i chi roi disg meddal yn y gyrrwr "
+#~ "Rhaid \n"
+#~ "ei fod yn wag neu bod dim o werth arno - bydd DrakX yn fformatio'r ddisg\n"
+#~ "a'i ailysgrifennu."
-#~ msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
-#~ msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+#~ msgid ""
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Mae ticio |2Creu disg meddal cychwyn\" yn caniatáu i chi gael cyfrwng\n"
+#~ "achub wrth law.\n"
+#~ "\n"
+#~ "Mae gan yr CD-ROM Mandrake Linux modd achub. Gallwch ei gyrraedd drwy\n"
+#~ "gychwyn y peiriant o'r CD-ROM, gwasgu'r fysell >>F1<< o'r cychwyn a "
+#~ "theipio\n"
+#~ " >>rescue<<wrth yr anogwr. Ond os nad yw eich cyfrifiadur yn medru "
+#~ "cychwyn\n"
+#~ "drwy'r CD-ROM dylech ddod yn ôl i'r cam hwn am gymorth mewn o leiaf dwy "
+#~ "sefyllfa:\n"
+#~ "\n"
+#~ " *wrth lwytho'r llwythwr cychwyn, bydd DrakX yn ailysgrifennu'r adran "
+#~ "bwtio [MBR]\n"
+#~ "ar eich prif ddisg [oni bai eich bod yn defnyddio rheolwr cychwyn arall] "
+#~ "fel eich bod\n"
+#~ "yn medru cychwyn yn Windows neu GNU/Linux [gan gymryd bod gennych "
+#~ "Windows\n"
+#~ "ar eich system]. Os fyddwch angen ailosod Windows, bydd proses osod "
+#~ "Microsoft yn\n"
+#~ "ail ysgrifennu'r adran bwtio, ac felly ni fydd modd i chi gychwyn GNU/"
+#~ "Linux!\n"
+#~ "\n"
+#~ " * os oes anhawster yn codi ac nid ydych yn medru cychwyn GNU/Linux o'r "
+#~ "ddisg\n"
+#~ "caled, y ddisg feddal fydd yr unig ffordd i gychwyn GNU/Linux.Mae'n "
+#~ "cynnwys\n"
+#~ "nifer dda o offer i adfer y system, gwall teipio anffodus, camdeipio "
+#~ "cyfrinair neu\n"
+#~ "rhesymau eraill\n"
+#~ "\n"
+#~ "Pan fyddwch yn clicio \"Iawn\"yma, bydd gofyn i chi rhoi disg meddal yn\n"
+#~ "y gyrrwr. Rhaid i'r ddisg fod yn wag neu fod dim gwahaniaeth colli'r "
+#~ "data\n"
+#~ "arno.Does dim angen ei fformatio gan y bydd DrakX yn ailysgrifennu'r holl "
+#~ "ddisg."
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 29e77d15d..28ddbae9b 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2003-02-18 14:38+0100\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
"Language-Team: Danish <dansk@klid.dk>\n"
@@ -1090,97 +1090,66 @@ msgstr ""
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
-msgstr ""
-"DrakX vil vise en oversigt til gennemsyn over forskellige oplysninger den "
-"har om systemet. Afhngig af dit installerede maskinel kan du have nogle af "
-"eller alle de flgende indgange:\n"
-"\n"
-" * 'Mus': tjek den aktuelle musekonfiguration og klik p knappen for om "
-"ndvendigt at ndre den.\n"
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
"\n"
-" * 'Tastatur': tjek den aktuelle tastaturkonfiguration og klik p knappen "
-"for om ndvendigt at ndre den.\n"
-"\n"
-" * 'Land': Tjek det aktuelle valg af land. Hvis du ikke er i dette land, s "
-"klik p knappen og vlg et andet.\n"
-"\n"
-" * 'Tidszone': DrakX gtter normalt din tidszone fra det foretrukne sprog, "
-"du har valgt. Men ogs her, som ved valg af tastatur, er du mske ikke i det "
-"land som dit sprog indikerer, s du har mske brug for at klikke p "
-"'Tidszone'-knappen s du kan konfigurere uret svarende til den korrekte "
-"tidszone.\n"
-"\n"
-" * 'Printer': Et klik p 'Ingen printer'-knappen vil bne vejlederen for "
-"printerkonfigurering. Kig i det tilhrende kapitel i 'Startvejledningen' for "
-"mere information om hvordan man opstter en ny printer. Grnsefladen\n"
-"prsenteret der ligner den som bruges p installationstidspunktet;\n"
-"\n"
-" * 'Opstartsindlser': Hvis du nsker at ndre din konfiguration af "
-"opstartsindlser, s klik p denne knap. Dette burde vre forbeholdt "
-"avancerede brugere.\n"
-"\n"
-" * 'Grafisk grnseflade': Normalt konfigurerer DrakX din grafiske "
-"grnseflade i '800x600'-oplsning. Hvis dette ikke passer dig, s klik p "
-"knappen for at omkonfigurere din grafiske grnseflade.\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
"\n"
-" * 'Netvrk': Hvis du nsker at konfigurere din adgang til Internettet eller "
-"lokalnettet nu, kan du gre dette ved at klikke p denne knap.\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
"\n"
-" * 'Lydkort': Hvis et lydkort er blevet fundet p dit system, vil det blive "
-"vist her. Hvis du bemrker at det viste lydkort ikke er det som faktisk er "
-"til stede p systemet, kan du klikke p knappen og vlge en anden driver.\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
"\n"
-" * 'Tv-kort': Hvis et tv-kort er blevet fundet p dit system, vil det blive "
-"vist her. Hvis du har et tv-kort og det ikke er blevet fundet, s klik p "
-"knappen for at prve at konfigurere det manuelt.\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
"\n"
-" * 'ISDN-kort': Hvis et ISDN-kort er blevet fundet p dit system, vil det "
-"blive vist her. Du kan klikke p knappen for at ndre de tilhrende "
-"parametre."
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
+msgstr ""
#: ../../help.pm:1
#, c-format
@@ -1354,19 +1323,14 @@ msgstr ""
"blive fremhvet med en '*', hvis du trykker Tab for at se opstartsvalgene."
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"DrakX will first detect any IDE devices present in your computer. It will\n"
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1402,7 +1366,7 @@ msgstr ""
"system)."
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"Now, it's time to select a printing system for your computer. Other OSs may\n"
"offer you one, but Mandrake Linux offers two. Each of the printing systems\n"
@@ -1412,7 +1376,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1475,55 +1439,8 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Mandrake Linux-cdrommen har en indbygget rednings-tilstand. Du kan f fat i "
-"denne ved at starte op fra cdrommen, trykke 'F1'-tasten ved opstart, og "
-"indtaste 'rescue' ved opstartsledeteksten. Men i tilflde af at din maskine "
-"ikke kan starte op fra cdrommen, er der mindst to situationer hvor det er "
-"kritisk at have en opstartsdiskette:\n"
-"\n"
-" * ved installering af opstartsindlseren vil DrakX genskrive "
-"opstartssektoren (MBR) p din hoveddisk (medmindre du bruger en anden "
-"opstartshndterer) s du kan starte enten Windows eller GNU/Linux (forudsat "
-"du har Windows p dit system). Hvis du p et tidspunkt har brug for at "
-"geninstallere Windows, vil Microsoft installeringsprocessen overskrive "
-"opstartssektoren, og dermed fjerne din mulighed for at starte GNU/Linux!\n"
-"\n"
-" * Hvis der opstr et problem, og du ikke kan starte GNU/Linux op fra "
-"harddisken, vil denne diskette vre den eneste mde at starte GNU/Linux op "
-"p. Den indeholder et pnt antal systemvrktjer til at genskabe et system "
-"som er get ned pga. strmsvigt, en uheldig tastefejl, en glemt root-"
-"adgangskode, eller nogen anden rsag.\n"
-"\n"
-"Hvis du siger 'Ja', vil du blive bedt om at indstte en diskette i drevet. "
-"Disketten skal vre blank eller have ikke-kritiske data p sig - DrakX vil "
-"formatere den og overskrive hele disketten."
+"(\"On Floppy\")."
+msgstr ""
#: ../../help.pm:1
#, c-format
@@ -1753,7 +1670,7 @@ msgstr ""
"tjek at musemarkren flytter sig nr du flytter p musen."
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"Your choice of preferred language will affect the language of the\n"
"documentation, the installer and the system in general. Select first the\n"
@@ -1766,9 +1683,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1848,10 +1770,12 @@ msgid ""
msgstr ""
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
"'Land': Tjek det aktuelle valg af land. Hvis du ikke er i dette land, s "
"klik p knappen og vlg et andet."
@@ -2067,15 +1991,13 @@ msgstr ""
"opstart."
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"At this point, DrakX will allow you to choose the security level desired\n"
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -2089,19 +2011,19 @@ msgstr ""
"Hvis du ikke vd hvad du skal vlge, s behold den foreslede mulighed."
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
"P det tidspunkt hvor du installerer Mandrake Linux er det sandsynligt at "
"nogen af pakkerne er blevet opdaterede siden den oprindelige udgivelse. Fejl "
@@ -2169,7 +2091,7 @@ msgstr ""
"drlige blokke."
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"Next ->\" to reboot the system. The first thing\n"
@@ -2177,7 +2099,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2234,7 +2156,7 @@ msgstr ""
"ved at skive \"mformat a:\")"
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"At this point, you need to decide where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -2265,7 +2187,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2290,13 +2212,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"Nu skal du vlge hvor p din harddisk du vil installere dit Mandrake Linux-"
"operativsystem. Hvis disken er tom eller et eksisterende operativsystem "
@@ -2361,60 +2283,6 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Valg af 'Opret en opstartsdiskette' giver dig mulighed for at f en rednings-"
-"opstartsmedie tilgngelig.\n"
-"\n"
-"Mandrake Linux-cdrommen har en indbygget rednings-tilstand. Du kan f fat i "
-"denne ved at starte op fra cdrommen, trykke 'F1'-tasten ved opstart, og "
-"indtaste 'rescue' ved opstartsledeteksten. Hvis din maskine ikke kan starte "
-"op fra cdrommen, er der i mindst to situationer, hvor det er ndvendigt at "
-"have en opstartsdiskette:\n"
-"\n"
-" * ved installering af opstartsindlseren vil DrakX genskrive "
-"opstartssektoren (MBR) p din hoveddisk (medmindre du bruger en anden "
-"opstartshndterer) s du kan starte enten Windows eller GNU/Linux (forudsat "
-"du har Windows p dit system). Hvis du har brug for at geninstallere "
-"Windows, vil Microsoft installeringsprocessen overskrive opstartssektoren, "
-"og fjerne din mulighed for at starte GNU/Linux!\n"
-"\n"
-" * Hvis der opstr et problem, og du ikke kan starte GNU/Linux op fra "
-"harddisken, vil denne diskette vre den eneste mde at starte GNU/Linux op "
-"p. Den indeholder et pnt antal systemvrktjer til at genskabe et system "
-"som er get ned pga. strmsvigt, en uheldig tastefejl, en glemt root-"
-"adgangskode, eller nogen anden rsag.\n"
-"\n"
-"Hvis du siger 'Ja', vil du blive bedt om at indstte en diskette i drevet. "
-"Disketten skal vre blank eller indeholde ikke-kritiske data p den - DrakX "
-"vil formatere disketten og overskrive hele disketten."
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
@@ -2629,9 +2497,10 @@ msgstr ""
"faktisk en tidsserver som kan bruges af andre maskiner p dit lokalnetvrk."
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2665,9 +2534,9 @@ msgstr ""
"virkelig behver."
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -4247,6 +4116,12 @@ msgstr "Tjenester"
msgid "System"
msgstr "System"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "%s (port %s)"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
@@ -4681,6 +4556,11 @@ msgid "Please choose your type of mouse."
msgstr "Vlg muse-type."
#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Krypteringsngle"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr "Opgradr %s"
@@ -9550,11 +9430,6 @@ msgstr "Konfigurerer netvrk"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "kunne ikke finde noget netkort"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
@@ -10853,19 +10728,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"De flgende printere er konfigureret. Dobbeltklik p en printer for at ndre "
-"dens indstillinger; for at gre den til standard-printer: for at se "
-"information om den; eller for at gre en ekstern CUPS-printer tilgngelig "
-"for Star Office/OpenOffice.org/GIMP.org."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "Printsystem: "
@@ -11493,6 +11355,11 @@ msgid "Option %s must be an integer number!"
msgstr "Valg %s skal vre et helt tal!"
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Valg af printermodel"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -13479,8 +13346,8 @@ msgstr "Velkommen til Crackere"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
"MandrakeSofts succes er baseret p princippet om frit programmel. Dit nye "
"operativsystem er resultatet af et samarbejde i det verdensomspndende Linux-"
@@ -13488,7 +13355,7 @@ msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "Velkommen til en verden af ben kildetekst"
#: ../../share/advertising/01-thanks.pl:1
@@ -13499,223 +13366,166 @@ msgstr "Tak fordi du valgte Mandrake Linux 9.1"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
"For at dele din viden og hjlpe med at bygge Linux-vrktjer kan du vre med "
"i diskussionsfora som du finder p vores 'Samfunds'-netsider."
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr "nsker du at vide mere om ben Kildetekst-samfundet?"
-
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Vr med i det frie programmels verden"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
-"Mandrake Linux 9.1 har udvalgt det bedste programmel til dig. Surf p nettet "
-"og se animationer med Mozilla og Konqueror, eller ls post og organisr dine "
-"personlige informationer med Evolution og Kmail."
+"nsker du at vide mere om ben Kildetekst-samfundet? Vr med i det frie "
+"programmels verden"
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
-msgstr "F det meste fra Internettet"
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
"Mandrake Linux 9.1 giver dig mulighed for at bruge det allernyeste "
"programmel til at afspille musik, redigere og organisere dine billeder eller "
"foto, og se videoer."
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr "Pres multimedie til det yderste!"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr "Opdag de mest moderne grafik- og multimedie-vrktjer!"
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"Mandrake Linux 9.1 tilbyder det bedste i ben Kildetekst-spil - arkade, "
-"action, strategi, ..."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "Spil"
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-"Mandrake Linux 9.1 tilbyder et strkt vrktj til fuldt ud at tilpasse og "
-"konfigurere din maskine"
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Mandrake Kontrolcenter"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Konfiguration af Mandrake Terminalserver"
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
"Mandrake Linux 9.1 tilbyder dig 11 brugergrnseflader hvor alt kan "
"tilpasses: KDE 3, Gnome 2, WindowMaker..."
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "Brugergrnseflader"
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-"Brug den fulde styrke i GNU gcc 3-overstteren og de bedste ben Kildetekst-"
-"udviklingsmiljer."
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "Mandrake Linux 9.1 er den ultimative udviklingsplatform."
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr "Nem udvikling"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"Lav din maskine om til en strk server med bare nogen f klik med musen: "
"Webserver, post, brandmur, ruter, fil- og print-server, ..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr "Lav din maskine om til en plidelig server"
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr "Produktet findes tilgngeligt p MandrakeStores netsted"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-"Dette brandmursprodukt indholder netvrksfunktioner som lader dig opfylde "
-"alle dine sikkerhedsbehov."
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr ""
-"Produktkataloget MandrakeSecurity indeholder produktet Multi Network "
-"Firewall (M.N.F.)."
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr "Optimr din sikkerhed"
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"Vores komplette udvalg af Linux-lsninger, s vel som specialtilbud p "
"produkter og andre godbidder, er tilgngelige via nettet i vores e-butik:"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr "Den officielle MandrakeSoft-butik"
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
+#: ../../share/advertising/09-mdksecure.pl:1
+#, fuzzy, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"MandrakeSoft arbejder sammen med et antal firmaer som tilbyder "
"professionelle lsninger kompatible med Mandrake Linux. En liste over disse "
"samarbejdspartnere findes tilgngelig p MandrakeStore"
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr "Strategiske samarbejdspartnere"
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-"Hvadenten du vlger at undervise dig selv p nettet eller via vores net af "
-"undervisningspartnere, vil Linux-Campus kataloget forberede dig til det "
-"anerkendte LPI-certificeringsprogram (verdensomspndende professionel "
-"teknisk certificering)"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr "Certificr dig p Linux."
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "Optimr din sikkerhed"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
+#, c-format
+msgid "This product is available on the MandrakeStore Web site."
+msgstr "Produktet findes tilgngeligt p MandrakeStores netsted"
+
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-"Trningsprogrammet er blevet lavet for at tilgodese bde brugeres og "
-"eksperters behov (netvrk- and system-administration)"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr "Opdag MandrakeSofts trningskatalog Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
+msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -13726,19 +13536,19 @@ msgstr ""
"dele din viden og hjlpe andre ved at blive en anerkendt Ekspert p det "
"tekniske supportnetsted:"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr "Find lsningerne p dine problemer via MandrakeSofts online-support."
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr "Bliv en MandrakeExpert"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
@@ -13746,38 +13556,16 @@ msgid ""
msgstr ""
"Alle hndelser flges op af en teknisk kvalificeret MandrakeSoft-ekspert."
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr "En platform p nettet som tilgodesr firmaers specifikke supportbehov"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert for firmaer"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-"MandrakeClub og Mandrake Corporate Club er blevet skabt til "
-"forretningsbrugere private brugere af Mandrake Linux, som gerne vil sttte "
-"deres foretrukne Linux-distribution direkte og samtidig ogs modtage srlige "
-"privilegier. Hvis du kan lide vores produkter, hvis dit firma har gavn af "
-"vores produkter til at f et konkurrencemssigt forspring, eller hvis du "
-"nsker at sttte udviklingen af Mandrake Linux, s slut dig til MandrakeClub!"
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr "Opdag MandrakeClub og Mandrake Corporate Club"
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -16411,6 +16199,11 @@ msgstr "Frstegangshjlper"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr "Mandrake Kontrolcenter"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr "Mandrake vrktj til fejlrapportering"
@@ -17368,6 +17161,22 @@ msgid "Interface %s (using module %s)"
msgstr "Grnseflade %s (benytter modul %s)"
#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Xinetd-tjeneste"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -17743,7 +17552,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -17950,6 +17759,11 @@ msgid "choose image file"
msgstr "vlg billedfil"
#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "vlg billedfil"
+
+#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
msgstr "Konfigurr startskrmsbilled"
@@ -18420,11 +18234,21 @@ msgid "network printer port"
msgstr "port for netvrksprinter"
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the name of the CPU"
+msgstr "navnet p producenten af enheden"
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Name"
msgstr "Navn"
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "nummmeret p processoren"
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Number of buttons"
msgstr "Antal knapper"
@@ -18592,9 +18416,9 @@ msgid "This field describes the device"
msgstr "Dette felt beskriver enheden"
#: ../../standalone/harddrake2:1
-#, c-format
+#, fuzzy, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -19607,6 +19431,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr "Samling af vrktjer til post, nyheder, filoverfrsel og chat"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Spil"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimedie - Grafik"
@@ -19662,6 +19490,377 @@ msgstr "Personlig konomi"
msgid "Programs to manage your finances, such as gnucash"
msgstr "Programmer til at hndtere din konomi, som fx gnucash"
+#~ msgid "no network card found"
+#~ msgstr "kunne ikke finde noget netkort"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "and view animations with Mozilla and Konqueror, or read your mail and "
+#~ "handle your personal information with Evolution and Kmail"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 har udvalgt det bedste programmel til dig. Surf p "
+#~ "nettet og se animationer med Mozilla og Konqueror, eller ls post og "
+#~ "organisr dine personlige informationer med Evolution og Kmail."
+
+#~ msgid "Get the most from the Internet"
+#~ msgstr "F det meste fra Internettet"
+
+#~ msgid "Push multimedia to its limits!"
+#~ msgstr "Pres multimedie til det yderste!"
+
+#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
+#~ msgstr "Opdag de mest moderne grafik- og multimedie-vrktjer!"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 tilbyder det bedste i ben Kildetekst-spil - arkade, "
+#~ "action, strategi, ..."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 tilbyder et strkt vrktj til fuldt ud at tilpasse og "
+#~ "konfigurere din maskine"
+
+#~ msgid "User interfaces"
+#~ msgstr "Brugergrnseflader"
+
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+#~ "Brug den fulde styrke i GNU gcc 3-overstteren og de bedste ben "
+#~ "Kildetekst-udviklingsmiljer."
+
+#~ msgid "Development simplified"
+#~ msgstr "Nem udvikling"
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ "Dette brandmursprodukt indholder netvrksfunktioner som lader dig opfylde "
+#~ "alle dine sikkerhedsbehov."
+
+#~ msgid ""
+#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
+#~ "N.F.)"
+#~ msgstr ""
+#~ "Produktkataloget MandrakeSecurity indeholder produktet Multi Network "
+#~ "Firewall (M.N.F.)."
+
+#~ msgid "Strategic partners"
+#~ msgstr "Strategiske samarbejdspartnere"
+
+#~ msgid ""
+#~ "Whether you choose to teach yourself online or via our network of "
+#~ "training partners, the Linux-Campus catalogue prepares you for the "
+#~ "acknowledged LPI certification program (worldwide professional technical "
+#~ "certification)"
+#~ msgstr ""
+#~ "Hvadenten du vlger at undervise dig selv p nettet eller via vores net "
+#~ "af undervisningspartnere, vil Linux-Campus kataloget forberede dig til "
+#~ "det anerkendte LPI-certificeringsprogram (verdensomspndende professionel "
+#~ "teknisk certificering)"
+
+#~ msgid "Certify yourself on Linux"
+#~ msgstr "Certificr dig p Linux."
+
+#~ msgid ""
+#~ "The training program has been created to respond to the needs of both end "
+#~ "users and experts (Network and System administrators)"
+#~ msgstr ""
+#~ "Trningsprogrammet er blevet lavet for at tilgodese bde brugeres og "
+#~ "eksperters behov (netvrk- and system-administration)"
+
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr "Opdag MandrakeSofts trningskatalog Linux-Campus"
+
+#~ msgid ""
+#~ "MandrakeClub and Mandrake Corporate Club were created for business and "
+#~ "private users of Mandrake Linux who would like to directly support their "
+#~ "favorite Linux distribution while also receiving special privileges. If "
+#~ "you enjoy our products, if your company benefits from our products to "
+#~ "gain a competititve edge, if you want to support Mandrake Linux "
+#~ "development, join MandrakeClub!"
+#~ msgstr ""
+#~ "MandrakeClub og Mandrake Corporate Club er blevet skabt til "
+#~ "forretningsbrugere private brugere af Mandrake Linux, som gerne vil "
+#~ "sttte deres foretrukne Linux-distribution direkte og samtidig ogs "
+#~ "modtage srlige privilegier. Hvis du kan lide vores produkter, hvis dit "
+#~ "firma har gavn af vores produkter til at f et konkurrencemssigt "
+#~ "forspring, eller hvis du nsker at sttte udviklingen af Mandrake Linux, "
+#~ "s slut dig til MandrakeClub!"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr "Opdag MandrakeClub og Mandrake Corporate Club"
+
+#~ msgid ""
+#~ "As a review, DrakX will present a summary of various information it has\n"
+#~ "about your system. Depending on your installed hardware, you may have "
+#~ "some\n"
+#~ "or all of the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary.\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Country\": check the current country selection. If you are not in "
+#~ "this\n"
+#~ "country, click on the button and choose another one.\n"
+#~ "\n"
+#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+#~ "primary language you have chosen. But here, just as in your choice of a\n"
+#~ "keyboard, you may not be in a country to which the chosen language\n"
+#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
+#~ "configure the clock for the correct timezone.\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation.\n"
+#~ "\n"
+#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+#~ "click that button. This should be reserved to advanced users.\n"
+#~ "\n"
+#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+#~ "interface in \"800x600\" resolution. If that does not suits you, click "
+#~ "on\n"
+#~ "the button to reconfigure your graphical interface.\n"
+#~ "\n"
+#~ " * \"Network\": If you want to configure your Internet or local network\n"
+#~ "access now, you can by clicking on this button.\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. If you notice the sound card displayed is not the one "
+#~ "that\n"
+#~ "is actually present on your system, you can click on the button and "
+#~ "choose\n"
+#~ "another driver.\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. If you have a TV card and it is not detected, click on the button "
+#~ "to\n"
+#~ "try to configure it manually.\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with the card."
+#~ msgstr ""
+#~ "DrakX vil vise en oversigt til gennemsyn over forskellige oplysninger den "
+#~ "har om systemet. Afhngig af dit installerede maskinel kan du have nogle "
+#~ "af eller alle de flgende indgange:\n"
+#~ "\n"
+#~ " * 'Mus': tjek den aktuelle musekonfiguration og klik p knappen for om "
+#~ "ndvendigt at ndre den.\n"
+#~ "\n"
+#~ " * 'Tastatur': tjek den aktuelle tastaturkonfiguration og klik p knappen "
+#~ "for om ndvendigt at ndre den.\n"
+#~ "\n"
+#~ " * 'Land': Tjek det aktuelle valg af land. Hvis du ikke er i dette land, "
+#~ "s klik p knappen og vlg et andet.\n"
+#~ "\n"
+#~ " * 'Tidszone': DrakX gtter normalt din tidszone fra det foretrukne "
+#~ "sprog, du har valgt. Men ogs her, som ved valg af tastatur, er du mske "
+#~ "ikke i det land som dit sprog indikerer, s du har mske brug for at "
+#~ "klikke p 'Tidszone'-knappen s du kan konfigurere uret svarende til den "
+#~ "korrekte tidszone.\n"
+#~ "\n"
+#~ " * 'Printer': Et klik p 'Ingen printer'-knappen vil bne vejlederen for "
+#~ "printerkonfigurering. Kig i det tilhrende kapitel i 'Startvejledningen' "
+#~ "for mere information om hvordan man opstter en ny printer. Grnsefladen\n"
+#~ "prsenteret der ligner den som bruges p installationstidspunktet;\n"
+#~ "\n"
+#~ " * 'Opstartsindlser': Hvis du nsker at ndre din konfiguration af "
+#~ "opstartsindlser, s klik p denne knap. Dette burde vre forbeholdt "
+#~ "avancerede brugere.\n"
+#~ "\n"
+#~ " * 'Grafisk grnseflade': Normalt konfigurerer DrakX din grafiske "
+#~ "grnseflade i '800x600'-oplsning. Hvis dette ikke passer dig, s klik p "
+#~ "knappen for at omkonfigurere din grafiske grnseflade.\n"
+#~ "\n"
+#~ " * 'Netvrk': Hvis du nsker at konfigurere din adgang til Internettet "
+#~ "eller lokalnettet nu, kan du gre dette ved at klikke p denne knap.\n"
+#~ "\n"
+#~ " * 'Lydkort': Hvis et lydkort er blevet fundet p dit system, vil det "
+#~ "blive vist her. Hvis du bemrker at det viste lydkort ikke er det som "
+#~ "faktisk er til stede p systemet, kan du klikke p knappen og vlge en "
+#~ "anden driver.\n"
+#~ "\n"
+#~ " * 'Tv-kort': Hvis et tv-kort er blevet fundet p dit system, vil det "
+#~ "blive vist her. Hvis du har et tv-kort og det ikke er blevet fundet, s "
+#~ "klik p knappen for at prve at konfigurere det manuelt.\n"
+#~ "\n"
+#~ " * 'ISDN-kort': Hvis et ISDN-kort er blevet fundet p dit system, vil det "
+#~ "blive vist her. Du kan klikke p knappen for at ndre de tilhrende "
+#~ "parametre."
+
+#~ msgid ""
+#~ "LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
+#~ "what it finds there:\n"
+#~ "\n"
+#~ " * if a Windows boot sector is found, it will replace it with a grub/"
+#~ "LILO\n"
+#~ "boot sector. This way you will be able to load either GNU/Linux or "
+#~ "another\n"
+#~ "OS.\n"
+#~ "\n"
+#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
+#~ "one.\n"
+#~ "\n"
+#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
+#~ "bootloader.\n"
+#~ "\n"
+#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
+#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
+#~ "disk\n"
+#~ "(\"On Floppy\").\n"
+#~ "\n"
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Mandrake Linux-cdrommen har en indbygget rednings-tilstand. Du kan f fat "
+#~ "i denne ved at starte op fra cdrommen, trykke 'F1'-tasten ved opstart, og "
+#~ "indtaste 'rescue' ved opstartsledeteksten. Men i tilflde af at din "
+#~ "maskine ikke kan starte op fra cdrommen, er der mindst to situationer "
+#~ "hvor det er kritisk at have en opstartsdiskette:\n"
+#~ "\n"
+#~ " * ved installering af opstartsindlseren vil DrakX genskrive "
+#~ "opstartssektoren (MBR) p din hoveddisk (medmindre du bruger en anden "
+#~ "opstartshndterer) s du kan starte enten Windows eller GNU/Linux "
+#~ "(forudsat du har Windows p dit system). Hvis du p et tidspunkt har brug "
+#~ "for at geninstallere Windows, vil Microsoft installeringsprocessen "
+#~ "overskrive opstartssektoren, og dermed fjerne din mulighed for at starte "
+#~ "GNU/Linux!\n"
+#~ "\n"
+#~ " * Hvis der opstr et problem, og du ikke kan starte GNU/Linux op fra "
+#~ "harddisken, vil denne diskette vre den eneste mde at starte GNU/Linux "
+#~ "op p. Den indeholder et pnt antal systemvrktjer til at genskabe et "
+#~ "system som er get ned pga. strmsvigt, en uheldig tastefejl, en glemt "
+#~ "root-adgangskode, eller nogen anden rsag.\n"
+#~ "\n"
+#~ "Hvis du siger 'Ja', vil du blive bedt om at indstte en diskette i "
+#~ "drevet. Disketten skal vre blank eller have ikke-kritiske data p sig - "
+#~ "DrakX vil formatere den og overskrive hele disketten."
+
+#~ msgid ""
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Valg af 'Opret en opstartsdiskette' giver dig mulighed for at f en "
+#~ "rednings-opstartsmedie tilgngelig.\n"
+#~ "\n"
+#~ "Mandrake Linux-cdrommen har en indbygget rednings-tilstand. Du kan f fat "
+#~ "i denne ved at starte op fra cdrommen, trykke 'F1'-tasten ved opstart, og "
+#~ "indtaste 'rescue' ved opstartsledeteksten. Hvis din maskine ikke kan "
+#~ "starte op fra cdrommen, er der i mindst to situationer, hvor det er "
+#~ "ndvendigt at have en opstartsdiskette:\n"
+#~ "\n"
+#~ " * ved installering af opstartsindlseren vil DrakX genskrive "
+#~ "opstartssektoren (MBR) p din hoveddisk (medmindre du bruger en anden "
+#~ "opstartshndterer) s du kan starte enten Windows eller GNU/Linux "
+#~ "(forudsat du har Windows p dit system). Hvis du har brug for at "
+#~ "geninstallere Windows, vil Microsoft installeringsprocessen overskrive "
+#~ "opstartssektoren, og fjerne din mulighed for at starte GNU/Linux!\n"
+#~ "\n"
+#~ " * Hvis der opstr et problem, og du ikke kan starte GNU/Linux op fra "
+#~ "harddisken, vil denne diskette vre den eneste mde at starte GNU/Linux "
+#~ "op p. Den indeholder et pnt antal systemvrktjer til at genskabe et "
+#~ "system som er get ned pga. strmsvigt, en uheldig tastefejl, en glemt "
+#~ "root-adgangskode, eller nogen anden rsag.\n"
+#~ "\n"
+#~ "Hvis du siger 'Ja', vil du blive bedt om at indstte en diskette i "
+#~ "drevet. Disketten skal vre blank eller indeholde ikke-kritiske data p "
+#~ "den - DrakX vil formatere disketten og overskrive hele disketten."
+
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "De flgende printere er konfigureret. Dobbeltklik p en printer for at "
+#~ "ndre dens indstillinger; for at gre den til standard-printer: for at se "
+#~ "information om den; eller for at gre en ekstern CUPS-printer tilgngelig "
+#~ "for Star Office/OpenOffice.org/GIMP.org."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 5e05f75ed..83957bd68 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: MandrakeInstaller\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2003-02-22 14:28+0100\n"
"Last-Translator: Stefan Siegel <siegel@mandrakesoft.com>\n"
"Language-Team: German <cooker-i18n@linux-mandrake.com>\n"
@@ -1091,7 +1091,7 @@ msgstr "%s formatieren von %s schlug Fehl"
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Click on \"Next ->\" if you want to delete all data and partitions present\n"
"on this hard drive. Be careful, after clicking on \"Next ->\", you will not\n"
@@ -1101,12 +1101,12 @@ msgid ""
"Click on \"<- Previous\" to stop this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
-"Betätigen Sie die Schaltfläche „OK“, wenn Sie alle Partitionen und die\n"
-"darauf befindlichen Daten löschen wollen. Bedenken Sie, dass Sie nach\n"
-"betätigen der Schaltfläche auch an die möglichweise noch vorhandenen\n"
-"Windows Daten nicht mehr gelangen werden!\n"
+"Betätigen Sie die Schaltfläche „Weiter ->“, wenn Sie alle Partitionen und\n"
+"die darauf befindlichen Daten löschen wollen. Bedenken Sie, dass Sie nach\n"
+"betätigen der Schaltfläche auch an die möglicherweise noch vorhandenen\n"
+"Windows-Daten nicht mehr gelangen werden!\n"
"\n"
-"Wählen Sie „Abbruch“, um ohne Datenverlust die Aktion abtzubrechen."
+"Wählen Sie „<- Zurück“, um die Aktion ohne Datenverlust abzubrechen."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
@@ -1124,90 +1124,139 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
-msgstr ""
-"Hier bekommen Sie verschiedene Parameter Ihres Systems angezeigt. Je nach\n"
-"vorhandener Hardware sehen Sie hier (oder eben nicht) folgende Einträge:\n"
-"\n"
-" * „Maus“: Kontrollieren Sie die Mauskonfiguration und drücken Sie den "
-"Knopf,\n"
-"um sie, wenn nötig, zu ändern;\n"
-"\n"
-" * „Tastatur“: Kontrollieren Sie die aktuelle Tastaturkonfiguration drücken "
-"Sie\n"
-"den Knopf, um sie, wenn nötig, zu ändern;\n"
-"\n"
-" * „Zeitzone“: DrakX versucht die Zeitzone anhand der gewählten Sprache\n"
-"zu erraten. Aber hier, genau wie bei der Tastatur, ist es jedoch möglich, "
-"dass\n"
-"Sie sich nicht in dem Land befinden, zu dem die vorgegebene Sprache erahnen\n"
-"gehört. In diesem Fall sollten Sie den Knopf drücken, um die Uhr "
-"entsprechend\n"
-"Ihrer lokalen Zeitzone zu setzen.\n"
-"\n"
-" * „Drucker“: Durch Anwahl der Schaltfläche „Kein Drucker“ starten Sie den\n"
-"Druckerassistenten. Für mehr Informationen, wie man einen neuen Drucker\n"
-"einrichtet, schlagen Sie im dazugehörige Kapitel aus dem „Starter Guide“\n"
-"nach. Die dort präsentierte Schnittstelle ähnelt der, die während der "
-"Installation\n"
-"verwendet wird; \n"
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
+msgstr ""
+"Nun bekommen Sie eine Zusammenfassung verschiedener Informationen Ihres\n"
+"Systems. Je nach vorhandener Hardware sehen Sie hier (oder eben nicht) die\n"
+"folgende Einträge. Jeder Eintrag besteht aus einem konfigurierbaren Gerät\n"
+"gefolgt vom dessen aktuellen Zustand. Durch betätigen der Schaltfläche\n"
+"„Konfigurieren“ können Sie diesen ändern.\n"
+"\n"
+" * „Tastatur“: Kontrollieren Sie die aktuelle Tastaturvorgabe und wählen\n"
+"Sie die Schaltfläche, falls Sie die Vorgabe ändern wollen.\n"
+"\n"
+" * „Staat“: „Staat“: Kontrollieren Sie, ob die Auswahl des Staates, in dem\n"
+"Sie sich befinden korrekt ist. Falls nicht, betätigen Sie bitte die\n"
+"Schaltfläche „Konfigurieren“ und wählen Sie den richtigen. Ist Ihr Staat\n"
+"nicht in der Liste, die Sie gezeigt bekommen, können Sie über die\n"
+"Schaltfläche „Mehr“ eine vollständigere Liste erzwingen.\n"
+"\n"
+" * „Zeitzone“: „DrakX“ versucht die Zeitzone anhand des gewählten Staates\n"
+"zu setzen. Sollte diese Auswahl nicht korrekt sein (manche Staaten etwa\n"
+"überspannen mehrere Zeitzonen) können Sie durch betätige der Schaltfläche\n"
+"„Konfigurieren“ Ihre lokale Zeitzone setzen.\n"
+"\n"
+" * „Maus“: Kontrollieren Sie die konfigurierte Maus und betätigen Sie,\n"
+"falls notwendig, die Schaltfläche.\n"
+"\n"
+" * „Drucker“: Durch Anwahl der Schaltfläche „Konfigurieren“ startet den\n"
+"Druckerassistenten. Weitere Informationen zu diesem Assistenten erhalten\n"
+"Sie im Drucker-Kapitel des „Starter Handbuch“. Das dort vorgestellte\n"
+"Programm entspricht dem während der Installation angebotenen.\n"
+"\n"
" * „Soundkarte“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde,\n"
-"wird sie hier angezeigt.\n"
+"wird sie hier angezeigt. Sollte die von DrakX getroffene Auswahl nicht\n"
+"korrekt sein, betätigen Sie einfach die Schaltfläche, um sie zu\n"
+"korrigieren.\n"
+"\n"
+" * „Grafikumgebung“: DrakX richtet Ihre Grafikumgebung normalerweise in der\n"
+"Auflösung „800×600“ bzw. „1024×768“ ein. Sollte Ihnen das nicht zusagen,\n"
+"können Sie es durch betätigen der Schaltfläche „Konfigurieren“ ändern.\n"
"\n"
" * „TV-Karte“: Falls eine TV-Karte in Ihrem Rechner gefunden wurde, wird\n"
-"sie hier angezeigt.\n"
+"sie hier angezeigt. Falls Sie eine TV-Karte besitzen, die hier nicht\n"
+"richtig erkannt wurde, können Sie versuchen, diese manuell einzurichten.\n"
+"Betätigen Sie einfach die Schaltfläche „Konfigurieren“.\n"
"\n"
" * „ISDN Karte“: Falls eine ISDN Karte in Ihrem Rechner gefunden wurde,\n"
-"wird sie hier angezeigt. Durch Anwahl der Schaltfläche können Sie die\n"
-"Parameter ändern."
+"wird sie hier angezeigt. Durch Anwahl der Schaltfläche\n"
+"„Konfigurieren“können Sie die Parameter ändern.\n"
+"\n"
+" * „Netzwerk“: Falls Sie Ihren Internetzugang oder Ihr lokales Netzwerk nun\n"
+"einrichten wollen, können Sie das hier tun.\n"
+"\n"
+" * „Sicherheitsebene“: Dieser Eintrag ermöglicht es Ihnen, die\n"
+"Sicherheitsebene Ihres Systems zu ändern, die Sie in einem früheren\n"
+"Installationsschritt () gewählt haben.\n"
+"\n"
+" * „Firewall“: Falls Sie Ihren Rechner mit dem Internet verbinden wollen,\n"
+"ist es sinnvoll sich vor ungebetenen Eindringlingen durch einrichten einer\n"
+"Firewall zu schützen. Lesen Sie das entsprechende Kapitel im „Starter\n"
+"Handbuch“, wenn Sie weitere Informationen benötigen.\n"
+"\n"
+" * „Betriebssystemstarter“: Falls Sie die Konfiguration Ihres\n"
+"Betriebssystemstarters ändern wollen, wählen Sie diese Schaltfläche. Es sei\n"
+"angemerkt, dass dieser Punkt sich an fortgeschrittenere Nutzer richtet.\n"
+"\n"
+" * „Dienste“: Sie können hier die Dienste wählen, die ab dem Start von\n"
+"Mandrake Linux zur Verfügung gestellt werden sollen. Wollen Sie den Rechner\n"
+"als Server verwenden, sollten Sie unbedingt einen Blick auf diese Liste\n"
+"werfen."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -1216,11 +1265,14 @@ msgid ""
"actually present on your system, you can click on the button and choose\n"
"another driver."
msgstr ""
+"„Soundkarte“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde, wird\n"
+"sie hier angezeigt. Sollte die von DrakX getroffene Auswahl nicht korrekt\n"
+"sein, betätigen Sie einfach die Schaltfläche, um sie zu korrigieren."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Yaboot is a bootloader for NewWorld Macintosh hardware and can be used to\n"
"boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are correctly\n"
@@ -1266,9 +1318,7 @@ msgstr ""
"wird.\n"
"\n"
" * „Boot Gerät“: Hiermit wird angegeben, wohin die Informationen zum\n"
-"Starten Ihres GNU/Linux Systems geschrieben werden sollen. Sie sollten in\n"
-"einem früheren Schritt bereits eine Boot-Partition angelegt haben, um diese\n"
-"Daten zu beherbergen.\n"
+"Starten Ihres GNU/Linux Systems geschrieben werden sollen.\n"
"\n"
" * „Open Firmware Verzögerung“: Im Gegensatz zu LILO, stehen mit yaboot\n"
"zwei Verzögerungen zur Verfügung. Die erste Verzögerung wird in Sekunden\n"
@@ -1292,7 +1342,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"You can add additional entries in yaboot for other operating systems,\n"
"alternate kernels, or for an emergency boot image.\n"
@@ -1355,7 +1405,7 @@ msgstr ""
"handelt es sich um „vmlinuz“ oder eine Variante von „vmlinuz“ mit einer\n"
"Versionsnummer.\n"
"\n"
-" * „Verzeichnisbaumwurzel“: Die Verzeichnisbaumwurzel „„/““ Ihrer Linux\n"
+" * „Verzeichnisbaumwurzel“: Die Verzeichnisbaumwurzel „/“ Ihrer Linux\n"
"Installation.\n"
"\n"
" * „Übergeben“: Auf Apple Hardware, wird die Übergabemöglichkeit weiterer\n"
@@ -1379,7 +1429,7 @@ msgstr ""
"Parameter einstellen.\n"
"\n"
" * „Schreiben/Lesen“: Normalerweise wird die Verzeichnisbaumwurzel zuerst\n"
-"im Nur-Lese-Modus eingehängt, um eine Dateisystem Verifikation durchführen\n"
+"im Nur-Lese-Modus eingehängt, um eine Dateisystem-Verifikation durchführen\n"
"zu können, bevor das Betriebssystem seinen Dienst aufnimmt. Diesen Umstand\n"
"können Sie hier abstellen.\n"
"\n"
@@ -1396,19 +1446,14 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"DrakX will first detect any IDE devices present in your computer. It will\n"
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1421,32 +1466,24 @@ msgid ""
"configure the driver."
msgstr ""
"„DrakX“ versucht nun alle IDE Festplatten Ihres Systems zu finden. Unter\n"
-"Anderem sucht „DrakX“ auch nach PCISCSI-Karten, die es kennt, um sie\n"
+"Anderem sucht „DrakX“ auch nach PCI-SCSI-Karten, die es kennt, um sie\n"
"automatisch mit dem richtigen Treiber einzubinden.\n"
"\n"
-"Falls Sie über keinen SCSI Adapter verfügen, es sich um einen ISASCSI\n"
-"Adapter handelt oder um einen PCISCSI Adapter, bei dem „DrakX“ nicht weiß,\n"
-"welcher Treiber funktioniert, werden Sie gebeten, „DrakX“ zu helfen.\n"
-"\n"
-"Ist in Ihrem Rechner kein SCSI Adapter, wählen Sie einfach „Nein“. Sollten\n"
-"Sie Sich für „Ja“ entscheiden, erscheint eine Liste, aus der Sie Ihren\n"
-"Adapter auswählen können.\n"
+"Falls „DrakX“ nicht weiß, welcher Treiber funktioniert, werden Sie gebeten,\n"
+"„DrakX“ zu helfen.\n"
"\n"
-"Mussten Sie den Adapter aus der Liste wählen, fragt „DrakX“ Sie, ob Sie dem\n"
-"Modul Optionen übergeben wollen. Sie können „DrakX“ ruhig erlauben, erst\n"
-"einmal selbst zu versuchen, diese herauszufinden. In den meisten Fällen\n"
-"funktioniert das.\n"
+"Falls „DrakX“ nicht in der Lage ist, die Parameter selbst zu finden, die\n"
+"dem Modul zu übergeben sind, müssen Sie diese angeben.\n"
"\n"
-"Falls nicht, müssen Sie die Optionen angeben. Schauen Sie im\n"
-"„Installationshandbuch“, wie Sie diese Informationen erhalten können: etwa\n"
-"unter Windows (sofern das auf Ihren Rechner installiert ist), aus den\n"
-"Handbüchern, die sie mit dem Adapter erhalten haben oder von den Web-Seiten\n"
-"des Hardware-Anbieters (sofern Sie einen WWW-Zugang haben)."
+"Sie können die benötigten Informationen etwa unter Windows (sofern das auf\n"
+"Ihren Rechner installiert ist) finden, aus den Handbüchern, die sie mit dem\n"
+"Adapter erhalten haben oder von den Web-Seiten des Hardware-Anbieters\n"
+"(sofern Sie einen WWW-Zugang haben)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Now, it's time to select a printing system for your computer. Other OSs may\n"
"offer you one, but Mandrake Linux offers two. Each of the printing systems\n"
@@ -1456,7 +1493,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1475,39 +1512,33 @@ msgid ""
msgstr ""
"Hier können Sie das Drucksystem für Ihren Rechner wählen. Andere\n"
"Betriebssysteme bieten Ihnen nur eines, bei Mandrake Linux können Sie\n"
-"zwischen drei verschiedenen wählen.\n"
+"zwischen zwei verschiedenen wählen.\n"
"\n"
" * „pdq“ - Es steht für „print, don't queue“ (engl. für „Drucken ohne\n"
"Warteschlange“). Falls Sie einen Drucker haben, der direkt an Ihrem Rechner\n"
"hängt und Sie keine Netzwerkdrucker verwenden wollen, ist dies das\n"
"Drucksystem Ihrer Wahl. Es kann zwar auch mit Netzwerkdruckern umgehen, ist\n"
"dabei aber extrem langsam. Wählen Sie „pdq“, wenn Sie ein GNU/Linux Neuling\n"
-"sind. Sie können diese Wahl später immer wieder ändern, indem Sie\n"
-"PrinterDrake im Mandrake Kontrollzentrum starten und dort die Schaltfläche\n"
-"„>Expertenmodus“ betätigen.\n"
+"sind.\n"
"\n"
" * „CUPS“ - Mit dem „Common Unix Printing System“ (engl. für „Allgemeines\n"
"Unix-Drucksystem“) können Sie ebenso gut um auf Ihrem direkt\n"
"angeschlossenen Drucker drucken, wie auf einem Drucker, der an einem Server\n"
"auf der anderen Seite der Welt hängt. Es ist einfach zu bedienen und kann\n"
-"sowohl als Server als auch als Klient für das alte „LPD“-Drucksystem\n"
+"sowohl als Server als auch als Klient für das alte „lpd“-Drucksystem\n"
"verwendet werden - Es ist somit rückwärtskompatibel. Es ist sehr mächtig,\n"
"in seiner Grundeinstellung verhält es sich jedoch genau wie „pdq“. Wenn Sie\n"
-"einen „LPD“ Server benötigen, müssen Sie einfach nur den „cups-lpd“ Dämon\n"
+"einen „lpd“ Server benötigen, müssen Sie einfach nur den „cups-lpd“ Dämon\n"
"starten. CUPS bietet grafische Konfigurations- und Druckmenüs.\n"
"\n"
-" * „lprNG“ - „line printer daemon New Generation“ (engl. für\n"
-"„Zeilendrucker-Dämon - Neue Generation“). Dieses System bietet etwa das\n"
-"gleiche, was die beiden vorherigen können, es erlaubt Ihnen jedoch auch auf\n"
-"Drucker in Novell Netzwerken zuzugreifen, da es das IPX Protokoll\n"
-"beherrscht. Falls Sie das benötigen, verwenden Sie „lprNG“. Andernfalls ist\n"
-"„CUPS“ vorzuziehen, da es benutzerfreundlicher ist und in\n"
-"Nicht-IPX-Netzwerken besser funktioniert."
+"Sie können diese Wahl später immer wieder ändern, indem Sie PrinterDrake im\n"
+"Mandrake-Kontrollzentrum starten und dort die Schaltfläche „Expertenmodus“\n"
+"betätigen."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
"automated. DrakX will analyze the disk boot sector and act according to\n"
@@ -1526,65 +1557,32 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Die Mandrake Linux CD-ROM hat einen eingebauten Rettungsmo­dus. Sie\n"
-"erreichen ihn durch Starten von CD-ROM, und Drücken von »F1« bei\n"
-"Bootbeginn. Geben Sie dann »rescue« an der Eingabeaufforderung ein. Falls\n"
-"Ihr Rechner nicht von CD-ROM starten kann, sollten Sie diesen Punkt\n"
-"unbedingt aus zwei Gründen abarbeiten:\n"
-"\n"
-" * Wenn DrakX den Betriebssystemstarter installiert, schreibt es den\n"
-"Boot-Sektor (MBR) Ihrer primären Festplatte neu (außer Sie wollen einen\n"
-"anderen Betriebssystemstarter verwenden), damit Sie die verschiedenen,\n"
-"vorhandenen Betriebssysteme starten können (etwa Windows und GNU/Linux).\n"
-"Sollten Sie etwa Windows neu installieren, wird dieses - ohne Sie zu fragen\n"
-"- Ihren Boot-Sektor überschreiben. Somit werden Sie Ihr GNU/Linux nicht\n"
-"mehr starten können! Mit einer Startdiskette können Sie Ihr\n"
-"GNU/Linux-System dann trotzdem hochfahren und diese Änderungen rückgängig\n"
-"machen.\n"
-"\n"
-" * Sollten Ihnen andere schwerwiegende Systemfehler das Starten von\n"
-"GNU/Linux von der Festplatte unmöglich machen, ist diese Startdiskette so\n"
-"ziemlich die einzige Möglichkeit, auf Ihr System zuzugreifen. Zudem enthält\n"
-"sie eine Anzahl von Systemprogrammen, die Ihnen bei der Behebung von\n"
-"Systemfehlern (nach einem Stromausfall, einen unglücklichen Tippfehler in\n"
-"einem Passwort, etc.) helfen werden.\n"
-"\n"
-"Wenn Sie diesen Schritt anwählen, wird „DrakX“ Sie bitten, eine Diskette in\n"
-"ein Laufwerk zu legen. Die Diskette sollte natürlich leer sein (zumindest\n"
-"keine relevanten Daten enthalten). Sie muss nicht formatiert sein, „DrakX“\n"
-"kümmert sich um alles."
+"(\"On Floppy\")."
+msgstr ""
+"LILO und grub sind Betriebssystemstarter für GNU/Linux. Diese\n"
+"Installationsphase läuft in den meisten Fällen völlig automatisch ab. DrakX\n"
+"analysiert den Bootsektor und ergreift dann die passenden Maßnahmen:\n"
+"\n"
+" * Findet DrakX einen Windows-Bootsektor, ersetzt es ihn durch einen grub-\n"
+"oder LILO-Bootsektor. Sie erhalten dadurch die Möglichkeit, beim\n"
+"Systemstart zwischen Windows (bzw. anderen Betriebssystemen, sofern\n"
+"vorhanden) und GNU/Linux auszuwählen;\n"
+"\n"
+" * Findet DrakX einen Linux-Bootsektor vor, ersetzt es ihn durch einen\n"
+"neuen;\n"
+"\n"
+"Falls DrakX nicht weiß, wo der Betriebssystemstarter installiert werden\n"
+"soll, wird es Sie um Ihre Meinung bitten.\n"
+"\n"
+"„Boot Gerät“: Normalerweise werden Sie die Voreinstellung nicht ändern\n"
+"(„Erster Sektor der Platte (MBR)“), Sie können Ihn jedoch auch auf der\n"
+"zweiten Festplatte („/dev/hdb“), oder etwa auf einer Diskette („Auf\n"
+"Diskette“)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options that will be available at boot time will be displayed.\n"
@@ -1601,7 +1599,7 @@ msgid ""
"bootloader menu, but you will need a boot disk in order to boot those other\n"
"operating systems!"
msgstr ""
-"Nachdem Sie die allgemeinen BS-Startetr Parameter eingestellt haben,\n"
+"Nachdem Sie die allgemeinen BS-Starter Parameter eingestellt haben,\n"
"bekommen Sie die Liste möglicher Betriebssystemalternativen für das\n"
"Startmenü gezeigt.\n"
"\n"
@@ -1613,15 +1611,15 @@ msgstr ""
"„Hinzufügen“ erzeugt einen neuen Eintrag und „Fertig“ bringt Sie zum\n"
"nächsten Installationsschritt.\n"
"\n"
-"Möglicherweise wollen Sie auch nicht, dass andere Anwender Zugiff auf die\n"
+"Möglicherweise wollen Sie auch nicht, dass andere Anwender Zugriff auf die\n"
"übrigen installierten Betriebssysteme bekommen. In diesem Fall können Sie\n"
"die jeweiligen Einträge entfernen, Sie müssen jedoch selbst für\n"
-"Startdisketten sorgen, um diese Syteme erreichen zu können!"
+"Startdisketten sorgen, um diese Systeme erreichen zu können!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"This dialog allows to finely tune your bootloader:\n"
"\n"
@@ -1650,32 +1648,19 @@ msgid ""
"Clicking the \"Advanced\" button in this dialog will offer advanced options\n"
"that are reserved for the expert user."
msgstr ""
-"LILO und grub sind Betriebssystemstarter für GNU/Linux. Diese\n"
-"Installationsphase läuft in den meisten Fällen völlig automatisch ab. DrakX\n"
-"analysiert den Bootsektor und ergreift dann die passenden Maßnahmen:\n"
-"\n"
-" * Findet DrakX einen Windows-Bootsektor, ersetzt es ihn durch einen grub\n"
-"oder LILO-Bootsektor. Sie erhalten dadurch die Möglichkeit, beim\n"
-"Systemstart zwischen Windows (bzw. anderen Betriebssystemen, sofern\n"
-"vorhanden) und Windows auszuwählen;\n"
-"\n"
-" * Findet DrakX einen Linux-Bootsektor vor, ersetzt es ihn durch einen\n"
-"neuen;\n"
-"\n"
-"Im Zweifelsfall bietet DrakX Ihnen einen Dialog mit verschiedenen\n"
-"Auswahlmöglichkeiten.\n"
+"DrakX bietet Ihnen einen Dialog mit verschiedenen Auswahlmöglichkeiten.\n"
"\n"
" * „Zu verwendender Betriebssystemstarter“: Hier erhalten Sie drei\n"
"Alternativen:\n"
"\n"
-" * „Grub“: Falls Sie grub (Textmenü) bevorzugen.\n"
-"\n"
-" * „LILO mit grafischem Menü“: Falls Sie LILO mit seiner grafischen\n"
-"Oberfläche bevorzugen.\n"
+" * „GRUB“: Falls Sie grub (Textmenü) bevorzugen.\n"
"\n"
" * „LILO mit Textmenü“: Falls Sie LILO mit Textmenü als Ihren Favoriten\n"
"ansehen.\n"
"\n"
+" * „LILO mit grafischem Menü“: Falls Sie LILO mit seiner grafischen\n"
+"Oberfläche bevorzugen.\n"
+"\n"
" * „Boot Gerät“: Normalerweise müssen Sie hier nichts ändern („/dev/hda“),\n"
"Sie könnten jedoch den Starter auch auf der zweiten Platte installieren,\n"
"(„/dev/hdb“) oder sogar auf einer Diskette („/dev/fd0“).\n"
@@ -1688,9 +1673,9 @@ msgstr ""
"\n"
"!! Machen Sie sich klar, dass Sie sich selbst darum kümmern müssen,\n"
"irgendwie Ihr Mandrake Linux-System zu starten, wenn Sie hier keinen\n"
-"Betriebssystemstarter installieren (durch Auswahl von „Abbruch“). Stellen\n"
-"Sie auch sicher, dass Sie wissen was Sie tun, wenn Sie hier Einstellungen\n"
-"verändern ... !!\n"
+"Betriebssystemstarter installieren (durch Auswahl von „Überspringen“).\n"
+"Stellen Sie auch sicher, dass Sie wissen was Sie tun, wenn Sie hier\n"
+"Einstellungen verändern ... !!\n"
"\n"
"Durch wählen der Schaltfläche „Fortgeschritten“ erhalten Sie etliche\n"
"Optionen, die dem fortgeschrittenen Anwender vorbehalten bleiben."
@@ -1698,7 +1683,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"Root\" is the system\n"
@@ -1750,7 +1735,7 @@ msgstr ""
"kein Passwort zu vergeben. Wir raten Ihnen jedoch dringend davon ab!\n"
"Glauben Sie nicht, dass nur, weil Sie GNU/Linux geladen haben, Ihre anderen\n"
"Betriebssysteme vor Fehlern sicher sind. »root« hat keine Beschränkungen.\n"
-"Er könnte beispielsweise unbeabsichtigterweise alle Daten auf allen\n"
+"Er könnte beispielsweise unbeabsichtigt erweise alle Daten auf allen\n"
"Partitionen löschen, weil er unvorsichtigerweise auf die Partitionen selber\n"
"zugegriffen hat!\n"
"\n"
@@ -1765,17 +1750,19 @@ msgstr ""
"Versuch könnte sonst zu einem Problem werden, da Sie anschließend das\n"
"„falsche“ Passwort bei der Verbindung mit dem System eingeben müssten.\n"
"\n"
-"Im Expertenmodus werden Ihnen zusätzliche Optionen zur Verfügung gestellt.\n"
-"Diese hängen davon ab, ob Sie mit sich mit einem Authentifizierungsserver\n"
-"verbinden wollen oder nicht.\n"
+"Wenn Sie wollen, dass der Zugang zu diesem Rechner über einen\n"
+"Authentifizierungsserver verwaltet wird, betätigen Sie die Schaltfläche\n"
+"„Fortgeschritten“.\n"
"\n"
"Falls in Ihrem Netzwerk LDAP, NIS oder PDC zur Authentifizierung verwendet\n"
"wird, wählen Sie bitte den entsprechenden Menüpunkt. Falls Sie nicht\n"
"wissen, welches Protokoll Sie verwenden, fragen Sie Ihren\n"
"Netzwerkadministrator.\n"
"\n"
-"Falls Ihr Rechner nicht an einem administrierten Netzwerk hängt, wählen Sie\n"
-"bitte „Lokale Dateien“ zur Authentifizierung."
+"Wenn Sie Probleme haben, sich Passwörter zu merken, können Sie die Option\n"
+"„Kein Passwort“ wählen. Dennoch müssen wir Ihnen von dieser Möglichkeit\n"
+"abraten. Besonders wenn Sie mit Ihrem Rechner ständig oder auch nur\n"
+"zeitweise mit dem Internet verbunden sind."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
@@ -1791,7 +1778,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Usually, DrakX has no problems detecting the number of buttons on your\n"
"mouse. If it does, it assumes you have a two-button mouse and will\n"
@@ -1827,24 +1814,24 @@ msgstr ""
"Sollte dies nicht Ihren Vorstellungen entsprechen: Wählen Sie einfach Ihren\n"
"Maustyp aus der Liste, die Ihnen angezeigt wird.\n"
"\n"
-"Anschließend können Sie die Funktionstüchtigkeit Ihrer Maus überprüfen.\n"
-"Verwenden Sie auch die Knöpfe und gegebenenfalls das Mausrad, um\n"
-"sicherzustellen, dass die festgelegten Einstellungen funktionieren. Falls\n"
-"nicht, drücken Sie die [Leertaste] oder die Eingabetaste, um die\n"
-"Schaltfläche „Abbrechen“ zu betätigen und wählen Sie einen anderen Treiber\n"
-"aus.\n"
+"Sollten Sie einen anderen Maustyp gewählt haben, als DrakX Ihnen vorschlug,\n"
+"können Sie die Funktionstüchtigkeit Ihrer Maus im angezeigten Dialog\n"
+"überprüfen. Verwenden Sie auch die Knöpfe und gegebenenfalls das Mausrad,\n"
+"um sicherzustellen, dass die festgelegten Einstellungen funktionieren.\n"
+"Falls nicht, drücken Sie die [Leertaste] oder die Eingabetaste, um zurück\n"
+"zum Auswahlmenü zu gelangen und suchen Sie einen anderen Treiber aus.\n"
"\n"
"Es kommt vor, dass Mäuse mit Rädern nicht korrekt erkannt werden. Wählen\n"
"Sie in diesem Fall die richtige Maus aus der vorgegebenen Liste. Stellen\n"
"Sie sicher, dass Sie auch den Anschluss richtig angegeben haben. Nach\n"
-"betätigen der Schaltfläche „OK“, wird Ihnen ein Bild der gewählten Maus\n"
-"gezeigt. Bewegen Sie Räder und Tasten, um sicherzustellen, dass die Maus\n"
-"richtig erkannt wurde."
+"betätigen der Schaltfläche „Weiter->“, wird Ihnen ein Bild der gewählten\n"
+"Maus gezeigt. Bewegen Sie Räder und Tasten, um sicherzustellen, dass die\n"
+"Maus richtig erkannt wurde."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Your choice of preferred language will affect the language of the\n"
"documentation, the installer and the system in general. Select first the\n"
@@ -1857,33 +1844,51 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
"language used by the entire system. Running the command as a regular user\n"
"will only change the language settings for that particular user."
msgstr ""
-"Als ersten Schritt, wählen Sie bitte die gewünschte Sprache.\n"
-"\n"
"Wählen Sie Ihre bevorzugte Sprache für den Installationsvorgang und\n"
-"Systemlaufzeit.\n"
+"Systemlaufzeit. Wählen Sie zuerst die Region, in der Sie sich befinden,\n"
+"anschließend die Sprache, die Sie sprechen.\n"
"\n"
"Durch Betätigen der Schaltfläche „Fortgeschritten“ erhalten Sie die\n"
"Möglichkeit, weitere Sprachen auf Ihrem Rechner zu installieren, um diese\n"
"später verwenden zu können. Wollen Sie etwa Spaniern muttersprachlichen\n"
-"Zugang zu Ihrem System erlauben, wählen Sie deutsch als Hauptsprache in der\n"
-"Liste und im Fortgeschrittenen-Bereich „Spanish|Spain“.\n"
-"\n"
-"Haben Sie eine Sprache markiert und die Wahl mit „OK“ bestätigt, gelangen\n"
-"Sie automatisch zum nächsten Schritt."
+"Zugang zu Ihrem System erlauben, wählen Sie Deutsch als Hauptsprache in der\n"
+"Liste und im Fortgeschrittenen-Bereich „Spanisch“.\n"
+"\n"
+"Sie sind nicht auf eine weitere Sprache begrenzt. Sie können so viele\n"
+"auswählen, wie Sie wollen, ja sogar alle, indem Sie die Schaltfläche „Alle\n"
+"Sprachen“ verwenden. Das Auswählen einer Sprache beeinflusst die\n"
+"installierten Übersetzungen der Programme, Schriften,\n"
+"Rechtschreibkorrekturen, etc. Durch Auswahl des Menüpunkts „Verwende\n"
+"standardmäßig Unicode“ wird das System als Standardkodierung UTF-8\n"
+"Verwenden. Es sei angemerkt, dass diese Funktionalität momentan noch als\n"
+"experimentell eingestuft ist. Sollten Sie jedoch verschiedene Sprachen\n"
+"auswählen, die unterschiedliche Kodierungen notwendig machen würden, wird\n"
+"die Unicode-Unterstützung auf jeden Fall installiert.\n"
+"\n"
+"Um die Spracheinstellungen des ganzen Systems zwischen verschiedenen\n"
+"Sprachen umzuschalten, starten Sie einfach „/usr/sbin/localedrake“ unter\n"
+"dem privilegierten Kennzeichen „root“. Wollen Sie die Einstellungen nur für\n"
+"ein Kennzeichen ändern starten Sie den selben Befehl mit eben diesem\n"
+"Kennzeichen."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Depending on the default language you chose in Section , DrakX will\n"
"automatically select a particular type of keyboard configuration. However,\n"
@@ -1901,13 +1906,12 @@ msgid ""
"dialog will allow you to choose the key binding that will switch the\n"
"keyboard between the Latin and non-Latin layouts."
msgstr ""
-"„DrakX“ wird aufgrund Ihrer Sprachauswahl das für Sie passende\n"
-"Tastaturlayout bereits ausgewählt haben, Sie sollten diesen Schritt\n"
-"eigentlich nicht einmal angezeigt bekommen. Doch vielleicht sind Sie mit\n"
-"dieser Auswahl nicht zufrieden (wenn Sie beispielsweise eine vom Layout\n"
-"abweichende Sprache bevorzugen). Dann gehen Sie zu diesem\n"
-"Konfigurationsschritt zurück und wählen Sie ein passendes Layout aus der\n"
-"Liste.\n"
+"„DrakX“ sucht aufgrund Ihrer Sprachauswahl das für Sie passende\n"
+"Tastaturlayout aus. Möglicherweise haben Sie jedoch eine Tastatur, die\n"
+"nicht dieser Einstellung entspricht: wenn Sie beispielsweise in der Schweiz\n"
+"eine deutsche Tastatur verwenden wollen oder wenn Sie in Québec (dem\n"
+"französischsprachigen Teil Kanadas) eine französischsprachige Tastatur\n"
+"besitzen. Wählen Sie einfach ein passendes Layout aus der Liste.\n"
"\n"
"Sollten Sie eine andere als die zur gewählten Sprache gehörende Tastatur\n"
"verwenden wollen, wählen Sie die Schaltfläche „Mehr“. Sie erhalten dann\n"
@@ -1918,6 +1922,8 @@ msgstr ""
"Tastenkombination Sie zwischen dem von Ihnen gewählten und dem lateinischen\n"
"Layout umschalten wollen."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -1942,13 +1948,42 @@ msgid ""
"running version \"8.1\" or later. Performing an Upgrade on versions prior\n"
"to Mandrake Linux version \"8.1\" is not recommended."
msgstr ""
+"Dieser Schritt wird nur aufgerufen, wenn mindestens eine GNU/Linux\n"
+"Partition auf Ihren Festplatten gefunden wird.\n"
+"\n"
+"DrakX fragt Sie nun nach der gewünschten Installationsart. Sie haben die\n"
+"Wahl zwischen einer Aktualisierung einer bereits vorhandenen Mandrake\n"
+"Linux-Version oder einer kompletten Neuinstallation:\n"
+"\n"
+" * „Installieren“: Entfernt komplett ältere Versionen von Mandrake Linux,\n"
+"die noch installiert sind - um genau zu sein, können Sie je nach aktuellem\n"
+"Inhalt Ihrer Platte auch einige ältere Linux- oder anderweitige Partitionen\n"
+"unangetastet behalten.\n"
+"\n"
+" * „Aktualisieren“: Mit dieser Variante können Sie eine existierende\n"
+"Mandrake Linux Version aktualisieren. Die Partitionstabellen sowie die\n"
+"persönlichen Verzeichnisse der Anwender bleiben erhalten. Alle anderen\n"
+"Installationsschritte werden wie bei einer Installation ausgeführt.\n"
+"\n"
+"Aktualisierungen von Mandrake Linux „8.1“ oder neueren Systemen sollten\n"
+"problemlos funktionieren. Ältere Versionen von Mandrake Linux sollten Sie\n"
+"nicht zu aktualisieren versuchen."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
+"„Staat“: „Staat“: Kontrollieren Sie, ob die Auswahl des Staates, in dem Sie\n"
+"sich befinden korrekt ist. Falls nicht, betätigen Sie bitte die\n"
+"Schaltfläche „Konfigurieren“ und wählen Sie den richtigen. Ist Ihr Staat\n"
+"nicht in der Liste, die Sie gezeigt bekommen, können Sie über die\n"
+"Schaltfläche „Mehr“ eine vollständigere Liste erzwingen."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
@@ -1985,39 +2020,39 @@ msgid ""
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
-"Es wurde mehr als eine Windows Partition gefunden. Wählen Sie bitte, welche\n"
-"sie verleinern wollen, um Platz für Ihr neues Mandrake Linux zu schaffen.\n"
+"Es wurde mehr als eine Windows-Partition gefunden. Wählen Sie bitte, welche\n"
+"Sie verkleinern wollen, um Platz für Ihr neues Mandrake Linux zu schaffen.\n"
"\n"
-"Die Partitionen werden folgendermaßen aufgelistet: „Linux Name“, „Windows\n"
-"Name“, „Kapazität“.\n"
+"Die Partitionen werden folgendermaßen aufgelistet: „Linux-Name“,\n"
+"„Windows-Name“, „Kapazität“.\n"
"\n"
-"„Linux Name“ hat folgende Struktur: „Festplattentyp“, „Festplattennummer“,\n"
+"„Linux-Name“ hat folgende Struktur: „Festplattentyp“, „Festplattennummer“,\n"
"„Partitionsnummer“ (etwa „hda1“).\n"
"\n"
-"„Hard drive type“ ist „„hd““, falls Ihre Platte eine IDE/ATAPI Platte ist\n"
-"und „„sd““, wenn es sich um eine SCSI Platte handelt.\n"
+"„Festplattentyp“ ist „hd“, falls Ihre Platte eine IDE/ATAPI-Platte ist, und\n"
+"„sd“, wenn es sich um eine SCSI-Platte handelt.\n"
"\n"
"„Festplattennummer“ ist immer der Buchstabe hinter dem Festplattentyp. Bei\n"
-"IDE Platten bedeutet:\n"
+"IDE-Platten bedeutet:\n"
"\n"
-" * „„a““ bedeutet „Master Platte am primären IDE-Controller“;\n"
+" * „a“ bedeutet „Master-Platte am primären IDE-Controller“;\n"
"\n"
-" * „„b““ bedeutet „Slave Platte am primären IDE-Controller“;\n"
+" * „b“ bedeutet „Slave-Platte am primären IDE-Controller“;\n"
"\n"
-" * „„c““ bedeutet „Master Platte am sekundären IDE-Controller“;\n"
+" * „c“ bedeutet „Master-Platte am sekundären IDE-Controller“;\n"
"\n"
-" * „„d““ bedeutet „Slave Platte am sekundären IDE-Controller“;\n"
+" * „d“ bedeutet „Slave-Platte am sekundären IDE-Controller“;\n"
"\n"
-"Bei SCSI Platten steht „„a““ für „niedrigste SCSI ID“, „„b““ für\n"
-"„zweitniedrigste SCSI ID“, etc.\n"
+"Bei SCSI-Platten steht „a“ für „niedrigste SCSI-ID“, „b“ für\n"
+"„zweitniedrigste SCSI-ID“, etc.\n"
"\n"
-"„Windows Name“ ist der Buchstabe, den die Partition unter Windows erhalten\n"
-"würde (die erste Partition der ersten Platte heißt „„C:““)."
+"„Windows-Name“ ist der Buchstabe, den die Partition unter Windows erhalten\n"
+"würde (die erste Partition der ersten Platte heißt „C:“)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -2093,7 +2128,7 @@ msgid ""
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"Sie müssen nun entscheiden auf welche(n) Partition(en) Ihr neues Mandrake\n"
+"Sie müssen nun entscheiden, auf welche(n) Partition(en) Ihr neues Mandrake\n"
"Linux System installiert werden soll. Falls bereits Partitionen existieren\n"
"(etwa von einer früheren Installation von GNU/Linux oder durch das Erzeugen\n"
"mit einem anderen Partitionierungswerkzeug), können Sie diese verwenden.\n"
@@ -2109,10 +2144,10 @@ msgstr ""
" * „Alles löschen“: Betätigen dieser Schaltfläche löscht alle Partitionen\n"
"auf der markierten Festplatte.\n"
"\n"
-" * „Automatisches Erstellen“: Diese Schaltfläche erstellt automatisch ext3-\n"
-"und Swap-Partitionen im ungenutzten Bereich Ihrer Festplatte.\n"
+" * „Automatisches Erstellen“: Dieser Punkt aktiviert die automatische ext3-\n"
+"und Swap-Partitionen-Erstellung im ungenutzten Bereich Ihrer Festplatte.\n"
"\n"
-"„Mehr“: bietet weitere Möglichkeiten:\n"
+"„Mehr“: bietet Zugriff auf weitere Möglichkeiten:\n"
"\n"
" * „Partitionstabelle schreiben“: Falls Sie Ihre aktuelle Partitionstabelle\n"
"auf Diskette speichern wollen, falls Sie sie später wiederherstellen\n"
@@ -2147,20 +2182,24 @@ msgstr ""
" * „Fertig“: Nachdem Sie das Partitionieren Ihrer Festplatte beendet haben,\n"
"aktivieren Sie diese Schaltfläche, um Ihre Änderungen zu speichern.\n"
"\n"
-"Information: Sie können alle Einstellungen per Tastatur vornehmen. Sie\n"
-"können sich mittels [Tab] und den Pfeiltasten bewegen.\n"
+"Wenn Sie die Größe einer Partition festlegen wollen, können Sie die\n"
+"Feineinstellungen mit den Rechts- / Links-Pfeiltasten Ihrer Tastatur\n"
+"vornehmen.\n"
+"\n"
+"Information: Sie können alle Einstellungen per Tastatur vornehmen. Mittels\n"
+"[Tab] und den Hoch-/Runter Pfeiltasten bewegen.\n"
"\n"
"Wenn eine Partition ausgewählt ist, können Sie mittels:\n"
"\n"
-" * Ctrl- C - eine neue Partition erstellen (wenn Sie auf einer leeren\n"
+" * Ctrl-C - eine neue Partition erstellen (wenn Sie auf einer leeren\n"
"Partition sind)\n"
"\n"
-" * Ctrl- D - die Partition löschen\n"
+" * Ctrl-D - die Partition löschen\n"
"\n"
-" * Ctrl- M - dem Einhängpunkt festlegen.\n"
+" * Ctrl-M - dem Einhängpunkt festlegen.\n"
"\n"
"Um mehr Informationen über die verschiedenen Dateisystemtypen zu erhalten,\n"
-"lesen Sie bitte das Kapitel ext2FS in der „Reference Manual“.\n"
+"lesen Sie bitte das Kapitel ext2FS in der „Referenz“.\n"
"\n"
"Falls Sie die Installation auf einem PPC-Rechner vornehmen, sollten Sie\n"
"eine mindestens 1MB, große HFS Start-Partition für den\n"
@@ -2172,15 +2211,13 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"At this point, DrakX will allow you to choose the security level desired\n"
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -2189,9 +2226,7 @@ msgstr ""
"Maschine ist und je kritischer die auf ihr gesicherten Daten sind, desto\n"
"höher sollte die Sicherheitsebene sein. Andererseits geht die gewonnene\n"
"Sicherheit zulasten der Benutzerfreundlichkeit und Einfachheit, mit der\n"
-"gewisse Befehle/Abläufe durchgeführt werden können. Ausführlichere\n"
-"Erläuterungen zu den verschiedenen Sicherheitsebenen erhalten Sie im\n"
-"Kapitel MSEC des „Referenzhandbuchs“.\n"
+"gewisse Befehle/Abläufe durchgeführt werden können.\n"
"\n"
"Sollten Sie sich an dieser Stelle nicht sicher sein, so behalten Sie die\n"
"Standardeinstellung bei."
@@ -2199,19 +2234,19 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
"Es ist sehr wahrscheinlich, dass zum Zeitpunkt Ihrer Mandrake Linux\n"
"Installation bereits einige Pakete aktualisiert wurden, etwa da noch Fehler\n"
@@ -2233,7 +2268,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a file system).\n"
@@ -2270,17 +2305,18 @@ msgstr ""
"\n"
"Es sei angemerkt, dass nicht alle Partitionen neu formatiert werden müssen.\n"
"Sie sollten normalerweise nur die Partitionen neu formatieren, die\n"
-"Systemdaten, jedoch keine Privatdaten enthalten (etwa „/“, „/usr“ oder\n"
+"Systemdateien, jedoch keine Privatdaten enthalten (etwa „/“, „/usr“ oder\n"
"„/var“). Partitionen wie etwa „/home“ sollten Sie normalerweise nicht neu\n"
"formatieren.\n"
"\n"
-"Seien Sie sorgfältig bei der Auswahl der Partitionen. Nach dem formatieren\n"
+"Seien Sie sorgfältig bei der Auswahl der Partitionen. Nach dem Formatieren\n"
"sind alle zuvor darauf existierenden Daten unwiederbringlich verloren.\n"
"\n"
"Wenn Sie alle Einstellungen vorgenommen haben, betätigen Sie die\n"
-"Schaltfläche „OK“, um mit dem Formatieren dere Partitionen zu beginnen.\n"
+"Schaltfläche „Weiter ->“, um mit dem Formatieren der Partitionen zu\n"
+"beginnen.\n"
"\n"
-"Betätigen Sie „Abbruch“, wenn Sie eine andere Partition für Ihr neues\n"
+"Betätigen Sie „<- Zurück“, wenn Sie eine andere Partition für Ihr neues\n"
"Mandrake Linux vorgesehen haben.\n"
"\n"
"Betätigen Sie die Schaltfläche „Fortgeschritten“, falls Sie Partitionen auf\n"
@@ -2289,7 +2325,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"Next ->\" to reboot the system. The first thing\n"
@@ -2297,7 +2333,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2348,7 +2384,7 @@ msgstr ""
"identischer Rechner einrichten will. Weitere Informationen erhalten Sie\n"
"auch auf der Seite Auto install\n"
"\n"
-" * „Paketauswahl speichern“: (*) Sie speichern damit die Paketauswahl, die\n"
+" * „Paketauswahl speichern“:(*) Sie speichern damit die Paketauswahl, die\n"
"Sie vorher getroffen haben. Wenn Sie später eine erneute Installation\n"
"vornehmen wollen, legen Sie einfach die Diskette ins Laufwerk und starten\n"
"Sie die Installation mittels [F1] an der ersten Eingabeaufforderung. Geben\n"
@@ -2360,7 +2396,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"At this point, you need to decide where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -2391,7 +2427,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2416,13 +2452,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"Sie müssen nun entscheiden, wo auf Ihrer/n Festplatte(n) Ihr Mandrake Linux\n"
"System installiert werden soll. Sofern alles leer ist bzw. ein\n"
@@ -2437,21 +2473,8 @@ msgstr ""
"Handbuch die entsprechenden Passagen und lassen Sie sich Zeit mit der\n"
"Entscheidung.\n"
"\n"
-"Wenn Sie die Installation im Expertenmodus durchführen, werden Sie nun das\n"
-"Mandrake Linux Partitionier-Werkzeug kennen lernen: „DiskDrake“. Es erlaubt\n"
-"Ihnen Ihre Partitionen genau auf Ihre Bedürfnisse abzustimmen. Falls Sie\n"
-"keine Ahnung haben, wie Sie die Festplatte partitionieren sollen, wählen\n"
-"Sie die Schaltfläche „Assistent“ und überlassen diesem damit die gesamte\n"
-"Arbeit.\n"
-"\n"
-"Sollten Sie bereits Partitionen haben (etwa von einer alten GNU/Linux\n"
-"Installation oder solche, die mit einem anderen Partitionierungswerkzeug\n"
-"erstellt wurden), die Sie für die Installation von Mandrake Linux verwenden\n"
-"wollen, wählen Sie diese hier einfach aus.\n"
-"\n"
-"Falls noch keine Partitionen existieren, müssen Sie sie erstellen.\n"
-"Verwenden Sie dafür obigen Assistenten. Abhängig vom aktuellen Zustand\n"
-"Ihrer Platte(n) haben Sie verschiedene Alternativen:\n"
+"Abhängig vom aktuellen Zustand Ihrer Platte(n) haben Sie verschiedene\n"
+"Alternativen:\n"
"\n"
" * „Freien Platz verwenden“: Dies führt einfach dazu, dass Ihre leere(n)\n"
"Festplatte(n) automatisch partitioniert werden; Sie müssen sich also um\n"
@@ -2466,12 +2489,12 @@ msgstr ""
"\n"
" * „Freien Platz der Windows Partition verwenden“: Falls der gesamte\n"
"Plattenplatz aktuell für Microsoft Windows(TM) verschwendet ist, müssen Sie\n"
-"für Linux Platz schaffen. Um dies zu erreichen, können Sie entweder Ihre\n"
-"Microsoft Windows(TM) Partition(en) samt Daten löschen (siehe „Komplette\n"
-"Platte löschen“ oder „Experten-Modus“) oder Ihre Windows Partition\n"
-"verkleinern. Letzteres geht ohne Datenverlust. Sie sollten diese Variante\n"
-"wählen, falls Sie beide Betriebssysteme (Windows und Mandrake Linux)\n"
-"nebeneinander nutzen wollen.\n"
+"für GNU/Linux Platz schaffen. Um dies zu erreichen, können Sie entweder\n"
+"Ihre Microsoft Windows(TM) Partition(en) samt Daten löschen (siehe\n"
+"„Komplette Platte löschen“) oder Ihre Windows Partition verkleinern.\n"
+"Letzteres geht ohne Datenverlust. Sie sollten diese Variante wählen, falls\n"
+"Sie beide Betriebssysteme (Windows und Mandrake Linux) nebeneinander nutzen\n"
+"wollen.\n"
"\n"
" Bevor Sie sich für diese Variante entscheiden, sei hier noch einmal\n"
"betont, dass das bedeutet, Sie haben weniger Platz für Windows als\n"
@@ -2491,13 +2514,13 @@ msgstr ""
" !! Wenn Sie diese Variante wählen, werden alle Ihre Daten auf der Platte\n"
"gelöscht! !!\n"
"\n"
-" * „Expertenmodus“: Wenn Sie Ihre Festplatte selber von Hand partitionieren\n"
-"wollen, dann können Sie diese Option wählen. Seien Sie bitte sehr\n"
-"sorgfältig, wenn Sie diese Lösung wählen, da Sie zwar alle möglichen\n"
-"Einstellungen vornehmen, aber gleichzeitig auch sehr leicht Daten verlieren\n"
-"können. Diese Option ist nur geeignet, wenn Sie wissen, was Sie tun. Um zu\n"
-"erfahren, wie Sie DiskDrake verwenden können, lesen Sie bitte das Kapitel\n"
-"„Managing Your Partitions“ im „„User Guide““\n"
+" * „Benutzerdefinierte Partitionierung“: Wenn Sie Ihre Festplatte selber\n"
+"von Hand partitionieren wollen, dann können Sie diese Option wählen. Seien\n"
+"Sie bitte sehr sorgfältig, wenn Sie diese Lösung wählen, da Sie zwar alle\n"
+"möglichen Einstellungen vornehmen, aber gleichzeitig auch sehr leicht Daten\n"
+"verlieren können. Diese Option ist nur geeignet, wenn Sie wissen, was Sie\n"
+"tun. Um zu erfahren, wie Sie DiskDrake verwenden können, lesen Sie bitte\n"
+"das Kapitel „Ihre Partitionen verwalten“ im „Starter Handbuch“\n"
"\n"
"(*) In Deutschland ist es quasi unmöglich, Komplettrechner mit leeren\n"
"Festplatten zu erhalten, da laut Gesetz nur Rechner mit BS verkauft werden\n"
@@ -2510,62 +2533,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Die Mandrake Linux CD-ROM hat einen eingebauten Rettungsmo­dus. Sie\n"
-"erreichen ihn durch Starten von CD-ROM, und Drücken von »F1« bei\n"
-"Bootbeginn. Geben Sie dann »rescue« an der Eingabeaufforderung ein. Falls\n"
-"Ihr Rechner nicht von CD-ROM starten kann, sollten Sie diesen Punkt\n"
-"unbedingt aus zwei Gründen abarbeiten:\n"
-"\n"
-" * Wenn DrakX den Betriebssystemstarter installiert, schreibt es den\n"
-"Boot-Sektor (MBR) Ihrer primären Festplatte neu (außer Sie wollen einen\n"
-"anderen Betriebssystemstarter verwenden), damit Sie die verschiedenen,\n"
-"vorhandenen Betriebssysteme starten können (etwa Windows und GNU/Linux).\n"
-"Sollten Sie etwa Windows neu installieren, wird dieses - ohne Sie zu fragen\n"
-"- Ihren Boot-Sektor überschreiben. Somit werden Sie Ihr GNU/Linux nicht\n"
-"mehr starten können! Mit einer Startdiskette können Sie Ihr\n"
-"GNU/Linux-System dann trotzdem hochfahren und diese Änderungen rückgängig\n"
-"machen.\n"
-"\n"
-" * Sollten Ihnen andere schwerwiegende Systemfehler das Starten von\n"
-"GNU/Linux von der Festplatte unmöglich machen, ist diese Startdiskette so\n"
-"ziemlich die einzige Möglichkeit, auf Ihr System zuzugreifen. Zudem enthält\n"
-"sie eine Anzahl von Systemprogrammen, die Ihnen bei der Behebung von\n"
-"Systemfehlern (nach einem Stromausfall, einen unglücklichen Tippfehler in\n"
-"einem Passwort, etc.) helfen werden.\n"
-"\n"
-"Wenn Sie diesen Schritt anwählen, wird „DrakX“ Sie bitten, eine Diskette in\n"
-"ein Laufwerk zu legen. Die Diskette sollte natürlich leer sein (zumindest\n"
-"keine relevanten Daten enthalten). Sie muss nicht formatiert sein, „DrakX“\n"
-"kümmert sich um alles."
-
-#: ../../help.pm:1
#, c-format
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
@@ -2574,12 +2541,16 @@ msgid ""
"act as a server, or if you were not successful in getting the display\n"
"configured."
msgstr ""
-"Nun werden Sie gefragt, ob Sie in die grafische Ungebug starten wollen.\n"
-"Es sei angemerkt, dass Sie das auch gefragt werden, wenn die Grafikkarte \n"
-"vorher nicht getestet wurde. Sie sollten mit „Nein“ anworten, falls Ihr\n"
-"Rechner als Server dienen sollte oder der Test der Grafikumgebung zu\n"
-"Problemen führte."
+"Options\n"
+"\n"
+" Sie können direkt bei Betriebssystemstart die grafische Umgebung\n"
+"aktivieren. Durch betätigen der Schaltfläche „Nein“ wird in eine reine\n"
+"Textumgebung gestartet. Das ist sinnvoll für Server oder wenn Sie bei dem\n"
+"Versuch die grafische Umgebung zu konfigurieren erfolglos waren. Wählen Sie\n"
+"„Ja“, um die grafische Umgebung vorzufinden."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -2587,7 +2558,12 @@ msgid ""
"without 3D acceleration, you are then proposed to choose the server that\n"
"best suits your needs."
msgstr ""
+"Falls für Ihre Karte verschiedene Server zur Verfügung stehen, etwa mit und\n"
+"ohne 3D-Beschleunigung, werden Sie gebeten, den zu wählen, der Ihren\n"
+"Bedürfnissen am besten entspricht."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -2598,7 +2574,15 @@ msgid ""
"able to change that after installation though). A sample of the chosen\n"
"configuration is shown in the monitor."
msgstr ""
+"Auflösung\n"
+"\n"
+" Sie können hier Auflösung und Farbtiefe für Ihre Hardware wählen.\n"
+"Entscheiden Sie sich, welche Variante Ihren Wünschen am ehesten entspricht\n"
+"(Sie können diese Angaben natürlich nach der Installation noch ändern). Sie\n"
+"können sich einen Eindruck anhand des abgebildeten Monitors bilden."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -2608,7 +2592,14 @@ msgid ""
"monitor connected to your machine. If it is not the case, you can choose in\n"
"this list the monitor you actually own."
msgstr ""
+"Monitor\n"
+"\n"
+" DrakX erkennt normalerweise automatisch Ihren Monitor. Sollten dabei\n"
+"Probleme auftreten, können Sie in der hier aufgeführten Liste Ihr Modell\n"
+"auswählen."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -2664,7 +2655,67 @@ msgid ""
"\"No\" if your machine is to act as a server, or if you were not successful\n"
"in getting the display configured."
msgstr ""
+"X (das X Window System) ist das Herz der grafischen Benutzeroberfläche von\n"
+"GNU/Linux. Es bildet die Grundlage für die Vielzahl grafischer\n"
+"Benutzerumgebungen, die Mandrake Linux Ihnen anbietet (wie etwa KDE, GNOME,\n"
+"AfterStep oder WindowMaker). Auch hier wird „DrakX“ die Konfiguration\n"
+"soweit wie möglich selbstständig vollziehen.\n"
+"\n"
+"Sie erhalten eine Liste möglicher Parameter, mit deren Hilfe Sie die\n"
+"Grafikausgabe ändern können:\n"
+"\n"
+"Grafikkarte\n"
+"\n"
+" DrakX erkennt normalerweise automatisch Ihre Grafikkarte und richtet sie\n"
+"entsprechend ein. Sollten dabei Probleme auftreten, können Sie in der hier\n"
+"aufgeführten Liste Ihr Modell auswählen.\n"
+"\n"
+" Falls für Ihre Karte verschiedene Server zur Verfügung stehen, etwa mit\n"
+"und ohne 3D-Beschleunigung, werden Sie gebeten, den zu wählen, der Ihren\n"
+"Bedürfnissen am besten entspricht.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" DrakX erkennt normalerweise automatisch Ihren Monitor. Sollten dabei\n"
+"Probleme auftreten, können Sie in der hier aufgeführten Liste Ihr Modell\n"
+"auswählen.\n"
+"\n"
+"\n"
+"\n"
+"Auflösung\n"
+"\n"
+" Sie können hier Auflösung und Farbtiefe für Ihre Hardware wählen.\n"
+"Entscheiden Sie sich, welche Variante Ihren Wünschen am ehesten entspricht\n"
+"(Sie können diese Angaben natürlich nach der Installation noch ändern). Sie\n"
+"können sich einen Eindruck anhand des abgebildeten Monitors bilden.\n"
+"\n"
+"\n"
+"\n"
+"Test\n"
+"\n"
+" DrakX versucht eine Testbild mit denen von Ihnen gewünschten\n"
+"Einstellungen zu öffnen. Falls Sie während des Tests einen Dialog sehen, in\n"
+"dem Sie gefragt werden, ob sie die getroffenen Einstellungen behalten\n"
+"wollen, antworten Sie mit „Ja“, damit DrakX mit dem nächsten\n"
+"Installationsschritt fortfährt. Sollten Sie die Nachricht nicht sehen,\n"
+"bedeutet das, dass eine oder mehrere getroffene Einstellungen nicht korrekt\n"
+"sind. Nach 12 Sekunden sollten Sie wieder das Installationsmenü sehen. Sie\n"
+"können nun die Einstellungen ändern, bis Sie das Testbild sehen.\n"
+"\n"
+"\n"
+"\n"
+"Options\n"
+"\n"
+" Sie können direkt bei Betriebssystemstart die grafische Umgebung\n"
+"aktivieren. Durch betätigen der Schaltfläche „Nein“ wird in eine reine\n"
+"Textumgebung gestartet. Das ist sinnvoll für Server oder wenn Sie bei dem\n"
+"Versuch die grafische Umgebung zu konfigurieren erfolglos waren. Wählen Sie\n"
+"„Ja“, um die grafische Umgebung vorzufinden."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -2678,11 +2729,20 @@ msgid ""
"without 3D acceleration, you are then proposed to choose the server that\n"
"best suits your needs."
msgstr ""
+"Grafikkarte\n"
+"\n"
+" DrakX erkennt normalerweise automatisch Ihre Grafikkarte und richtet sie\n"
+"entsprechend ein. Sollten dabei Probleme auftreten, können Sie in der hier\n"
+"aufgeführten Liste Ihr Modell auswählen.\n"
+"\n"
+" Falls für Ihre Karte verschiedene Server zur Verfügung stehen, etwa mit\n"
+"und ohne 3D-Beschleunigung, werden Sie gebeten, den zu wählen, der Ihren\n"
+"Bedürfnissen am besten entspricht."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
"local time according to the time zone you selected. If the clock on your\n"
@@ -2702,7 +2762,7 @@ msgstr ""
"\n"
"Da Microsoft Windows(TM) nicht sinnvoll mit GMT umgehen kann, müssen Sie\n"
"„Nein“ wählen, falls Sie auch ein Betriebssystem aus dem Hause Microsoft\n"
-"auf Ihrem Rechner „beherbergen“\n"
+"auf Ihrem Rechner „beherbergen“.\n"
"\n"
"Die Verwendung der Option „Automatische Zeit-Synchronisation“ reguliert\n"
"Ihre Uhr, indem sie Verbindung mit einem Zeitserver im Internet aufnimmt.\n"
@@ -2712,9 +2772,10 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2749,19 +2810,25 @@ msgstr ""
"im Serverbetrieb laufen. Also, nur die Dienste einschalten, die Sie\n"
"wirklich brauchen! !!"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
msgstr ""
+"„Drucker“: Durch Anwahl der Schaltfläche „Konfigurieren“ startet den\n"
+"Druckerassistenten. Weitere Informationen zu diesem Assistenten erhalten\n"
+"Sie im Drucker-Kapitel des „Starter Handbuch“. Das dort vorgestellte\n"
+"Programm entspricht dem während der Installation angebotenen."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"You will now set up your Internet/network connection. If you wish to\n"
"connect your computer to the Internet or to a local network, click \"Next\n"
@@ -2783,32 +2850,31 @@ msgid ""
"installed and use the program described there to configure your connection."
msgstr ""
"Wenn Sie Ihren Computer mit dem Internet oder mit einem lokalen Netzwerk\n"
-"verbinden wollen, dann wählen Sie bitte die entsprechende Option aus. Bitte\n"
+"verbinden wollen, dann betätigen Sie die Schaltfläche „Weiter ->“. Bitte\n"
"schalten Sie jedoch zuvor, falls nötig, die dafür benötigten Geräte ein,\n"
-"damit „DrakX“ sie automatisch erkennen kann.\n"
+"damit „DrakX“ sie automatisch erkennen kann. Sollte die automatische\n"
+"Erkennung nicht korrekt erfolgen, können Sie es erneut versuchen, nachdem\n"
+"Sie die Markierung der Option „Autoerkennung benutzen“ entfernt haben.\n"
+"Betätigung der Schaltfläche „Abbruch“ bringt Sie weiter zum nächsten\n"
+"Installationsschritt ohne Ihr Netzwerk einzurichten.\n"
"\n"
-"Mandrake Linux bietet Ihnen die Möglichkeit, Ihre Internet-Verbindung\n"
-"bereits während der Installation zu konfigurieren. Zur Auswahl stehen\n"
-"folgende Verbindungsarten: Herkömmliches Modem, ISDN Modem, ADSL\n"
-"Verbindung, Kabelmodem oder eine einfache LAN Verbindung (Ethernet).\n"
+"Zur Auswahl stehen folgende Verbindungsarten: Herkömmliches Modem, ISDN\n"
+"Modem, ADSL Verbindung, Kabelmodem oder eine einfache LAN Verbindung\n"
+"(Ethernet).\n"
"\n"
"Wir wollen hier nicht weiter ins Detail gehen, nur soviel: Stellen Sie\n"
"sicher, dass Sie die nötigen Parameter von Ihrem Internet Provider oder\n"
"Systemadministrator erhalten haben.\n"
"\n"
"Weitere Einzelheiten, die hier bereits hilfreich sein können, erhalten Sie\n"
-"im Kapitel DrakNet. Falls Sie unsicher sind, warten Sie ab, bis die\n"
+"im „Starter Handbuch“. Falls Sie unsicher sind, warten Sie ab, bis die\n"
"Installation beendet ist und verwenden Sie danach das beschriebene\n"
-"Programm, um Ihre Verbindung einzurichten.\n"
-"\n"
-"Wenn Sie Ihr Netzwerk erst nach Abschluss der Installation einrichten\n"
-"wollen oder sobald Sie die Konfiguration beendet haben, klicken Sie auf\n"
-"„Abbrechen“."
+"Programm, um Ihre Verbindung einzurichten."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"If you told the installer that you wanted to individually select packages,\n"
"it will present a tree containing all packages classified by groups and\n"
@@ -2884,7 +2950,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"It is now time to specify which programs you wish to install on your\n"
"system. There are thousands of packages available for Mandrake Linux, and\n"
@@ -2941,11 +3007,6 @@ msgstr ""
"installieren wollen. Es gibt tausende von Paketen für Mandrake Linux, und\n"
"Sie müssen sie nicht alle auswendig kennen.\n"
"\n"
-"Wenn Sie eine klassische CD-ROM-Installation vornehmen, werden Sie zuerst\n"
-"nach den Ihnen zur Verfügung stehenden CDs gefragt (nur im Expertenmodus).\n"
-"Markieren Sie die Zeilen anhand der CDs die Sie vorliegen haben und klicken\n"
-"Sie auf die Schaltfläche „OK“.\n"
-"\n"
"Die Pakete sind nach ihrer Verwendung in Gruppen eingeteilt. Diese Gruppen\n"
"wiederum enthalten vier Abschnitte:\n"
"\n"
@@ -2991,7 +3052,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
"knows if a selected package is located on another CD-ROM so it will eject\n"
@@ -3005,7 +3066,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Here are Listed the existing Linux partitions detected on your hard drive.\n"
"You can keep the choices made by the wizard, since they are good for most\n"
@@ -3041,9 +3102,9 @@ msgstr ""
"Partitionen. Sie können die Auswahl des Assistenten beibehalten - sie\n"
"sollte normalerweise Ihren Bedürfnissen entsprechen. Falls Sie es vorziehen\n"
"die Einhängpunkte selbst zu definieren, denken Sie bitte daran, dass Sie\n"
-"zumindest eine Verzeichnisbaumwurzel („/“ benötigen. Wählen Sie die\n"
+"zumindest eine Verzeichnisbaumwurzel („/“) benötigen. Wählen Sie die\n"
"Partitionen nicht zu klein, da Sie sonst nicht genügend Programme\n"
-"installieren können. Wenn Sie Ihre peröchen Daten auf einer eigenen\n"
+"installieren können. Wenn Sie Ihre persönlichen Daten auf einer eigenen\n"
"Partition halten wollen, legen Sie sich eine Partition namens „/home“ an.\n"
"\n"
"Die Partitionen werden folgendermaßen aufgelistet: „Name“, „Kapazität“.\n"
@@ -3051,27 +3112,27 @@ msgstr ""
"„Name“ hat folgende Struktur: „Festplattentyp“, „Festplattennummer“,\n"
"„Partitionsnummer“ (etwa „hda1“).\n"
"\n"
-"„Hard drive type“ ist „„hd““, falls Ihre Platte eine IDE/ATAPI Platte ist\n"
-"und „„sd““, wenn es sich um eine SCSI Platte handelt.\n"
+"„Festplattentyp“ ist „hd“, falls Ihre Platte eine IDE/ATAPI-Platte ist, und\n"
+"„sd“, wenn es sich um eine SCSI-Platte handelt.\n"
"\n"
"„Festplattennummer“ ist immer der Buchstabe hinter dem Festplattentyp. Bei\n"
-"IDE Platten bedeutet:\n"
+"IDE-Platten bedeutet:\n"
"\n"
-" * „„a““ bedeutet „Master Platte am primären IDE-Controller“;\n"
+" * „a“ bedeutet „Master-Platte am primären IDE-Controller“;\n"
"\n"
-" * „„b““ bedeutet „Slave Platte am primären IDE-Controller“;\n"
+" * „b“ bedeutet „Slave-Platte am primären IDE-Controller“;\n"
"\n"
-" * „„c““ bedeutet „Master Platte am sekundären IDE-Controller“;\n"
+" * „c“ bedeutet „Master-Platte am sekundären IDE-Controller“;\n"
"\n"
-" * „„d““ bedeutet „Slave Platte am sekundären IDE-Controller“;\n"
+" * „d“ bedeutet „Slave-Platte am sekundären IDE-Controller“;\n"
"\n"
-"Bei SCSI Platten steht „„a““ für „niedrigste SCSI ID“, „„b““ für\n"
-"„zweitniedrigste SCSI ID“, etc."
+"Bei SCSI-Platten steht „a“ für „niedrigste SCSI-ID“, „b“ für\n"
+"„zweitniedrigste SCSI-ID“, etc."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"GNU/Linux is a multi-user system, meaning each user can have their own\n"
"preferences, their own files and so on. You can read the ``Starter Guide''\n"
@@ -3115,7 +3176,7 @@ msgstr ""
"Benutzerkennzeichen hat eigene Präferenzen (Grafische Umgebung,\n"
"Programmeinstellungen, etc.), sowie ein eigenes Heim-Verzeichnis, in dem\n"
"diese Einstellungen gespeichert werden. Falls Sie mehr wissen wollen,\n"
-"können Sie im „Benutzerhandbuch“ nachsehen. Sie können mehrere normale\n"
+"können Sie im „Starter Handbuch“ nachsehen. Sie können mehrere normale\n"
"Benutzerkonten einrichten, im Gegensatz zum „privilegierten“ Kennzeichen:\n"
"»root«, das einmalig ist. Im Gegensatz zu »root« können diese normalen\n"
"Benutzer jedoch nur ihre eigenen Dateien und Konfigurationen verändern. Sie\n"
@@ -3138,27 +3199,36 @@ msgstr ""
"\n"
"Klicken Sie auf „Benutzer akzeptieren“, um das Kennzeichen zu erstellen.\n"
"Anschließend können Sie direkt weitere Benutzer hinzufügen. Wenn Sie alle\n"
-"Kennzeichen erstellt haben, klicken Sie auf „Fertig“.\n"
+"Kennzeichen erstellt haben, klicken Sie auf „Weiter ->“.\n"
"\n"
"Durch Anwahl der Schaltfläche „Fortgeschritten“ haben Sie auch die\n"
"Möglichkeit, die Standard-Shell dieses Benutzers ändern (normalerweise ist\n"
-"dies die „Bash“)."
+"dies die „Bash“).\n"
+"\n"
+"Wenn Sie alle Kennzeichen erstellt haben, die Sie nutzen wollen, wird Ihnen\n"
+"die Möglichkeit eröffnet, ein Kennzeichen automatisch beim\n"
+"Betriebssystemstart angemeldet zu bekommen. Falls Sie sich für diese\n"
+"Funktionalität entscheiden (und wenig Wert auf Sicherheit legen) wählen Sie\n"
+"einfach die gewünschte Arbeitsumgebung und das Kennzeichen aus. Bestätigen\n"
+"Sie Ihre Auswahl durch betätigen der Schaltfläche „Weiter ->“. Andernfalls\n"
+"löschen Sie einfach die Markierung des Punktes „Möchten Sie diese\n"
+"Möglichkeit nutzen?“."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Before continuing, you should carefully read the terms of the license. It\n"
"covers the entire Mandrake Linux distribution. If you do agree with all the\n"
"terms in it, check the \"Accept\" box. If not, simply turn off your\n"
"computer."
msgstr ""
-"Lesen Sie bitte aufmerksam die die Lizenz, bevor Sie fortfahren. Sie\n"
-"umfasst die gesamte Mandrake Linux Distribution. Sollten Sie nicht in allen\n"
-"Punkten zustimmen, betätigen Sie bitte die Schaltfläche „Zurückweisen“, um\n"
-"die Installation abzubrechen. Um mit der Installation fortzufahren\n"
-"betätigen Sie die Schaltfläche „Akzeptieren“."
+"Lesen Sie bitte aufmerksam die Lizenz, bevor Sie fortfahren. Sie umfasst\n"
+"die gesamte Mandrake Linux Distribution. Sollten Sie nicht in allen Punkten\n"
+"zustimmen, betätigen Sie bitte die Schaltfläche „Zurückweisen“, um die\n"
+"Installation abzubrechen. Um mit der Installation fortzufahren, betätigen\n"
+"Sie die Schaltfläche „Akzeptieren“."
#: ../../install2.pm:1
#, c-format
@@ -4507,6 +4577,12 @@ msgstr "Dienste"
msgid "System"
msgstr "System"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "%s (Port %s)"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
@@ -4958,6 +5034,11 @@ msgid "Please choose your type of mouse."
msgstr "Bitte wählen Sie Ihren Maustyp."
#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Schlüssel"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr "Aktualisiere %s"
@@ -9846,11 +9927,6 @@ msgstr "Netzwerk konfigurieren"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "Keine Netzwerkkarte gefunden"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
@@ -11162,19 +11238,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"Die folgenden Drucker sind bereits eingerichtet. Führen Sie einen "
-"Doppelklick auf einem aus, um ihn zu ändern, als Standarddrucker zu "
-"verwenden, Informtionen über ihn zu erhalten oder einen entfernten CUPS-"
-"Drucker für Star Office/OpenOffice.org/GIMP zugänglich zu machen."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "Drucksystem: "
@@ -11817,6 +11880,11 @@ msgid "Option %s must be an integer number!"
msgstr "Der Parameter %s muss eine Zahl sein!"
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Auswahl des Druckertyps"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -13693,8 +13761,8 @@ msgstr "Cracker-Spielplatz"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
"Der Erfolg von MandrakeSoft basiert auf dem Prinzip freier Software. Ihr "
"neues Betriebssystem ist das Ergebnis einer weltweiten Zusammenarbeit der "
@@ -13702,7 +13770,7 @@ msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "Willkommen in der Open Source Welt."
#: ../../share/advertising/01-thanks.pl:1
@@ -13713,225 +13781,167 @@ msgstr "Danke, dass Sie sich für Mandrake Linux 9.1 entschieden haben"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
"Beteiligen Sie sich an den Diskussionsforen, die Sie auf unseren „Community“-"
"Seiten finden, um Ihre wissen mit Anderen zu teilen."
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr "Wollen Sie mehr über die Open Source Gemeinde wissen?"
-
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Betreten Sie die Welt der Freien Software"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
-"Mandrake Linux 9.1 stellt Ihnen die beste Softwareauswahl bereit, um auf "
-"alles, was das Internet bietet, zugreifen zu können. Surfen Sie im Web mit "
-"Mozilla oder Konqueror, bearbeiten Sie E-Mails und verwalten Sie persönliche "
-"Informationen mit Evolution, KMail oder zahlreichen anderen Programmen."
+"Wollen Sie mehr über die Open Source Gemeinde wissen? Betreten Sie die Welt "
+"der Freien Software!"
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
-msgstr "Nutzen Sie das Internet nach Ihren Wünschen"
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
"Mandrake Linux 9.1 reizt Ihren Multimediarechner voll aus! Verwenden Sie die "
"neuste Software, um Audiodateien abzuspielen, Ihre Fotos und Bilder zu "
"bearbeiten sowie Videos abzuspielen ..."
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr "Gehen Sie bis an die Grenzen Ihrer multimedialen Möglichkeiten"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr "Entdecken Sie die atuellsten Grafik- und Multimedia-Programme!"
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"Mandrake Linux 9.1 bietet die besten Open Source Spiele der Bereiche: "
-"Arcade, Karten, Action, Strategie, ..."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "Spiele"
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-"Das Mandrake Linux Kontrollzentrum ist der zentrale Ort, an dem Sie Ihr "
-"System nach Ihren Wünschen anpassen können."
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Mandrake Kontrollzentrum"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Mandrake Terminal Server Konfiguration"
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
"Mandrake Linux 9.1 bietet 11 Arbeitsumgebungen, die Sie nach Ihren Wünschen "
"gestalten können, darunter: KDE 3, Gnome 2 und WindowMaker"
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "Arbeitsumgebungen"
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-"Mandrake Linux 9.1 ist die ultimative Entwicklungsplattform. Nutzen Sie die "
-"volle Power des GNU C Compilers sowie der besten Open Source "
-"Entwicklungsumgebungen."
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "Mandrake Linux 9.1 ist die ultimative Entwicklungsplattform."
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr "Softwareentwicklung leicht gemacht"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"Verwandeln Sie Ihren Rechner mit ein paar Mausklicks in einen "
"leistungsfähigen Server: Web, E-Mail, Firewall, Router, Datei- und "
"Druckserver, ..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr "Verwandeln Sie Ihren Rechner in einen zuverlässigen Server."
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr "Sie erhalten das Produkt in unserem WebShop: MadrakeStore."
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-"Dieses Firewall-Produkt enthält die Netzwerkkomponenten, um all Ihren "
-"Sicherheitsansprüchen gerecht werden zu können."
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr ""
-"Die MandrakeSecurity Palette bietet unter Anderem die „Multi Network "
-"Firewall“ (M.N.F.)"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr "Optimieren Sie Ihre Sicherheit"
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"Unser komplettes Angebot an Linux-Lösungen, sowie Sonderangebote und "
"Fanartikel sind in unseremm e-Store erhältlich:"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr "Der offizille MandrakeSoft Laden"
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
+#: ../../share/advertising/09-mdksecure.pl:1
+#, fuzzy, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"MandrakeSoft arbeitet mit einer Reihe von Firmen zusammen, die "
"professionelle Linux-Lösungen anbieten, die Mandrake-kompatibel sind. Sie "
"finden eine Liste im MandrakeStore."
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr "Strategische Partner"
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-"Ob Sie sich online fortbilden wollen, oder mit Hilfe unseres Netzes an "
-"Trainingspartnern, der Linux-Campus Katalog bereitet Sie auf die anerkannte "
-"LPI zerifizierung vor."
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr "Zertifizueren Sie sich selbst in Sachen Linux"
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "Optimieren Sie Ihre Sicherheit"
+
+#: ../../share/advertising/11-mnf.pl:1
+#, c-format
+msgid "This product is available on the MandrakeStore Web site."
+msgstr "Sie erhalten das Produkt in unserem WebShop: MadrakeStore."
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-"Das Trainingsprogramm wurde für die Bedürfnisse sowohl von Endanwendern, als "
-"auch von Experten (Netzwerk- und Systemadministratoren)"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr "Entdecken Sie MandrakeSofts Training-Katalog: Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
+msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -13939,19 +13949,19 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr "Werden Sie ein „MandrakeExpert“"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
@@ -13960,34 +13970,18 @@ msgstr ""
"Alle Vorfälle werden werden von einem einzelnen qualifizierten MandrakeSoft "
"Experten bearbeitet."
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
"Eine Online-Plattform, die speziell auf die Bedürfnisse von Firmenkunden "
"zugeschnitten wurde."
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert Corporate"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr "Entdecken Sie den MandrakeClub und den Mandrake Corporate Club"
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -16435,6 +16429,11 @@ msgstr "First Time Assistent"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr "Mandrake Kontrollzentrum"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr "Mandrake BugReport Werkzeug"
@@ -17376,6 +17375,22 @@ msgid "Interface %s (using module %s)"
msgstr "Schnittstelle %s (verwendet Modul %s)"
#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "xinetd"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -17728,7 +17743,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -17897,6 +17912,11 @@ msgid "choose image file"
msgstr "Abbild-Datei auswählen"
#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "Abbild-Datei auswählen"
+
+#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
msgstr "Bootsplash-Bild konfigurieren"
@@ -18342,11 +18362,21 @@ msgid "network printer port"
msgstr "Port des Netzwerkdruckers"
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the name of the CPU"
+msgstr "Herstellername des Geräts"
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Name"
msgstr "Name"
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "die Nummer des Prozessors"
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Number of buttons"
msgstr "Anzahl Tasten"
@@ -18510,7 +18540,7 @@ msgstr "Dieses Feld beschreibt das Gerät"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -19525,6 +19555,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr "Programme für Mail, News, WWW, FTP und Chat"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Spiele"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimedia / Grafik"
@@ -19580,6 +19614,386 @@ msgstr "Finanzverwaltung"
msgid "Programs to manage your finances, such as gnucash"
msgstr "Finanzverwaltungsprogramme, etwa Gnucash"
+#~ msgid "no network card found"
+#~ msgstr "Keine Netzwerkkarte gefunden"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "and view animations with Mozilla and Konqueror, or read your mail and "
+#~ "handle your personal information with Evolution and Kmail"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 stellt Ihnen die beste Softwareauswahl bereit, um auf "
+#~ "alles, was das Internet bietet, zugreifen zu können. Surfen Sie im Web "
+#~ "mit Mozilla oder Konqueror, bearbeiten Sie E-Mails und verwalten Sie "
+#~ "persönliche Informationen mit Evolution, KMail oder zahlreichen anderen "
+#~ "Programmen."
+
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Nutzen Sie das Internet nach Ihren Wünschen"
+
+#~ msgid "Push multimedia to its limits!"
+#~ msgstr "Gehen Sie bis an die Grenzen Ihrer multimedialen Möglichkeiten"
+
+#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
+#~ msgstr "Entdecken Sie die atuellsten Grafik- und Multimedia-Programme!"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 bietet die besten Open Source Spiele der Bereiche: "
+#~ "Arcade, Karten, Action, Strategie, ..."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ "Das Mandrake Linux Kontrollzentrum ist der zentrale Ort, an dem Sie Ihr "
+#~ "System nach Ihren Wünschen anpassen können."
+
+#~ msgid "User interfaces"
+#~ msgstr "Arbeitsumgebungen"
+
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 ist die ultimative Entwicklungsplattform. Nutzen Sie "
+#~ "die volle Power des GNU C Compilers sowie der besten Open Source "
+#~ "Entwicklungsumgebungen."
+
+#~ msgid "Development simplified"
+#~ msgstr "Softwareentwicklung leicht gemacht"
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ "Dieses Firewall-Produkt enthält die Netzwerkkomponenten, um all Ihren "
+#~ "Sicherheitsansprüchen gerecht werden zu können."
+
+#~ msgid ""
+#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
+#~ "N.F.)"
+#~ msgstr ""
+#~ "Die MandrakeSecurity Palette bietet unter Anderem die „Multi Network "
+#~ "Firewall“ (M.N.F.)"
+
+#~ msgid "Strategic partners"
+#~ msgstr "Strategische Partner"
+
+#~ msgid ""
+#~ "Whether you choose to teach yourself online or via our network of "
+#~ "training partners, the Linux-Campus catalogue prepares you for the "
+#~ "acknowledged LPI certification program (worldwide professional technical "
+#~ "certification)"
+#~ msgstr ""
+#~ "Ob Sie sich online fortbilden wollen, oder mit Hilfe unseres Netzes an "
+#~ "Trainingspartnern, der Linux-Campus Katalog bereitet Sie auf die "
+#~ "anerkannte LPI zerifizierung vor."
+
+#~ msgid "Certify yourself on Linux"
+#~ msgstr "Zertifizueren Sie sich selbst in Sachen Linux"
+
+#~ msgid ""
+#~ "The training program has been created to respond to the needs of both end "
+#~ "users and experts (Network and System administrators)"
+#~ msgstr ""
+#~ "Das Trainingsprogramm wurde für die Bedürfnisse sowohl von Endanwendern, "
+#~ "als auch von Experten (Netzwerk- und Systemadministratoren)"
+
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr "Entdecken Sie MandrakeSofts Training-Katalog: Linux-Campus"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr "Entdecken Sie den MandrakeClub und den Mandrake Corporate Club"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#, fuzzy
+#~ msgid ""
+#~ "As a review, DrakX will present a summary of various information it has\n"
+#~ "about your system. Depending on your installed hardware, you may have "
+#~ "some\n"
+#~ "or all of the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary.\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Country\": check the current country selection. If you are not in "
+#~ "this\n"
+#~ "country, click on the button and choose another one.\n"
+#~ "\n"
+#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+#~ "primary language you have chosen. But here, just as in your choice of a\n"
+#~ "keyboard, you may not be in a country to which the chosen language\n"
+#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
+#~ "configure the clock for the correct timezone.\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation.\n"
+#~ "\n"
+#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+#~ "click that button. This should be reserved to advanced users.\n"
+#~ "\n"
+#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+#~ "interface in \"800x600\" resolution. If that does not suits you, click "
+#~ "on\n"
+#~ "the button to reconfigure your graphical interface.\n"
+#~ "\n"
+#~ " * \"Network\": If you want to configure your Internet or local network\n"
+#~ "access now, you can by clicking on this button.\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. If you notice the sound card displayed is not the one "
+#~ "that\n"
+#~ "is actually present on your system, you can click on the button and "
+#~ "choose\n"
+#~ "another driver.\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. If you have a TV card and it is not detected, click on the button "
+#~ "to\n"
+#~ "try to configure it manually.\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with the card."
+#~ msgstr ""
+#~ "Hier bekommen Sie verschiedene Parameter Ihres Systems angezeigt. Je "
+#~ "nach\n"
+#~ "vorhandener Hardware sehen Sie hier (oder eben nicht) folgende Einträge:\n"
+#~ "\n"
+#~ " * „Maus“: Kontrollieren Sie die Mauskonfiguration und drücken Sie den "
+#~ "Knopf,\n"
+#~ "um sie, wenn nötig, zu ändern;\n"
+#~ "\n"
+#~ " * „Tastatur“: Kontrollieren Sie die aktuelle Tastaturkonfiguration "
+#~ "drücken Sie\n"
+#~ "den Knopf, um sie, wenn nötig, zu ändern;\n"
+#~ "\n"
+#~ " * „Zeitzone“: DrakX versucht die Zeitzone anhand der gewählten Sprache\n"
+#~ "zu erraten. Aber hier, genau wie bei der Tastatur, ist es jedoch möglich, "
+#~ "dass\n"
+#~ "Sie sich nicht in dem Land befinden, zu dem die vorgegebene Sprache "
+#~ "erahnen\n"
+#~ "gehört. In diesem Fall sollten Sie den Knopf drücken, um die Uhr "
+#~ "entsprechend\n"
+#~ "Ihrer lokalen Zeitzone zu setzen.\n"
+#~ "\n"
+#~ " * „Drucker“: Durch Anwahl der Schaltfläche „Kein Drucker“ starten Sie "
+#~ "den\n"
+#~ "Druckerassistenten. Für mehr Informationen, wie man einen neuen Drucker\n"
+#~ "einrichtet, schlagen Sie im dazugehörige Kapitel aus dem „Starter Guide“\n"
+#~ "nach. Die dort präsentierte Schnittstelle ähnelt der, die während der "
+#~ "Installation\n"
+#~ "verwendet wird; \n"
+#~ " * „Soundkarte“: Falls eine Soundkarte in Ihrem Rechner gefunden wurde,\n"
+#~ "wird sie hier angezeigt.\n"
+#~ "\n"
+#~ " * „TV-Karte“: Falls eine TV-Karte in Ihrem Rechner gefunden wurde, wird\n"
+#~ "sie hier angezeigt.\n"
+#~ "\n"
+#~ " * „ISDN Karte“: Falls eine ISDN Karte in Ihrem Rechner gefunden wurde,\n"
+#~ "wird sie hier angezeigt. Durch Anwahl der Schaltfläche können Sie die\n"
+#~ "Parameter ändern."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#, fuzzy
+#~ msgid ""
+#~ "LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
+#~ "what it finds there:\n"
+#~ "\n"
+#~ " * if a Windows boot sector is found, it will replace it with a grub/"
+#~ "LILO\n"
+#~ "boot sector. This way you will be able to load either GNU/Linux or "
+#~ "another\n"
+#~ "OS.\n"
+#~ "\n"
+#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
+#~ "one.\n"
+#~ "\n"
+#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
+#~ "bootloader.\n"
+#~ "\n"
+#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
+#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
+#~ "disk\n"
+#~ "(\"On Floppy\").\n"
+#~ "\n"
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Die Mandrake Linux CD-ROM hat einen eingebauten Rettungsmo­dus. Sie\n"
+#~ "erreichen ihn durch Starten von CD-ROM, und Drücken von »F1« bei\n"
+#~ "Bootbeginn. Geben Sie dann »rescue« an der Eingabeaufforderung ein. "
+#~ "Falls\n"
+#~ "Ihr Rechner nicht von CD-ROM starten kann, sollten Sie diesen Punkt\n"
+#~ "unbedingt aus zwei Gründen abarbeiten:\n"
+#~ "\n"
+#~ " * Wenn DrakX den Betriebssystemstarter installiert, schreibt es den\n"
+#~ "Boot-Sektor (MBR) Ihrer primären Festplatte neu (außer Sie wollen einen\n"
+#~ "anderen Betriebssystemstarter verwenden), damit Sie die verschiedenen,\n"
+#~ "vorhandenen Betriebssysteme starten können (etwa Windows und GNU/Linux).\n"
+#~ "Sollten Sie etwa Windows neu installieren, wird dieses - ohne Sie zu "
+#~ "fragen\n"
+#~ "- Ihren Boot-Sektor überschreiben. Somit werden Sie Ihr GNU/Linux nicht\n"
+#~ "mehr starten können! Mit einer Startdiskette können Sie Ihr\n"
+#~ "GNU/Linux-System dann trotzdem hochfahren und diese Änderungen "
+#~ "rückgängig\n"
+#~ "machen.\n"
+#~ "\n"
+#~ " * Sollten Ihnen andere schwerwiegende Systemfehler das Starten von\n"
+#~ "GNU/Linux von der Festplatte unmöglich machen, ist diese Startdiskette "
+#~ "so\n"
+#~ "ziemlich die einzige Möglichkeit, auf Ihr System zuzugreifen. Zudem "
+#~ "enthält\n"
+#~ "sie eine Anzahl von Systemprogrammen, die Ihnen bei der Behebung von\n"
+#~ "Systemfehlern (nach einem Stromausfall, einen unglücklichen Tippfehler "
+#~ "in\n"
+#~ "einem Passwort, etc.) helfen werden.\n"
+#~ "\n"
+#~ "Wenn Sie diesen Schritt anwählen, wird „DrakX“ Sie bitten, eine Diskette "
+#~ "in\n"
+#~ "ein Laufwerk zu legen. Die Diskette sollte natürlich leer sein "
+#~ "(zumindest\n"
+#~ "keine relevanten Daten enthalten). Sie muss nicht formatiert sein, "
+#~ "„DrakX“\n"
+#~ "kümmert sich um alles."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/de/drakx-chapter.xml
+#, fuzzy
+#~ msgid ""
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Die Mandrake Linux CD-ROM hat einen eingebauten Rettungsmo­dus. Sie\n"
+#~ "erreichen ihn durch Starten von CD-ROM, und Drücken von »F1« bei\n"
+#~ "Bootbeginn. Geben Sie dann »rescue« an der Eingabeaufforderung ein. "
+#~ "Falls\n"
+#~ "Ihr Rechner nicht von CD-ROM starten kann, sollten Sie diesen Punkt\n"
+#~ "unbedingt aus zwei Gründen abarbeiten:\n"
+#~ "\n"
+#~ " * Wenn DrakX den Betriebssystemstarter installiert, schreibt es den\n"
+#~ "Boot-Sektor (MBR) Ihrer primären Festplatte neu (außer Sie wollen einen\n"
+#~ "anderen Betriebssystemstarter verwenden), damit Sie die verschiedenen,\n"
+#~ "vorhandenen Betriebssysteme starten können (etwa Windows und GNU/Linux).\n"
+#~ "Sollten Sie etwa Windows neu installieren, wird dieses - ohne Sie zu "
+#~ "fragen\n"
+#~ "- Ihren Boot-Sektor überschreiben. Somit werden Sie Ihr GNU/Linux nicht\n"
+#~ "mehr starten können! Mit einer Startdiskette können Sie Ihr\n"
+#~ "GNU/Linux-System dann trotzdem hochfahren und diese Änderungen "
+#~ "rückgängig\n"
+#~ "machen.\n"
+#~ "\n"
+#~ " * Sollten Ihnen andere schwerwiegende Systemfehler das Starten von\n"
+#~ "GNU/Linux von der Festplatte unmöglich machen, ist diese Startdiskette "
+#~ "so\n"
+#~ "ziemlich die einzige Möglichkeit, auf Ihr System zuzugreifen. Zudem "
+#~ "enthält\n"
+#~ "sie eine Anzahl von Systemprogrammen, die Ihnen bei der Behebung von\n"
+#~ "Systemfehlern (nach einem Stromausfall, einen unglücklichen Tippfehler "
+#~ "in\n"
+#~ "einem Passwort, etc.) helfen werden.\n"
+#~ "\n"
+#~ "Wenn Sie diesen Schritt anwählen, wird „DrakX“ Sie bitten, eine Diskette "
+#~ "in\n"
+#~ "ein Laufwerk zu legen. Die Diskette sollte natürlich leer sein "
+#~ "(zumindest\n"
+#~ "keine relevanten Daten enthalten). Sie muss nicht formatiert sein, "
+#~ "„DrakX“\n"
+#~ "kümmert sich um alles."
+
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "Die folgenden Drucker sind bereits eingerichtet. Führen Sie einen "
+#~ "Doppelklick auf einem aus, um ihn zu ändern, als Standarddrucker zu "
+#~ "verwenden, Informtionen über ihn zu erhalten oder einen entfernten CUPS-"
+#~ "Drucker für Star Office/OpenOffice.org/GIMP zugänglich zu machen."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index 4ad60d097..11961fff3 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\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2003-02-23 23:28+0000\n"
"Last-Translator: (Nick Niktaris) <niktarin@yahoo.com>\n"
"Language-Team: Greek <nls@tux.hellug.gr>\n"
@@ -1106,101 +1106,70 @@ msgstr ""
" !"
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
-msgstr ""
-"\n"
-"\n"
-"\n"
-"\n"
-" \n"
-"\n"
-"\n"
-" \n"
-"\n"
-"\n"
-" \n"
-"\n"
-"\n"
-" ' \n"
-" \n"
-"\n"
-" \n"
-"\n"
-"\n"
-" \n"
-"\n"
-" \n"
-"\n"
-"\n"
-" \n"
-"\n"
-"\n"
-" ' \n"
-"\n"
-" \n"
-"\n"
-" \n"
-"\n"
-"\n"
-" \n"
-"\n"
-"\n"
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
"\n"
-" \n"
-" \n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
"\n"
-" \n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
"\n"
-"."
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
+msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
@@ -1382,13 +1351,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1433,7 +1397,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1495,32 +1459,7 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+"(\"On Floppy\")."
msgstr ""
#: ../../help.pm:1
@@ -1728,9 +1667,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1838,10 +1782,12 @@ msgstr ""
" Linux."
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
"\"\": . ,\n"
" ."
@@ -2068,9 +2014,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -2090,14 +2034,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
"Linux\n"
"\n"
@@ -2173,7 +2117,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2260,7 +2204,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2285,13 +2229,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"\n"
" Linux\n"
@@ -2356,35 +2300,6 @@ msgstr ""
"."
#: ../../help.pm:1
-#, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-
-#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
@@ -2604,7 +2519,8 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2639,7 +2555,7 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -4211,6 +4127,12 @@ msgstr ""
msgid "System"
msgstr ""
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "%s ( %s)"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
@@ -4657,6 +4579,11 @@ msgid "Please choose your type of mouse."
msgstr " ."
#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr " "
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr " %s"
@@ -9542,11 +9469,6 @@ msgstr " "
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr " "
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
@@ -10848,19 +10770,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"O . "
-" , , "
-" "
-" CUPS Star Office/OpenOffice.org/GIMP."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr " : "
@@ -11480,6 +11389,11 @@ msgstr " %s !"
#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr " "
+
+#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
msgid ""
"Printer default settings\n"
"\n"
@@ -13358,13 +13272,13 @@ msgstr " Crackers"
#, fuzzy, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr " Linux"
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr " "
#: ../../share/advertising/01-thanks.pl:1
@@ -13375,199 +13289,155 @@ msgstr " Mandrake Linux 9.1"
#: ../../share/advertising/02-community.pl:1
#, fuzzy, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr "Linux"
#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr " ;"
-
-#: ../../share/advertising/02-community.pl:1
-#, fuzzy, c-format
-msgid "Get involved in the Free Software world"
-msgstr " "
-
-#: ../../share/advertising/03-internet.pl:1
#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
-msgstr "Linux"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
+msgstr " ;"
-#: ../../share/advertising/03-internet.pl:1
-#, fuzzy, c-format
-msgid "Get the most from the Internet"
-msgstr " "
+#: ../../share/advertising/02-community.pl:1
+#, c-format
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr "Linux "
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Push multimedia to its limits!"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr " !"
-
-#: ../../share/advertising/05-games.pl:1
-#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
-msgstr "Linux."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
+msgstr ""
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr ""
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-" Mandrake Linux 9.1 "
-" "
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr " Mandrake"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr " Mandrake"
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
" Mandrake Linux 9.1 11 "
" : KDE 3, Gnome 2, WindowMaker, ..."
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr " "
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
-#, fuzzy, c-format
+#: ../../share/advertising/06-development.pl:1
+#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
-msgstr ""
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr " Mandrake Linux 9.1 "
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr " "
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
" Linux "
" : , , , "
" , ..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr " "
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr " MandrakeStore"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-" "
-" "
-
-#: ../../share/advertising/10-mnf.pl:1
-#, fuzzy, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr " /"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr " "
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, fuzzy, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr "Linux:"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr " MandrakeSoft"
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, fuzzy, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr "Linux"
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr " "
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
-#, fuzzy, c-format
+#: ../../share/advertising/10-security.pl:1
+#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
-msgstr "Linux"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr ""
+msgid "Optimize your security by using Mandrake Linux"
+msgstr " "
-#: ../../share/advertising/13-mdkcampus.pl:1
-#, fuzzy, c-format
+#: ../../share/advertising/11-mnf.pl:1
+#, c-format
+msgid "This product is available on the MandrakeStore Web site."
+msgstr " MandrakeStore"
+
+#: ../../share/advertising/11-mnf.pl:1
+#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
-msgstr " "
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
-#, fuzzy, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr "Linux"
+#: ../../share/advertising/11-mnf.pl:1
+#, c-format
+msgid "Secure your networks with the Multi Network Firewall"
+msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, fuzzy, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -13575,51 +13445,35 @@ msgid ""
"technical support website:"
msgstr "Linux:"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, fuzzy, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr " MandrakeExpert"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, fuzzy, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr "."
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert Corporate"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, fuzzy, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr "Linux Linux Linux!"
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr " MandrakeClub Mandrake Corporate Club"
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -16202,6 +16056,11 @@ msgstr " "
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr " Mandrake"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr " Mandrake"
@@ -17155,6 +17014,22 @@ msgid "Interface %s (using module %s)"
msgstr " %s ( %s)"
#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr " Xinetd"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -17532,7 +17407,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -17739,6 +17614,11 @@ msgid "choose image file"
msgstr " "
#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr " "
+
+#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
msgstr " bootsplash"
@@ -18215,11 +18095,21 @@ msgid "network printer port"
msgstr " "
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the name of the CPU"
+msgstr " "
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Name"
msgstr ""
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr " "
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Number of buttons"
msgstr " "
@@ -18382,7 +18272,7 @@ msgstr " "
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -19400,6 +19290,10 @@ msgstr ""
""
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr " - "
@@ -19455,6 +19349,217 @@ msgstr " "
msgid "Programs to manage your finances, such as gnucash"
msgstr " , gnucash"
+#~ msgid "no network card found"
+#~ msgstr " "
+
+#, fuzzy
+#~ msgid "Get involved in the Free Software world"
+#~ msgstr " "
+
+#, fuzzy
+#~ msgid ""
+#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "and view animations with Mozilla and Konqueror, or read your mail and "
+#~ "handle your personal information with Evolution and Kmail"
+#~ msgstr "Linux"
+
+#, fuzzy
+#~ msgid "Get the most from the Internet"
+#~ msgstr " "
+
+#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
+#~ msgstr " !"
+
+#, fuzzy
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr "Linux."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ " Mandrake Linux 9.1 "
+#~ " "
+
+#~ msgid "User interfaces"
+#~ msgstr " "
+
+#, fuzzy
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+
+#~ msgid "Development simplified"
+#~ msgstr " "
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ " "
+#~ " "
+
+#, fuzzy
+#~ msgid ""
+#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
+#~ "N.F.)"
+#~ msgstr " /"
+
+#~ msgid "Strategic partners"
+#~ msgstr " "
+
+#, fuzzy
+#~ msgid ""
+#~ "Whether you choose to teach yourself online or via our network of "
+#~ "training partners, the Linux-Campus catalogue prepares you for the "
+#~ "acknowledged LPI certification program (worldwide professional technical "
+#~ "certification)"
+#~ msgstr "Linux"
+
+#, fuzzy
+#~ msgid ""
+#~ "The training program has been created to respond to the needs of both end "
+#~ "users and experts (Network and System administrators)"
+#~ msgstr " "
+
+#, fuzzy
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr "Linux"
+
+#, fuzzy
+#~ msgid ""
+#~ "MandrakeClub and Mandrake Corporate Club were created for business and "
+#~ "private users of Mandrake Linux who would like to directly support their "
+#~ "favorite Linux distribution while also receiving special privileges. If "
+#~ "you enjoy our products, if your company benefits from our products to "
+#~ "gain a competititve edge, if you want to support Mandrake Linux "
+#~ "development, join MandrakeClub!"
+#~ msgstr "Linux Linux Linux!"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr " MandrakeClub Mandrake Corporate Club"
+
+#, fuzzy
+#~ msgid ""
+#~ "As a review, DrakX will present a summary of various information it has\n"
+#~ "about your system. Depending on your installed hardware, you may have "
+#~ "some\n"
+#~ "or all of the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary.\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Country\": check the current country selection. If you are not in "
+#~ "this\n"
+#~ "country, click on the button and choose another one.\n"
+#~ "\n"
+#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+#~ "primary language you have chosen. But here, just as in your choice of a\n"
+#~ "keyboard, you may not be in a country to which the chosen language\n"
+#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
+#~ "configure the clock for the correct timezone.\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation.\n"
+#~ "\n"
+#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+#~ "click that button. This should be reserved to advanced users.\n"
+#~ "\n"
+#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+#~ "interface in \"800x600\" resolution. If that does not suits you, click "
+#~ "on\n"
+#~ "the button to reconfigure your graphical interface.\n"
+#~ "\n"
+#~ " * \"Network\": If you want to configure your Internet or local network\n"
+#~ "access now, you can by clicking on this button.\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. If you notice the sound card displayed is not the one "
+#~ "that\n"
+#~ "is actually present on your system, you can click on the button and "
+#~ "choose\n"
+#~ "another driver.\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. If you have a TV card and it is not detected, click on the button "
+#~ "to\n"
+#~ "try to configure it manually.\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with the card."
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ " \n"
+#~ "\n"
+#~ "\n"
+#~ " \n"
+#~ "\n"
+#~ "\n"
+#~ " \n"
+#~ "\n"
+#~ "\n"
+#~ " ' \n"
+#~ " \n"
+#~ "\n"
+#~ " \n"
+#~ "\n"
+#~ "\n"
+#~ " \n"
+#~ "\n"
+#~ " \n"
+#~ "\n"
+#~ "\n"
+#~ " \n"
+#~ "\n"
+#~ "\n"
+#~ " ' \n"
+#~ "\n"
+#~ " \n"
+#~ "\n"
+#~ " \n"
+#~ "\n"
+#~ "\n"
+#~ " \n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ "\n"
+#~ " \n"
+#~ " \n"
+#~ "\n"
+#~ "\n"
+#~ " \n"
+#~ "\n"
+#~ "."
+
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "O . "
+#~ " , , "
+#~ " "
+#~ " CUPS Star Office/"
+#~ "OpenOffice.org/GIMP."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index e6d4fa691..4d42198ba 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2001-08-22 19:15-0500\n"
"Last-Translator: D. Dale Gulledge <dsplat@rochester.rr.com>\n"
"Language-Team: Esperanto <eo@li.org>\n"
@@ -1050,50 +1050,65 @@ msgstr ""
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
#: ../../help.pm:1
@@ -1197,13 +1212,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1247,7 +1257,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1285,32 +1295,7 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+"(\"On Floppy\")."
msgstr ""
#: ../../help.pm:1
@@ -1464,9 +1449,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1523,7 +1513,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -1645,9 +1637,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -1658,14 +1648,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
#: ../../help.pm:1
@@ -1706,7 +1696,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -1764,7 +1754,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -1789,42 +1779,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
#: ../../help.pm:1
@@ -1956,7 +1917,8 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -1982,7 +1944,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -2731,9 +2693,9 @@ msgstr "Eniras paŝon `%s'\n"
#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Help"
-msgstr "/_Helpo"
+msgstr "Helpo"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
@@ -3208,6 +3170,12 @@ msgstr "Servilo"
msgid "System"
msgstr "Sistema modalo"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "Pordo"
+
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
@@ -3627,6 +3595,11 @@ msgstr "Bonvole, elektu la specon de via muso."
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "La pasvortoj ne egalas"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "Ĝisdatigu"
@@ -8310,11 +8283,6 @@ msgstr "Konfiguras reto"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "neniu retkarto trovita"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
@@ -9554,17 +9522,6 @@ msgstr ""
"Vi povas aldoni pli aŭ ŝanĝi la ekzistantajn."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"Jen la sekvantaj printvicoj.\n"
-"Vi povas aldoni pli aŭ ŝanĝi la ekzistantajn."
-
-#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing system: "
msgstr ""
@@ -10086,6 +10043,11 @@ msgid "Option %s must be an integer number!"
msgstr ""
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Printilan Konekton"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -11718,13 +11680,13 @@ msgstr "Bonvenon Al Rompistoj"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
@@ -11735,190 +11697,150 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
+msgid ""
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
#: ../../share/advertising/02-community.pl:1
-#, fuzzy, c-format
-msgid "Get involved in the Free Software world"
-msgstr "La cetero de la mondo"
-
-#: ../../share/advertising/03-internet.pl:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+msgid "Build the future of Linux!"
msgstr ""
-#: ../../share/advertising/03-internet.pl:1
-#, fuzzy, c-format
-msgid "Get the most from the Internet"
-msgstr "Konektu al la Interreto"
-
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../share/advertising/05-games.pl:1
-#, c-format
-msgid "Games"
-msgstr "Ludoj"
-
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Control Center"
-msgstr "Konekti al la interreto"
-
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, fuzzy, c-format
-msgid "User interfaces"
-msgstr "Reta interfaco"
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Interreta Konfigurado"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "A customizable environment"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
-#, fuzzy, c-format
-msgid "Development simplified"
-msgstr "Programisto"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "This product is available on MandrakeStore website"
+msgid ""
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
+msgid "Turn your computer into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies\", are available on our e-store:"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "Optimize your security"
+msgid "The official MandrakeSoft Store"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
-"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr ""
-
-#: ../../share/advertising/13-mdkcampus.pl:1
-#, c-format
-msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+msgid "Optimize your security by using Mandrake Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Certify yourself on Linux"
+msgid "This product is available on the MandrakeStore Web site."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -11926,51 +11848,35 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, fuzzy, c-format
msgid "Become a MandrakeExpert"
msgstr "Spertulo"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, fuzzy, c-format
msgid "MandrakeExpert Corporate"
msgstr "Spertulo"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -14164,6 +14070,11 @@ msgid "First Time Wizard"
msgstr "Bonvenon al Unuafoja Sorĉilo"
#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Mandrake Control Center"
+msgstr "Konekti al la interreto"
+
+#: ../../standalone/drakbug:1
#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -15042,6 +14953,22 @@ msgstr ""
#: ../../standalone/drakgw:1
#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Printservilo"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -15384,7 +15311,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -15551,6 +15478,11 @@ msgstr "Elektu agon"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
+msgid "choose image"
+msgstr "Elektu agon"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
msgid "Configure bootsplash picture"
msgstr "Konfiguru servojn"
@@ -15988,12 +15920,22 @@ msgid "network printer port"
msgstr "Reta Printilo (TCP/ingo)"
#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the name of the CPU"
+msgstr ""
+
+#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Name"
msgstr "Nomo: "
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "2 butonoj"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
msgid "Number of buttons"
msgstr "2 butonoj"
@@ -16155,7 +16097,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -17140,6 +17082,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr ""
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Ludoj"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Plurmedia - Grafiko"
@@ -17195,6 +17141,35 @@ msgstr ""
msgid "Programs to manage your finances, such as gnucash"
msgstr ""
+#~ msgid "no network card found"
+#~ msgstr "neniu retkarto trovita"
+
+#, fuzzy
+#~ msgid "Get involved in the Free Software world"
+#~ msgstr "La cetero de la mondo"
+
+#, fuzzy
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Konektu al la Interreto"
+
+#, fuzzy
+#~ msgid "User interfaces"
+#~ msgstr "Reta interfaco"
+
+#, fuzzy
+#~ msgid "Development simplified"
+#~ msgstr "Programisto"
+
+#, fuzzy
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "Jen la sekvantaj printvicoj.\n"
+#~ "Vi povas aldoni pli aŭ ŝanĝi la ekzistantajn."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index 70964023d..d86fdf5a8 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: es\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
-"PO-Revision-Date: 2003-02-25 20:58-0300\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
+"PO-Revision-Date: 2003-03-06 14:38+0100\n"
"Last-Translator: Fabian Mandelbaum <fmandelbaum@hotmail.com>\n"
"Language-Team: Español <es@li.org>\n"
"MIME-Version: 1.0\n"
@@ -1073,13 +1073,14 @@ msgid ""
"Click on \"<- Previous\" to stop this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
-"Haga clic sobre \"Siguiente\" si desea borrar todos los datos y particiones\n"
-"presentes en esta unidad de disco. Tenga cuidado, luego de hacer clic sobre\n"
-"\"Siguiente\", no podrá recuperar los datos y las particiones presentes en\n"
-"esta unidad de disco, incluyendo los datos de Windows.\n"
+"Haga clic sobre \"Siguiente ->\" si desea borrar todos los datos y\n"
+"particiones presentes en esta unidad de disco. Tenga cuidado, luego de\n"
+"hacer clic sobre \"Siguiente ->\", no podrá recuperar los datos y las\n"
+"particiones presentes en esta unidad de disco, incluyendo los datos de\n"
+"Windows.\n"
"\n"
-"Haga clic sobre \"Cancelar\" para cancelar esta operación sin perder los\n"
-"datos y las particiones presentes en esta unidad de disco."
+"Haga clic sobre \"<- Anterior\" para detener esta operación sin perder los\n"
+"datos ni las particiones presentes en esta unidad de disco."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
@@ -1097,90 +1098,137 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
-"Aquí se le presentan varios parámetros que conciernen a su máquina.\n"
-"Dependiendo de su hardware instalado, puede - o no, ver las entradas\n"
-"siguientes:\n"
+"A manera de revisión, DrakX presentará un resumen de las distintas\n"
+"informaciones que tiene acerca de su sistema. Dependiendo del hardware\n"
+"instalado, puede tener algunas o todas las entradas siguientes. Cada\n"
+"entrada está compuesta de el elemento de configuración a configurar,\n"
+"seguido de un pequeño resumen de la configuración corriente. Haga clic\n"
+"sobre el botón \"Configurar\" correspondiente para cambiar eso.\n"
"\n"
-" * \"Ratón\": verifique la configuración del ratón y haga clic sobre el\n"
-"botón para cambiarla, si es necesario.\n"
+" * \"Teclado\": verifique la configuración de la disposición corriente del\n"
+"teclado y cámbiela si es necesario.\n"
"\n"
-" * \"Teclado\": verifique la configuración de la disposición del teclado y\n"
-"haga clic sobre el botón para cambiarla, si es necesario.\n"
+" * \"País\": verifique la selección corriente del país. Si Usted no se\n"
+"encuentra en este país, haga clic sobre el botón \"Configurar\" y elija\n"
+"otro. Si su país no se muestra en la primer lista, haga clic sobre el botón\n"
+"\"Más\" para obtener la lista completa de países.\n"
"\n"
-" * \"Huso horario\": DrakX, de manera predeterminada, adivina su huso\n"
-"horario a partir del idioma que Usted ha elegido. Pero nuevamente, al igual\n"
-"que con la elección del teclado, puede ocurrir que no se encuentre en el\n"
-"país que sugiere el idioma elegido. De ser así, puede necesitar hacer clic\n"
-"sobre el botón \"Huso horario\" para configurar el reloj de acuerdo al huso\n"
-"horario en el que se encuentre.\n"
+" * \"Huso horario\": De manera predeterminada, DrakX deduce su huso horario\n"
+"basándose en el país que ha elegido. Puede hacer clic sobre el botón\n"
+"\"Configurar\" si esto no es correcto.\n"
"\n"
-" * \"Impresora\": al hacer clic sobre el botón \"Sin impresora\" se abrirá\n"
-"el asistente de configuración de la impresora. Consulte el capítulo\n"
-"correspondiente de la \"Guía de Comienzo\" para más información sobre como\n"
+" * \"Ratón\": verifique la configuración del ratón y haga clic sobre el\n"
+"botón para cambiarla, si es necesario.\n"
+"\n"
+" * \"Impresora\": al hacer clic sobre el botón \"Configurar\" se abrirá el\n"
+"asistente de configuración de la impresora. Consulte el capítulo\n"
+"correspondiente de la \"Guía de Comienzo\" para más información sobre cómo\n"
"configurar una impresora nueva. La interfaz presentada allí es similar a la\n"
"utilizada durante la instalación.\n"
"\n"
" * \"Tarjeta de sonido\": si se detecta una tarjeta de sonido en su\n"
-"sistema, la misma se muestra aquí. Durante la instalación no es posible\n"
-"modificación alguna.\n"
+"sistema, la misma se muestra aquí. Si nota que la tarjeta de sonido\n"
+"mostrada no es la que está realmente instalada en su sistema, puede hacer\n"
+"clic sobre el botón y elegir otro controlador.\n"
+"\n"
+" * \"Interfaz gráfica\": de manera predeterminada, DrakX configura su\n"
+"interfaz gráfica en \"800x600\" o \"1024x768\" de resolución. Si eso no le\n"
+"satisface, haga clic sobre \"Configurar\" para volver a configurar su\n"
+"interfaz gráfica.\n"
"\n"
" * \"Tarjeta de TV\": si se detecta una tarjeta de TV en su sistema, la\n"
-"misma se muestra aquí. Durante la instalación no es posible modificación\n"
-"alguna.\n"
+"misma se muestra aquí. Si tiene una tarjeta de TV y la misma no se detecta,\n"
+"haga clic sobre \"Configurar\" para intentar configurarla a mano.\n"
"\n"
" * \"Tarjeta RDSI\": si se detecta una tarjeta RDSI en su sistema, la misma\n"
-"se muestra aquí. Puede hacer clic sobre el botón para cambiar los\n"
-"parámetros asociados a la misma."
+"se muestra aquí. Puede hacer clic sobre \"Configurar\" para cambiar los\n"
+"parámetros asociados a la misma.\n"
+"\n"
+" * \"Red\": se desea configurar ahora el acceso a la Internet o su red\n"
+"local.\n"
+"\n"
+" * \"Nivel de seguridad\": esta entrada le ofrece volver a definir el nivel\n"
+"de seguridad como se ajustó en un paso previo ()\n"
+"\n"
+" * \"Cortafuegos\": si planifica conectar su máquina a la Internet, es una\n"
+"buena idea protegerse de las intrusiones configurando un cortafuegos.\n"
+"Consulte la sección correspondiente de la \"Guía de Comienzo\" para\n"
+"detalles acerca de los ajustes del cortafuegos.\n"
+"\n"
+" * \"Cargador de arranque\": si desea cambiar la configuración de su\n"
+"cargador de arranque, haga clic sobre ese botón. Esto debería estar\n"
+"reservado para usuarios avanzados.\n"
+"\n"
+" * \"Servicios\": aquí podrá tener un control fino sobre qué servicios\n"
+"correrán en su máquina. Si planifica utilizar esta máquina como servidor es\n"
+"una buena idea revisar estos ajustes."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -1189,15 +1237,15 @@ msgid ""
"actually present on your system, you can click on the button and choose\n"
"another driver."
msgstr ""
-"\"Tarjeta de sonido\": si se detecta una tarjeta de sonido en su sistema, la "
-"misma se muestra aquí. Si nota que la tarjeta de sonido que se muestra no es "
-"la que está presente en su sistema, puede hacer clic sobre el botón y elegir "
-"otro controlador."
+"\"Tarjeta de sonido\": si se detecta una tarjeta de sonido en su sistema,\n"
+"la misma se muestra aquí. Si nota que la tarjeta de sonido mostrada no es\n"
+"la que está realmente instalada en su sistema, puede hacer clic sobre el\n"
+"botón y elegir otro controlador."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Yaboot is a bootloader for NewWorld Macintosh hardware and can be used to\n"
"boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are correctly\n"
@@ -1266,7 +1314,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"You can add additional entries in yaboot for other operating systems,\n"
"alternate kernels, or for an emergency boot image.\n"
@@ -1337,10 +1385,10 @@ msgstr ""
"botones 2do y 3ro del ratón que por lo general no tienen los ratones\n"
"estándar de Apple. Algunos ejemplos son los siguientes:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
+" \tvideo=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
-" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
+" \tvideo=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
" * Initrd: esta opción se puede usar o bien para cargar los módulos\n"
"iniciales, antes que esté disponible el dispositivo de arranque, o bien\n"
@@ -1366,19 +1414,14 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"DrakX will first detect any IDE devices present in your computer. It will\n"
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1390,37 +1433,28 @@ msgid ""
"which parameters need to be passed to the hardware, you'll need to manually\n"
"configure the driver."
msgstr ""
-"DrakX ahora detecta cualquier dispositivo IDE presente en su computadora.\n"
-"También buscará una o más tarjetas SCSI PCI en su sistema. Si se encuentra\n"
-"una tarjeta SCSI DrakX instalará el controlador apropiado automáticamente.\n"
-"\n"
-"Debido a que la detección de hardware a veces no detectará alguna pieza de\n"
-"hardware DrakX le pedirá que confirme si tiene una tarjeta SCSI PCI. Haga\n"
-"clic sobre \"Sí\" si sabe que hay una tarjeta SCSI instalada en su máquina.\n"
-"Se le presentará una lista de tarjetas SCSI de la cual elegir. Haga clic\n"
-"sobre \"No\" si no tiene hardware SCSI. Si no está seguro puede verificar\n"
-"la lista de hardware detectado en su máquina seleccionando \"Ver\n"
-"información sobre el hardware\" y haciendo clic sobre \"Aceptar\". Examine\n"
-"la lista de hardware y luego haga clic sobre el botón \"Aceptar\" para\n"
-"volver a la pregunta sobre la interfaz SCSI.\n"
-"\n"
-"Si tiene que seleccionar su adaptador manualmente, DrakX le preguntará si\n"
-"desea especificar opciones para el mismo. Debería permitir que DrakX sondee\n"
-"el hardware buscando las opciones específicas que necesita el hardware para\n"
-"inicializarse. Por lo general esto funciona bien.\n"
-"\n"
-"Si DrakX no puede sondear las opciones que deben pasarse, necesitará\n"
-"proporcionar manualmente las opciones al controlador. Por favor revise la\n"
-"\"Guía del Usuario\" (capítulo 3, sección \"Recopilando información acerca\n"
-"de su hardware\") en busca de consejos para recopilar los parámetros\n"
-"necesarios a partir de la documentación del hardware, desde el sitio web\n"
-"del fabricante (si tiene acceso a la Internet) o desde Microsoft Windows\n"
-"(si utilizaba este hardware con Windows en su sistema)."
+"DrakX primero detectará cualquier dispositivo IDE presente en su\n"
+"computadora. También buscará una o más tarjetas SCSI PCI en su sistema. Si\n"
+"se encuentra una tarjeta SCSI, DrakX instalará el controlador apropiado\n"
+"automáticamente.\n"
+"\n"
+"Debido a que la detección de hardware a veces puede no detectar alguna\n"
+"pieza de hardware, DrakX puede fallar al detectar sus discos rígidos. De\n"
+"ser así, tendrá que especificar su hardware a mano.\n"
+"\n"
+"Si tiene que seleccionar su adaptador SCSI PCI manualmente, DrakX le\n"
+"preguntará si desea especificar opciones para el mismo. Debería permitir\n"
+"que DrakX sondee el hardware buscando las opciones específicas necesarias\n"
+"para inicializar el adaptador. La mayoría de las veces, DrakX pasará esta\n"
+"etapa sin problema alguno.\n"
+"\n"
+"Si DrakX no puede sondear las opciones para determinar automáticamente qué\n"
+"parámetros deben pasarse, necesitará configurar manualmente el controlador."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Now, it's time to select a printing system for your computer. Other OSs may\n"
"offer you one, but Mandrake Linux offers two. Each of the printing systems\n"
@@ -1430,7 +1464,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1447,40 +1481,37 @@ msgid ""
"system you may change it by running PrinterDrake from the Mandrake Control\n"
"Center and clicking the expert button."
msgstr ""
-"Aquí seleccionamos un sistema de impresión para que use su computadora.\n"
-"Otros sistemas operativos pueden ofrecerle uno, pero Mandrake Linux le\n"
-"ofrece tres.\n"
+"Ahora, es tiempo de seleccionar un sistema de impresión para su\n"
+"computadora. Otros sistemas operativos pueden ofrecerle uno, pero Mandrake\n"
+"Linux le ofrece dos. Cada uno de los sistemas de impresión es mejor para un\n"
+"tipo de configuración particular.\n"
"\n"
" * \"pdq\" - \"print, don't queue\" (imprimir sin poner en cola), es la\n"
"elección si Usted tiene una conexión directa a su impresora y desea evitar\n"
-"el pánico de los papeles trabados, y no tiene impresora en red alguna.\n"
-"Manejará sólo casos de red muy simples y es algo lento para las redes.\n"
-"Elija \"pdq\" si esta es su luna de miel con GNU/Linux. Después de la\n"
-"instalación puede cambiar sus elecciones ejecutando PrinterDrake desde el\n"
-"Centro de Control Mandrake y eligiendo el modo experto.\n"
+"el pánico de los papeles trabados, y no tiene impresora en red alguna\n"
+"(\"pdq\" manejará sólo casos de red muy simples y es algo lento cuando se\n"
+"utiliza con las redes) Se recomienda utilizar \"pdq\" si esta es su primer\n"
+"experiencia con GNU/Linux.\n"
"\n"
" * \"CUPS\" - \"Common Unix Printing System\" (Sistema de Impresión Común\n"
-"de Unix) es excelente imprimiendo en su impresora local y también en la\n"
-"otra punta del planeta. Es simple y puede actuar como servidor o cliente\n"
-"para el sistema de impresión antiguo \"lpd\", por lo que es compatible con\n"
-"los sistemas anteriores. Puede hacer muchas cosas, pero la configuración\n"
-"básica es tan simple como la de \"pdq\". Si necesita que emule a un\n"
-"servidor \"lpd\", debe encender el demonio \"cups-lpd\". Tiene interfaces\n"
-"gráficas para imprimir o elegir las opciones de la impresora.\n"
-"\n"
-" * \"lprNG\" - \"line printer daemon New Generation\" (servidor de\n"
-"impresora de líneas Nueva Generación). Este sistema puede hacer\n"
-"aproximadamente las mismas cosas que los otros, pero imprimirá en\n"
-"impresoras montadas sobre una red Novell, debido a que soporta el protocolo\n"
-"IPX, y puede imprimir directamente a comandos del shell. Si necesita Novell\n"
-"o imprimir a comandos de sin utilizar tuberías, utilice lprNG. De no ser\n"
-"así, se prefiere a CUPS ya que es más simple y es mejor al trabajar sobre\n"
-"redes."
+"de Unix) es una elección excelente para imprimir en su impresora local o en\n"
+"una en la otra punta del planeta. Es simple de configurar y puede actuar\n"
+"como servidor o cliente para el sistema de impresión antiguo \"lpd\", por\n"
+"lo que es compatible con sistemas operativos más antiguos que todavía\n"
+"pueden necesitar servicios de impresión. Si bien es bastante potente, la\n"
+"configuración básica es tan simple como la de \"pdq\". Si necesita que\n"
+"emule a un servidor \"lpd\", debe encender el demonio \"cups-lpd\".\n"
+"\"CUPS\" incluye interfaces gráficas para imprimir o elegir las opciones de\n"
+"la impresora y para administrar la impresora.\n"
+"\n"
+"Si hace una elección ahora, y más tarde encuentra que a Usted no le gusta\n"
+"su sistema de impresión, lo puede cambiar ejecutando PrinterDrake desde el\n"
+"Centro de Control de Mandrake y haciendo clic sobre el botón para expertos."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
"automated. DrakX will analyze the disk boot sector and act according to\n"
@@ -1499,62 +1530,31 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"El CD-ROM de Mandrake Linux tiene un modo de rescate incorporado. Usted\n"
-"puede acceder al mismo arrancando desde el CD-ROM, presionando la tecla\n"
-">>F1<< durante el arranque y tecleando >>rescue<< en el prompt. Pero en\n"
-"caso que su computadora no pueda arrancar desde el CD-ROM, Usted debería\n"
-"recurrir a este paso al menos en dos situaciones:\n"
-"\n"
-" * cuando instala el cargador de arranque, DrakX sobreescribirá el sector\n"
-"de arranque (MBR) de su disco principal (a menos que esté utilizando otro\n"
-"administrador de arranque) de forma tal que pueda iniciar o bien Windows o\n"
-"bien GNU/Linux (asumiendo que tiene Windows en su sistema). Si necesita\n"
-"volver a instalar Windows, el proceso de instalación de Microsoft\n"
-"sobreescribirá el sector de arranque, y entonces ¡Usted no podrá iniciar\n"
-"GNU/Linux!\n"
-"\n"
-" * si surge un problema y Usted no puede iniciar GNU/Linux desde el disco\n"
-"rígido, este disquete será la única manera de iniciar GNU/Linux. El mismo\n"
-"contiene una buena cantidad de herramientas del sistema para restaurar un\n"
-"sistema que colapsó debido a una falla de energía, un error de tecleo\n"
-"infortunado, un error en una contraseña, o cualquier otro motivo.\n"
-"\n"
-"Si dice \"Sí\", se le pedirá que inserte un disquete dentro de la\n"
-"disquetera. El disquete que inserte debe estar vacío o contener datos que\n"
-"no necesite. No tendrá que formatearlo ya que DrakX sobreescribirá el\n"
-"disquete por completo."
+"(\"On Floppy\")."
+msgstr ""
+"LILO y grub son cargadores de arranque para GNU/Linux. Normalmente, esta\n"
+"etapa está completamente automatizada. DrakX analizará el sector de\n"
+"arranque del disco y actuará en función de lo que encuentre allí:\n"
+"\n"
+" * si encuentra un sector de arranque de Windows, lo reemplazará con un\n"
+"sector de arranque de grub/LILO de forma tal que Usted pueda cargar\n"
+"GNU/Linux u otro sistema operativo;\n"
+"\n"
+" * si encuentra un sector de arranque de grub o LILO, lo reemplazará con\n"
+"uno nuevo;\n"
+"\n"
+"Si no puede realizar una determinación, DrakX le pedirá dónde colocar el\n"
+"cargador de arranque.\n"
+"\n"
+"\"Dispositivo de arranque\": en la mayoría de los casos, Usted no cambiará\n"
+"lo predeterminado (\"Primer sector del disco (MBR)\"), pero si prefiere, el\n"
+"cargador de arranque se puede instalar en el segundo disco rígido\n"
+"(\"/dev/hdb\"), o incluso en un disquete (\"En disquete\")"
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options that will be available at boot time will be displayed.\n"
@@ -1575,21 +1575,22 @@ msgstr ""
"arranque se mostrará la lista de opciones de arranque que estarán\n"
"disponibles al momento de arrancar.\n"
"\n"
-"Si hay otro sistema operativo instalado en su máquina, se agregará el mismo\n"
-"automáticamente al menú de arranque. Aquí puede elegir ajustar las opciones\n"
-"existentes. Seleccione una entrada y haga clic sobre \"Modificar\" para\n"
-"cambiar los parámetros de la misma o quitarla; \"Añadir\" crea una entrada\n"
-"nueva; y \"Hecho\" avanza al paso de instalación siguiente.\n"
+"Si hay otros sistemas operativos instalados en su máquina los mismos se\n"
+"agregarán automáticamente al menú de arranque. Aquí puede elegir ajustar\n"
+"las opciones existentes haciendo clic sobre \"Añadir\" para crear una nueva\n"
+"entrada; seleccionando una entrada y haciendo clic sobre \"Modificar\" o\n"
+"\"Quitar\" para modificarla o quitarla. \"Aceptar\" valida sus cambios.\n"
"\n"
"También, puede ser que no desee dar acceso a los otros sistemas operativos\n"
-"a terceros. En este caso, puede borrar las entradas correspondientes. ¡Pero\n"
-"entonces, Usted necesitará un disquete de arranque para poder arrancar esos\n"
+"a cualquiera que vaya a la consola y reinicie la máquina. Puede borrar las\n"
+"entradas correspondientes para los sistemas operativos para quitarlas del\n"
+"menú, pero ¡necesitará un disquete de arranque para poder arrancar esos\n"
"otros sistemas operativos!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"This dialog allows to finely tune your bootloader:\n"
"\n"
@@ -1618,51 +1619,41 @@ msgid ""
"Clicking the \"Advanced\" button in this dialog will offer advanced options\n"
"that are reserved for the expert user."
msgstr ""
-"LILO y grub son cargadores de arranque para GNU/Linux. Normalmente, esta\n"
-"etapa está completamente automatizada. De hecho, DrakX analiza el sector de\n"
-"arranque del disco y actúa en función de lo que encuentre allí:\n"
+"Este diálogo le permite un ajuste fino de su cargador de arranque:\n"
"\n"
-" * si encuentra un sector de arranque de Windows, lo reemplazará con un\n"
-"sector de arranque de grub/LILO de forma tal que Usted pueda arrancar\n"
-"GNU/Linux u otro sistema operativo;\n"
-"\n"
-" * si encuentra un sector de arranque de grub o LILO, lo reemplazará con\n"
-"uno nuevo;\n"
-"\n"
-"En caso de duda, DrakX mostrará un diálogo con varias opciones:\n"
-"\n"
-" * \"Cargador de arranque a usar\": tiene tres opciones:\n"
-"\n"
-" * \"LILO con menú gráfico\": si prefiere a LILO con su interfaz\n"
-"gráfica.\n"
+" * \"Cargador de arranque a usar\": hay tres opciones para su cargador de\n"
+"arranque:\n"
"\n"
" * \"GRUB\": si prefiere a grub (menú de texto).\n"
"\n"
" * \"LILO con menú de texto\": si prefiere a LILO con su interfaz de\n"
"texto.\n"
"\n"
+" * \"LILO con menú gráfico\": si prefiere a LILO con su interfaz\n"
+"gráfica.\n"
+"\n"
" * \"Dispositivo de arranque\": en la mayoría de los casos, no cambiará lo\n"
"predeterminado (\"/dev/hda\"), pero si lo prefiere, el cargador de arranque\n"
"se puede instalar en el segundo disco rígido (\"/dev/hdb\"), o incluso en\n"
"un disquete (\"/dev/fd0\").\n"
"\n"
-" * \"Demora antes de arrancar la imagen predeterminada\": cuando vuelve a\n"
-"arrancar la computadora, esta es la demora que se garantiza al usuario para\n"
-"elegir - en el menú del cargador de arranque, una entrada distinta a la\n"
-"predeterminada.\n"
+" * \"Demora antes de arrancar la imagen predeterminada\": luego de arrancar\n"
+"o volver a arrancar la computadora, esta es la demora que se garantiza al\n"
+"usuario para elegir, en el menú del cargador de arranque, una entrada\n"
+"distinta a la predeterminada.\n"
"\n"
"!! Tenga presente que si no elige instalar un cargador de arranque\n"
-"(seleccionando \"Cancelar\"), ¡Debe asegurarse que tiene una forma de\n"
+"(seleccionando \"Omitir\"), ¡debe asegurarse que tiene una forma de\n"
"arrancar a su sistema Mandrake Linux! También debe asegurarse que sabe lo\n"
"que hace antes de cambiar cualquier opción. !!\n"
"\n"
"Haciendo clic sobre el botón \"Avanzadas\" en este diálogo se le ofrecerán\n"
-"muchas opciones avanzadas que están reservadas para el usuario experto."
+"opciones avanzadas que están reservadas para el usuario experto."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"Root\" is the system\n"
@@ -1700,26 +1691,25 @@ msgid ""
"and if you trust anybody having access to it."
msgstr ""
"Este es el punto de decisión más crucial para la seguridad de su sistema\n"
-"GNU/Linux: tendrá que ingresar la contraseña de \"root\". \"root\" es el\n"
-"administrador del sistema y es el único autorizado a hacer actualizaciones,\n"
-"agregar usuarios, cambiar la configuración general del sistema, etc.\n"
-"Resumiendo, ¡\"root\" puede hacer de todo!. Es por esto que deberá elegir\n"
-"una contraseña que sea difícil de adivinar - DrakX le dirá si la que eligió\n"
-"es demasiado fácil. Como puede ver, puede optar por no ingresar una\n"
-"contraseña, pero le recomendamos encarecidamente que ingrese una, aunque\n"
-"sea sólo por una razón: no piense que debido a que Usted arrancó GNU/Linux,\n"
-"sus otros sistemas operativos están seguros contra los errores. Eso no es\n"
-"cierto debido a que \"root\" puede sobrepasar todas las limitaciones y\n"
-"borrar, sin intención, todos los datos que se encuentran en las particiones\n"
-"accediendo a las mismas sin el cuidado suficiente. Es por esto que es\n"
-"importante que sea difícil convertirse en \"root\".\n"
+"GNU/Linux: tendrá que ingresar la contraseña de \"root\". El usuario\n"
+"\"root\" es el administrador del sistema y es el único autorizado a hacer\n"
+"actualizaciones, agregar usuarios, cambiar la configuración general del\n"
+"sistema, etc. Resumiendo, ¡\"root\" puede hacer de todo!. Es por esto que\n"
+"deberá elegir una contraseña que sea difícil de adivinar - DrakX le dirá si\n"
+"la que eligió es demasiado fácil. Como puede ver, no es forzoso ingresar\n"
+"una contraseña, pero le recomendamos encarecidamente que ingrese una.\n"
+"GNU/Linux es tan propenso a errores del operador como cualquier otro\n"
+"sistema operativo. Debido a que \"root\" puede sobrepasar todas las\n"
+"limitaciones y borrar, sin intención, todos los datos que se encuentran en\n"
+"las particiones accediendo a las mismas sin el cuidado suficiente, es que\n"
+"es importante que sea difícil convertirse en \"root\".\n"
"\n"
"La contraseña debería ser una mezcla de caracteres alfanuméricos y tener al\n"
"menos una longitud de 8 caracteres. Nunca escriba la contraseña de \"root\"\n"
-"- eso hace que sea muy fácil comprometer a un sistema.\n"
+"- en un papel, eso hace que sea muy fácil comprometer a un sistema.\n"
"\n"
-"Sin embargo, por favor no haga la contraseña muy larga o complicada debido\n"
-"a que Usted debe poder recordarla sin realizar mucho esfuerzo.\n"
+"Sin embargo, no debería hacer la contraseña muy larga o complicada ¡debido\n"
+"a que Usted debe poder recordarla!\n"
"\n"
"La contraseña no se mostrará en la pantalla a medida que Usted la teclee.\n"
"Por lo tanto, tendrá que teclear la contraseña dos veces para reducir la\n"
@@ -1727,15 +1717,16 @@ msgstr ""
"mismo error de tecleo, tendrá que utilizar esta contraseña \"incorrecta\"\n"
"la primera vez que se conecte.\n"
"\n"
-"En modo experto, se le preguntará si se conectará a un servidor de\n"
-"autenticación, por ejemplo NIS o LDAP.\n"
+"Si desea que el acceso a esta computadora esté controlado por un servidor\n"
+"de autenticación, haga clic sobre el botón \"Avanzadas\".\n"
"\n"
-"Si su red usa los protocolos LDAP, NIS, o PDC Dominio de Windows para la\n"
-"autenticación, seleccione el botón apropiado como \"autenticación\". Si no\n"
-"sabe, pregunte al administrador de su red.\n"
+"Si su red usa los protocolos LDAP, NIS, o servicios de autenticación de PDC\n"
+"Dominio de Windows, seleccione el botón apropiado como \"autenticación\".\n"
+"Si no sabe cual utilizar, pregunte al administrador de su red.\n"
"\n"
-"Si su computadora no está conectada a alguna red administrada, querrá\n"
-"elegir \"Archivos locales\" para la autenticación."
+"Si ocurre que tiene problemas para recordar contraseñas, puede elegir el\n"
+"botón \"Sin contraseña\", si es que su computadora no estará conectada a la\n"
+"Internet y Usted confía en cualquier persona que tenga acceso a la misma."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
@@ -1751,7 +1742,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Usually, DrakX has no problems detecting the number of buttons on your\n"
"mouse. If it does, it assumes you have a two-button mouse and will\n"
@@ -1778,30 +1769,36 @@ msgid ""
"the buttons and check that the mouse pointer moves on-screen as you move\n"
"your mouse."
msgstr ""
-"DrakX generalmente detecta la cantidad de botones que tiene su ratón. Si\n"
-"no, asume que Usted tiene un ratón de dos botones y lo configurará para que\n"
-"emule el tercer botón. DrakX sabrá automáticamente si es un ratón PS/2,\n"
-"serie o USB.\n"
+"Por lo general, DrakX no tiene problemas en detectar la cantidad de botones\n"
+"que tiene su ratón. En caso contrario, asume que Usted tiene un ratón de\n"
+"dos botones y lo configurará para que emule el tercer botón. El tercer\n"
+"botón del ratón de un ratón de dos botones se puede \"presionar\" haciendo\n"
+"clic simultáneamente sobre el botón izquierdo y el derecho. DrakX sabrá\n"
+"automáticamente si su ratón utiliza una interfaz PS/2, serie o USB.\n"
"\n"
-"Si desea especificar un tipo de ratón diferente, seleccione el tipo\n"
-"apropiado de la lista que se proporciona.\n"
+"Si, por alguna razón, desea especificar un tipo de ratón diferente,\n"
+"selecciónelo de la lista que se proporciona.\n"
"\n"
-"Si elije un ratón distinto al predeterminado, se le presentará una pantalla\n"
+"Si elige un ratón distinto al predeterminado, se le presentará una pantalla\n"
"de prueba. Use los botones y la rueda para verificar que la configuración\n"
-"es correcta. Si el ratón no está funcionando correctamente, presione la\n"
-"barra espaciadora o [Intro] para \"Cancelar\" y vuelva a elegir.\n"
-"\n"
-"Los ratones con rueda a veces no se detectan automáticamente. Necesitará\n"
-"seleccionarlo manualemente en la lista. Debe asegurarse de seleccionar el\n"
-"correspondiente en el puerto correcto al cual está conectado. Luego que ha\n"
-"presionado el botón \"Aceptar\", se muestra una imagen de un ratón. Debe\n"
-"mover la rueda de su ratón para activarlo correctamente. Luego, pruebe\n"
-"todos los botones y que el movimiento es correcto en todas direcciones."
+"es correcta y que el ratón está funcionando correctamente. Si el ratón no\n"
+"está funcionando bien, presione la barra espaciadora o [Intro] para\n"
+"cancelar la prueba y volver a la lista de opciones.\n"
+"\n"
+"Los ratones con rueda a veces no se detectan automáticamente, por lo que\n"
+"deberá seleccionar su ratón de una lista. Debe asegurarse de seleccionar el\n"
+"correspondiente al puerto en el cual está conectado su ratón. Después de\n"
+"seleccionar un ratón y presionar el botón \"Siguiente ->\", se muestra una\n"
+"imagen de un ratón en la pantalla. Mueva la rueda de su ratón para\n"
+"asegurarse que está activa correctamente. Una vez que ve que se mueve la\n"
+"rueda en la pantalla a medida que mueve la rueda de su ratón, pruebe los\n"
+"botones y verifique que el puntero del ratón se mueve en la pantalla a\n"
+"medida que mueve su ratón."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Your choice of preferred language will affect the language of the\n"
"documentation, the installer and the system in general. Select first the\n"
@@ -1814,9 +1811,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1826,27 +1828,38 @@ msgstr ""
"El primer paso es elegir el idioma de instalación. En el ejemplo se elige\n"
"\"Spanish (Argentina)\"(*).\n"
"\n"
-"Por favor, elija su idioma preferido para la instalación y el uso del\n"
-"sistema.\n"
+"Su elección de idioma preferido afectará el idioma de la documentación, el\n"
+"instalador y el sistema en general. Seleccione primero la región en la que\n"
+"se encuentra, y luego el idioma que habla.\n"
"\n"
"Al hacer clic sobre el botón \"Avanzado\" podrá seleccionar otros idiomas\n"
-"para instalar en su estación de trabajo. Seleccionar otros idiomas\n"
-"instalará los archivos específicos para la documentación del sistema y las\n"
-"aplicaciones. Por ejemplo, si albergará a gente de Francia en su máquina,\n"
-"seleccione Español como idioma principal en la vista de árbol y en la\n"
-"sección avanzada haga clic sobre la estrella gris que corresponde a\n"
-"\"Francés|Francia\".\n"
-"\n"
-"Note que se pueden instalar múltiples idiomas. Una vez que ha seleccionado\n"
-"cualquier idioma adicional haga clic sobre el botón \"Aceptar\" para\n"
-"continuar.\n"
+"para instalar en su estación de trabajo, instalando así los archivos\n"
+"específicos para esos idiomas para la documentación y las aplicaciones. Por\n"
+"ejemplo, si albergará a gente de Francia en su máquina, seleccione Español\n"
+"como idioma principal en la vista de árbol y \"Francés|Francia\" en la\n"
+"sección avanzada.\n"
+"\n"
+"Note que no está limitado a elegir un único idioma adicional. Puede elegir\n"
+"varios, o incluso instalarlos a todos eligiendo la casilla \"Todos los\n"
+"idiomas\". Seleccionar el soporte para un idioma significa que se\n"
+"instalarán las traducciones, tipografías, correctores ortográficos, etc.\n"
+"para dicho idioma. Adicionalmente, la casilla \"Usar Unicode\n"
+"predeterminadamente\" permite forzar al sistema a utilizar Unicode (UTF-8)\n"
+"Sin embargo, note que esta es una característica experimental. Si\n"
+"selecciona diferentes idiomas que necesitan codificaciones diferentes de\n"
+"todas formas se instalará el soporte para Unicode.\n"
+"\n"
+"Para cambiar de un idioma a otro, Usted puede ejecutar, como \"root\", el\n"
+"comando \"/usr/sbin/localedrake\" para cambiar el idioma de todo el\n"
+"sistema, o ejecutarlo como usuario no privilegiado para cambiar sólo el\n"
+"idioma predeterminado de ese usuario.\n"
"\n"
"(*) Ya que de ahí viene el traductor [:-)]"
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Depending on the default language you chose in Section , DrakX will\n"
"automatically select a particular type of keyboard configuration. However,\n"
@@ -1864,22 +1877,24 @@ msgid ""
"dialog will allow you to choose the key binding that will switch the\n"
"keyboard between the Latin and non-Latin layouts."
msgstr ""
-"Normalmente, DrakX selecciona el teclado adecuado para Usted (dependiendo\n"
-"del idioma que eligió) y Usted ni siquiera verá este paso. Sin embargo,\n"
-"podría no tener un teclado que se corresponde exactamente con su idioma:\n"
-"por ejemplo, si Usted es un argentino que habla inglés, todavía podría\n"
-"desear que su teclado sea un teclado Latinoamericano. O si habla castellano\n"
-"pero está en Inglaterra puede estar en la misma situación. En ambos casos,\n"
-"Usted tendrá que volver a este paso de la instalación y elegir un teclado\n"
-"apropiado de la lista.\n"
+"Dependiendo del idioma predeterminado que eligió en , DrakX selecciona\n"
+"automáticamente un tipo particular de configuración del teclado. Sin\n"
+"embargo, podría no tener un teclado que se corresponde exactamente con su\n"
+"idioma: por ejemplo, si Usted es un argentino que habla inglés, todavía\n"
+"podría desear que su teclado sea un teclado Latinoamericano. O si habla\n"
+"castellano pero está en Inglaterra puede estar en la misma situación en la\n"
+"cual su idioma nativo y su teclado no coinciden. En cualquier caso, este\n"
+"paso de instalación le permitirá elegir un teclado apropiado de una lista.\n"
"\n"
"Haga clic sobre el botón \"Más\" para que se le presente la lista completa\n"
"de los teclados soportados.\n"
"\n"
-"Si eligió una distribución de teclado basada en un alfabeto no latino, en\n"
-"el próximo diálogo se le pedirá que elija la combinación de teclas que\n"
-"cambiará la distribución del teclado entre la latina y la no latina."
+"Si eligió una distribución de teclado basada en un alfabeto no latino, el\n"
+"próximo diálogo le permitirá elegir la combinación de teclas que cambiará\n"
+"la distribución del teclado entre la latina y la no latina."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -1904,44 +1919,44 @@ msgid ""
"running version \"8.1\" or later. Performing an Upgrade on versions prior\n"
"to Mandrake Linux version \"8.1\" is not recommended."
msgstr ""
-"Este paso se activa sólo si se ha encontrado una partición antigua en su "
-"máquina.\n"
-"\n"
-"DrakX ahora necesita saber si desea realizar una instalación nueva o "
-"actualizar\n"
-"un sistema Mandrake Linux existente:\n"
-"\n"
-"* \"Instalar\": Mayormente, esto borrra por completo el sistema viejo. Si "
-"desea\n"
-"cambiar cómo se particionan sus discos rígidos, o cambiar el sist. de "
-"archivos,\n"
-"debería usar esta opción. Sin embargo, dependiendo de su esquema de "
-"partición,\n"
-"puede evitar que se sobre-escriban algunos datos existentes.\n"
-"\n"
-"* \"Actualizar\": Esta clase de instalación le permite actualizar los "
-"paquetes\n"
-"instalados actualmente en su sistema Mandrake Linux. Su esquema de "
-"partición\n"
-"corriente y los datos de los usuarios no se alteran. La mayoría de los "
-"otros\n"
-"pasos de configuración permanecen disponibles, similar a la instalación "
-"común.\n"
-"\n"
-"El uso de la opción \"Actualizar\" debería funcionar sin problemas en "
-"sistemas\n"
-"Mandrake Linux \"8.1\" o posteriores. No se recomienda realizar una "
-"actualización\n"
-"sobre versiones anteriores a Mandrake Linux \"8.1\"."
+"Este paso se activa sólo si se encontró una partición GNU/Linux antigua en\n"
+"su sistema.\n"
+"\n"
+"DrakX ahora necesita saber si desea realizar una instalación nueva o una\n"
+"actualización de un sistema Mandrake Linux existente:\n"
+"\n"
+" * \"Instalar\": Esta opción borrará prácticamente por completo el sistema\n"
+"anterior. Si desea cambiar la forma en que se particionan sus discos, o\n"
+"cambiar el sistema de archivos, debería utilizar esta opción. Sin embargo,\n"
+"dependiendo de su esquema de particionado, puede evitar que se\n"
+"sobre-escriban algunos datos existentes.\n"
+"\n"
+" * \"Actualización\": Esta clase de instalación le permite actualizar los\n"
+"paquetes que en este momento están instalados en su sistema Mandrake Linux.\n"
+"No se alteran las particiones corrientes de sus discos ni los datos de los\n"
+"usuarios. La mayoría de los otros pasos de configuración permanecen\n"
+"disponibles, de manera similar a lo que ocurre con una instalación\n"
+"estándar.\n"
+"\n"
+"El uso de la opción \"Actualizar\" debería funcionar sin problemas para los\n"
+"sistemas Mandrake Linux que corren la versión \"8.1\" o una posterior. No\n"
+"se recomienda realizar una actualización sobre versiones anteriores a\n"
+"Mandrake Linux versión \"8.1\"."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
-"\"País\": verifique la selección de país corriente. Si no está en este\n"
-"país, haga clic sobre el botón y elija otro."
+"\"País\": verifique la selección corriente del país. Si Usted no se\n"
+"encuentra en este país, haga clic sobre el botón \"Configurar\" y elija\n"
+"otro. Si su país no se muestra en la primer lista, haga clic sobre el botón\n"
+"\"Más\" para obtener la lista completa de países."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
@@ -2015,7 +2030,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -2143,24 +2158,27 @@ msgstr ""
" * \"Hecho\": cuando ha terminado de particionar su disco rígido, esto\n"
"guardará sus cambios en el disco.\n"
"\n"
+"Cuando se define el tamaño de una partición, puede realizar un ajuste fino\n"
+"del tamaño utilizando las teclas de las flechas de su teclado.\n"
+"\n"
"Nota: todas las opciones son accesibles por medio del teclado. Navegue a\n"
"través de las particiones usando [Tab] y las flechas [Arriba/Abajo].\n"
"\n"
"Cuando se selecciona una partición, puede utilizar:\n"
"\n"
-" * Ctrl-c para crear una partición nueva (cuando está seleccionada una\n"
+" * [Ctrl][C] para crear una partición nueva (cuando está seleccionada una\n"
"partición vacía);\n"
"\n"
-" * Ctrl-d para borrar una partición;\n"
+" * [Ctrl][D] para borrar una partición;\n"
"\n"
-" * Ctrl-m para configurar el punto de montaje.\n"
+" * [Ctrl][M] para configurar el punto de montaje.\n"
"\n"
"Para obtener información sobre los distintos tipos de sistemas de archivos\n"
"disponibles, por favor lea el capítulo acerca de ext2FS del \"Manual de\n"
"Referencia\".\n"
"\n"
"Si está instalando en una máquina PPC, querrá crear una pequeña partición\n"
-"HFS de \"bootstrap\" de al menos 1MB que será utilizada por el cargador de\n"
+"HFS de \"bootstrap\" de al menos 1 MB que será utilizada por el cargador de\n"
"arranque yaboot. Si opta por hacer la partición un poco más grande, digamos\n"
"50 MB, puede ver que es un lugar útil para almacenar un núcleo y ramdisk\n"
"alternativos para arrancar en situaciones de emergencia."
@@ -2168,54 +2186,51 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"At this point, DrakX will allow you to choose the security level desired\n"
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-"En este punto, es tiempo de elegir el nivel de seguridad deseado para su\n"
-"máquina. Como regla general, cuanto más expuesta está la máquina, y cuantos\n"
-"más cruciales sean los datos que tenga almacenados el nivel de seguridad en\n"
-"la misma deberá ser más alto. Sin embargo, un nivel de seguridad más alto\n"
-"generalmente se obtiene a expensas de la facilidad de uso. Consulte el\n"
-"capítulo \"msec\" del \"Manual de Referencia\" para obtener más información\n"
-"sobre el significado de dichos niveles.\n"
+"En este punto, DrakX le permitirá elegir el nivel de seguridad deseado para\n"
+"la máquina. Como regla general, el nivel de seguridad debería ser mayor\n"
+"cuanto más cruciales sean los datos que tenga almacenados, o si será una\n"
+"máquina directamente expuesta a la Internet. Sin embargo, un nivel de\n"
+"seguridad más alto generalmente se obtiene a expensas de la facilidad de\n"
+"uso.\n"
"\n"
"Si no sabe que elegir, mantenga la opción predeterminada."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
"Es probable que cuando instale Mandrake Linux algunos paquetes se hayan\n"
"actualizado desde la publicación inicial. Se pueden haber corregido algunos\n"
"errores, y solucionado problemas de seguridad. Para permitir que Usted se\n"
"beneficie de estas actualizaciones, ahora se le propone transferirlas desde\n"
-"la Internet. Elija \"Sí\" si tiene funcionando una conexión con la\n"
+"la Internet. Marque \"Sí\" si tiene funcionando una conexión con la\n"
"Internet, o \"No\" si prefiere instalar los paquetes actualizados más\n"
"tarde.\n"
"\n"
-"Si elije \"Sí\" se muestra una lista de lugares desde los que se pueden\n"
+"Si elige \"Sí\" se mostrará una lista de lugares desde los que se pueden\n"
"obtener las actualizaciones. Elija el más cercano a Usted. Luego aparece un\n"
"árbol de selección de paquetes: revise la selección y presione \"Instalar\"\n"
"para transferir e instalar los paquetes seleccionados, o \"Cancelar\" para\n"
@@ -2224,7 +2239,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a file system).\n"
@@ -2252,7 +2267,7 @@ msgid ""
"for bad blocks on the disk."
msgstr ""
"Se debe formatear cualquier partición nueva que ha sido definida para que\n"
-"se pueda utilizar (formatear significa crear un sistema de archivos).\n"
+"se pueda utilizar (formatear significa crear un sistema de archivos)\n"
"\n"
"Puede desear volver a formatear algunas particiones ya existentes para\n"
"borrar cualquier dato que pudieran contener. Si así lo desea, por favor\n"
@@ -2262,25 +2277,25 @@ msgstr ""
"pre-existentes. Debe volver a formatear las particiones que contienen el\n"
"sistema operativo (tales como \"/\", \"/usr\" o \"/var\") pero no tiene que\n"
"volver a formatear particiones que contienen datos que desea preservar\n"
-"(típicamente \"/home\").\n"
+"(típicamente \"/home\")\n"
"\n"
-"Tenga sumo cuidado cuando selecciona las particiones. Después de formatear,\n"
-"se borrarán todos los datos en las particiones seleccionadas y no podrá\n"
-"recuperarlos en absoluto.\n"
+"Por favor, tenga sumo cuidado cuando selecciona las particiones. Después de\n"
+"formatear, se borrarán todos los datos en las particiones seleccionadas y\n"
+"no podrá recuperarlos en absoluto.\n"
"\n"
-"Haga clic sobre \"Aceptar\" cuando esté listo para formatear las\n"
+"Haga clic sobre \"Siguiente ->\" cuando esté listo para formatear las\n"
"particiones.\n"
"\n"
-"Haga clic sobre \"Cancelar\" si desea elegir otra partición para la\n"
+"Haga clic sobre \"<- Anterior\" si desea elegir otra partición para la\n"
"instalación de su sistema operativo Mandrake Linux nuevo.\n"
"\n"
-"Haga clic sobre \"Avanzado\" si desea seleccionar las particiones en las\n"
+"Haga clic sobre \"Avanzada\" si desea seleccionar las particiones en las\n"
"que se buscarán bloques defectuosos en el disco."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"Next ->\" to reboot the system. The first thing\n"
@@ -2288,7 +2303,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2314,36 +2329,36 @@ msgid ""
"\"mformat a:\")"
msgstr ""
"Ya está. Ahora la instalación está completa y su sistema GNU/Linux está\n"
-"listo para ser utilizado. Simplemente haga clic sobre \"Aceptar\" para\n"
-"volver a arrancar el sistema. Puede iniciar GNU/Linux o Windows, cualquiera\n"
-"que prefiera (si está usando el arranque dual) tan pronto como su máquina\n"
-"haya vuelto a arrancar.\n"
+"listo para ser utilizado. Simplemente haga clic sobre \"Siguiente ->\" para\n"
+"volver a arrancar el sistema. Lo primero que debería ver tan pronto como su\n"
+"máquina haya finalizado sus pruebas de hardware es el menú del cargador de\n"
+"arranque, dándole la elección de cuál sistema operativo arrancar.\n"
"\n"
-"El botón \"Avanzadas\" (sólo en modo Experto) le muestra dos botones más\n"
-"para:\n"
+"El botón \"Avanzada\" le muestra dos botones más para:\n"
"\n"
" * \"Generar un disquete de instalación automática\": para crear un\n"
-"disquete de instalación que realizará una instalación completa sin la\n"
-"asistencia de un operador, similar a la instalación que ha configurado\n"
-"recién.\n"
+"disquete de instalación que realizará una instalación completa\n"
+"automáticamente, sin la asistencia de un operador, similar a la instalación\n"
+"que ha configurado recién.\n"
"\n"
" Note que hay dos opciones diferentes disponibles después de hacer clic\n"
"sobre el botón:\n"
"\n"
-" * \"Reproducir\" . Esta es una instalación parcialmente automatizada ya\n"
-"que la etapa de particionado (y sólo esta etapa) permanece interactiva.\n"
+" * \"Reproducir\" . Esta es una instalación parcialmente automatizada.\n"
+"La etapa de particionado es el único procedimiento interactivo.\n"
"\n"
" * \"Automatizada\" . Instalación completamente automatizada: el disco\n"
"rígido se sobreescribe por completo, y se pierden todos los datos.\n"
"\n"
" Esta característica es muy útil cuando se instala una cantidad grande de\n"
-"máquinas similares. Vea la sección Auto install (en inglés) en nuestro\n"
-"sitio web.\n"
+"máquinas similares. Consulte la sección Auto install (en inglés) en nuestro\n"
+"sitio web para más información.\n"
"\n"
-" * \"Guardar selección de paquetes\"(*): guarda la selección de paquetes\n"
-"como se hizo con anterioridad. Luego, cuando haga otra instalación, inserte\n"
-"el disquete en la disquetera y ejecute la instalación yendo a la pantalla\n"
-"de ayuda con [F1], e ingrese >>linux defcfg=\"floppy\"<<.\n"
+" * \"Guardar selección de paquetes\"(*): guarda una lista de los paquetes\n"
+"seleccionados en esta instalación. Para usar esta selección con otra\n"
+"instalación, inserte el disquete en la disquetera y comience la\n"
+"instalación. En el prompt, presione la tecla [F1], y a continuación ingrese\n"
+">>linux defcfg=\"floppy\"<<.\n"
"\n"
"(*) Necesita un disquete formateado con FAT (para crear uno bajo GNU/Linux\n"
"teclee \"mformat a:\")"
@@ -2351,7 +2366,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"At this point, you need to decide where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -2382,7 +2397,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2407,13 +2422,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"Ahora necesita elegir el lugar de su disco rígido donde se instalará su\n"
"sistema operativo Mandrake Linux. Si su disco rígido está vacío o si un\n"
@@ -2422,51 +2437,42 @@ msgstr ""
"consiste en dividirlo lógicamente para crear espacio para instalar su\n"
"sistema Mandrake Linux nuevo.\n"
"\n"
-"Debido a que los efectos del particionado por lo general son irreversibles,\n"
-"el particionado puede ser intimidante y estresante si Usted es un usuario\n"
-"inexperto. Por fortuna, hay un asistente que simplifica este proceso. Antes\n"
-"de comenzar, por favor consulte el manual y tómese su tiempo.\n"
-"\n"
-"Si está corriendo la instalación en modo Experto, ingresará a DiskDrake, la\n"
-"herramienta de particionado de Mandrake Linux, que le permite un ajuste\n"
-"fino de sus particiones. Vea la sección DiskDrake en la \"Guía del\n"
-"Usuario\". Desde la interfaz de instalación, puede utilizar los asistentes\n"
-"como se describe aquí haciendo clic sobre el botón \"Asistente\" del\n"
-"diálogo.\n"
-"\n"
-"Si ya se han definido particiones, ya sea de una instalación previa o por\n"
-"medio de otra herramienta de particionado, simplemente seleccione esas para\n"
-"instalar su sistema Linux.\n"
+"Debido a que el proceso de particionado de un disco rígido por lo general\n"
+"es irreversible y puede llevar a pérdida de datos si ya hay un sistema\n"
+"operativo instalado en el disco, el particionado puede ser intimidante y\n"
+"estresante si Usted es un usuario inexperto. Por fortuna, DrakX incluye un\n"
+"asistente que simplifica este proceso. Antes de continuar con este paso,\n"
+"por favor lea el resto de esta sección y, por sobre todo, tómese su tiempo.\n"
"\n"
-"Si no hay particiones definidas, necesitará crearlas usando el asistente.\n"
"Dependiendo de la configuración de su disco rígido, están disponibles\n"
"varias opciones:\n"
"\n"
" * \"Usar espacio libre\": esta opción simplemente llevará a un\n"
-"particionado automático de su(s) disco(s) vacío(s). No se le pedirán más\n"
-"detalles ni se le formularán más preguntas.\n"
+"particionado automático de su(s) disco(s) vacío(s). Si elige esta opción,\n"
+"no se le pedirán más detalles ni se le formularán más preguntas.\n"
"\n"
" * \"Usar partición existente\": el asistente ha detectado una o más\n"
"particiones Linux existentes en su disco rígido. Si desea utilizarlas,\n"
-"elija esta opción. Si lo hace se le pedirá que elija los puntos de montaje\n"
+"elija esta opción. Entonces se le pedirá que elija los puntos de montaje\n"
"asociados a cada una de las particiones. Los puntos de montaje legados se\n"
"seleccionan automáticamente, y por lo general debería mantenerlos.\n"
"\n"
" * \"Usar el espacio libre en la partición Windows\": si Microsoft Windows\n"
"está instalado en su disco rígido y ocupa todo el espacio disponible en el\n"
"mismo, Usted tiene que liberar espacio para los datos de Linux. Para\n"
-"hacerlo, puede borrar su partición y datos Microsoft Windows (vea las\n"
-"soluciones \"Borrar el disco completo\" o \"Modo experto\") o cambie el\n"
-"tamaño de su partición Windows. El cambio de tamaño se puede realizar sin\n"
-"la pérdida de datos, siempre y cuando Usted ha desfragmentado con\n"
-"anterioridad la partición Windows. También se recomienda hacer una copia de\n"
-"respaldo de sus datos.. Se recomienda esta solución si desea utilizar tanto\n"
-"Mandrake Linux como Microsoft Windows en la misma computadora.\n"
+"hacerlo, puede borrar su partición y datos Microsoft Windows (vea la\n"
+"solución \"Borrar el disco completo\") o cambie el tamaño de su partición\n"
+"Microsoft Windows FAT. El cambio de tamaño se puede realizar sin la pérdida\n"
+"de datos, siempre y cuando Usted haya desfragmentado con anterioridad la\n"
+"partición Windows y que la misma utiliza el formato FAT. Es altamente\n"
+"recomendable hacer una copia de respaldo de sus datos.. Se recomienda usar\n"
+"esta solución si desea utilizar tanto Mandrake Linux como Microsoft Windows\n"
+"en la misma computadora.\n"
"\n"
" Antes de elegir esta opción, por favor comprenda que después de este\n"
"procedimiento, el tamaño de su partición Microsoft Windows será más pequeño\n"
-"que ahora. Tendrá menos espacio bajo Microsoft Windows para almacenar sus\n"
-"datos o instalar software nuevo.\n"
+"que cuando comenzó. Tendrá menos espacio bajo Microsoft Windows para\n"
+"almacenar sus datos o instalar software nuevo.\n"
"\n"
" * \"Borrar el disco entero\": si desea borrar todos los datos y todas las\n"
"particiones presentes en su disco rígido y reemplazarlas con su nuevo\n"
@@ -2475,75 +2481,24 @@ msgstr ""
"\n"
" !! Si elige esta opción, se perderán todos los datos en su disco. !!\n"
"\n"
-" * \"Quitar Windows\": simplemente esto borrará todo en el disco y\n"
+" * \"Quitar Windows\": esto simplemente borrará todo en el disco y\n"
"comenzará particionando todo desde cero. Se perderán todos los datos en su\n"
"disco.\n"
"\n"
" !! Si elige esta opción, se perderán todos los datos en su disco. !!\n"
"\n"
-" * \"Modo experto\": elija esta opción si desea particionar manualmente su\n"
-"disco rígido. Tenga cuidado - esta es una elección potente pero peligrosa.\n"
-"Puede perder todos sus datos con facilidad. Por lo tanto, no elija esta\n"
-"opción a menos que sepa lo que está haciendo. Para saber como utilizar el\n"
-"utilitario DiskDrake que se utiliza aquí, consulte la sección \"Administrar\n"
-"sus particiones\" de la \"\"Guía del Usuario\"\"."
+" * \"Particionamiento personalizado\": elija esta opción si desea\n"
+"particionar manualmente su disco rígido. Tenga cuidado - esta es una\n"
+"elección potente pero peligrosa y puede perder todos sus datos con\n"
+"facilidad. Esa es la razón por la cual esta opción realmente sólo se\n"
+"recomienda si ha hecho algo como esto antes y tiene algo de experiencia.\n"
+"Para más instrucciones acerca de la utilización de el utilitario DiskDrake,\n"
+"consulte la sección \"Administrar sus particiones\" de la \"Guía de\n"
+"Comienzo\"."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"El CD-ROM de Mandrake Linux tiene un modo de rescate incorporado. Usted\n"
-"puede acceder al mismo arrancando desde el CD-ROM, presionando la tecla\n"
-">>F1<< durante el arranque y tecleando >>rescue<< en el prompt. Pero en\n"
-"caso que su computadora no pueda arrancar desde el CD-ROM, Usted debería\n"
-"recurrir a este paso al menos en dos situaciones:\n"
-"\n"
-" * cuando instala el cargador de arranque, DrakX sobreescribirá el sector\n"
-"de arranque (MBR) de su disco principal (a menos que esté utilizando otro\n"
-"administrador de arranque) de forma tal que pueda iniciar o bien Windows o\n"
-"bien GNU/Linux (asumiendo que tiene Windows en su sistema). Si necesita\n"
-"volver a instalar Windows, el proceso de instalación de Microsoft\n"
-"sobreescribirá el sector de arranque, y entonces ¡Usted no podrá iniciar\n"
-"GNU/Linux!\n"
-"\n"
-" * si surge un problema y Usted no puede iniciar GNU/Linux desde el disco\n"
-"rígido, este disquete será la única manera de iniciar GNU/Linux. El mismo\n"
-"contiene una buena cantidad de herramientas del sistema para restaurar un\n"
-"sistema que colapsó debido a una falla de energía, un error de tecleo\n"
-"infortunado, un error en una contraseña, o cualquier otro motivo.\n"
-"\n"
-"Si dice \"Sí\", se le pedirá que inserte un disquete dentro de la\n"
-"disquetera. El disquete que inserte debe estar vacío o contener datos que\n"
-"no necesite. No tendrá que formatearlo ya que DrakX sobreescribirá el\n"
-"disquete por completo."
-
-#: ../../help.pm:1
#, c-format
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
@@ -2552,12 +2507,15 @@ msgid ""
"act as a server, or if you were not successful in getting the display\n"
"configured."
msgstr ""
-"Finalmente, se le preguntará si desea o no ver la interfaz gráfica al\n"
-"arranque. Note que esto se le preguntará incluso si eligió no probar la\n"
-"configuración. Obviamente, deseará contestar \"No\" si su máquina va a\n"
-"actuar como servidor, o si no tuvo éxito en la configuración de\n"
-"la pantalla."
+"Opciones\n"
+"\n"
+" Aquí puede elegir si desea que su máquina cambie automáticamente a la\n"
+"interfaz gráfica al arrancar. Obviamente, querrá marcar \"No\" si su\n"
+"sistema actuará como servidor, o si no tuvo éxito en la configuración de su\n"
+"pantalla."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -2565,10 +2523,12 @@ msgid ""
"without 3D acceleration, you are then proposed to choose the server that\n"
"best suits your needs."
msgstr ""
-"En caso que estén disponibles servidores diferentes para su tarjeta, con o\n"
-"sin aceleración de 3D, entonces se le propone elegir el servidor que\n"
-"mejor se ajuste a sus necesidades."
+"En caso que estén disponibles diferentes servidores para su tarjeta, con o\n"
+"sin aceleración de 3D, entonces se le propone elegir el servidor que mejor\n"
+"satisface sus necesidades."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -2581,12 +2541,14 @@ msgid ""
msgstr ""
"Resolución\n"
"\n"
-" Aquí puede elegir resoluciones y profundidades de color entre las "
-"disponibles\n"
-"para su hardware. Elija la que mejor se ajuste a sus necesidades (la podrá\n"
-"cambiar luego de la instalación) En el monitor se muestra un ejemplo de la\n"
-"configuración elegida."
+" Aquí puede elegir las resoluciones y profundidades de color entre\n"
+"aquellas disponibles para su hardware. Elija la que mejor se ajuste a sus\n"
+"necesidades (tenga presente que eso se puede cambiar luego de la\n"
+"instalación) En el monitor se muestra un ejemplo de la configuración\n"
+"elegida."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -2598,10 +2560,12 @@ msgid ""
msgstr ""
"Monitor\n"
"\n"
-" El instalador puede detectar y configurar automáticamente el monitor\n"
-"conectado a su máquina. Si no es el caso, puede elegir en esta lista\n"
-"el monitor que realmente posee."
+" Normalmente el instalador puede detectar y configurar automáticamente el\n"
+"monitor conectado a su máquina. Si este no es el caso, en esta lista puede\n"
+"elegir el monitor que realmente posee."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -2657,7 +2621,62 @@ msgid ""
"\"No\" if your machine is to act as a server, or if you were not successful\n"
"in getting the display configured."
msgstr ""
+"X (por \"X Window System\") es el corazón de la interfaz gráfica de\n"
+"GNU/Linux en el que se apoyan todos los entornos gráficos (KDE, GNOME,\n"
+"AfterStep, WindowMaker, etc.) que se incluyen con Mandrake Linux.\n"
+"\n"
+"Se le presentará la lista de parámetros diferentes a cambiar para obtener\n"
+"una presentación gráfica óptima: Tarjeta gráfica\n"
+"\n"
+" Normalmente el instalador puede detectar y configurar automáticamente la\n"
+"tarjeta gráfica instalada en su máquina. Si este no es el caso, en esta\n"
+"lista puede elegir la tarjeta que realmente posee.\n"
+"\n"
+" En caso que estén disponibles diferentes servidores para su tarjeta, con\n"
+"o sin aceleración de 3D, entonces se le propone elegir el servidor que\n"
+"mejor satisface sus necesidades.\n"
+"\n"
+"\n"
+"\n"
+"Monitor\n"
+"\n"
+" Normalmente el instalador puede detectar y configurar automáticamente el\n"
+"monitor conectado a su máquina. Si este no es el caso, en esta lista puede\n"
+"elegir el monitor que realmente posee.\n"
+"\n"
+"\n"
+"\n"
+"Resolución\n"
+"\n"
+" Aquí puede elegir las resoluciones y profundidades de color entre\n"
+"aquellas disponibles para su hardware. Elija la que mejor se ajuste a sus\n"
+"necesidades (tenga presente que eso se puede cambiar luego de la\n"
+"instalación) En el monitor se muestra un ejemplo de la configuración\n"
+"elegida.\n"
+"\n"
+"\n"
+"\n"
+"Probar\n"
+"\n"
+" El sistema intentará abrir una pantalla gráfica con la resolución\n"
+"deseada. Si puede ver el mensaje durante la prueba, y responde \"Sí\",\n"
+"entonces DrakX continuará con el paso siguiente. Si no puede ver el\n"
+"mensaje, significa que alguna parte de la configuración detectada\n"
+"automáticamente no era la correcta y la prueba terminará automáticamente\n"
+"luego de 12 segundos, restaurando el menú. Cambie los ajustes hasta obtener\n"
+"una pantalla correcta.\n"
+"\n"
+"\n"
+"\n"
+"Opciones\n"
+"\n"
+" Aquí puede elegir si desea que su máquina cambie automáticamente a la\n"
+"interfaz gráfica al arrancar. Obviamente, querrá marcar \"No\" si su\n"
+"sistema actuará como servidor, o si no tuvo éxito en la configuración de su\n"
+"pantalla."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -2671,11 +2690,20 @@ msgid ""
"without 3D acceleration, you are then proposed to choose the server that\n"
"best suits your needs."
msgstr ""
+"Tarjeta gráfica\n"
+"\n"
+" Normalmente el instalador puede detectar y configurar automáticamente la\n"
+"tarjeta gráfica instalada en su máquina. Si este no es el caso, en esta\n"
+"lista puede elegir la tarjeta que realmente posee.\n"
+"\n"
+" En caso que estén disponibles diferentes servidores para su tarjeta, con\n"
+"o sin aceleración de 3D, entonces se le propone elegir el servidor que\n"
+"mejor satisface sus necesidades."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
"local time according to the time zone you selected. If the clock on your\n"
@@ -2693,24 +2721,24 @@ msgstr ""
"GNU/Linux administra la hora en GMT (\"Greenwich Mean Time\", Hora del\n"
"Meridiano de Greenwich) y la traduce a la hora local de acuerdo al huso\n"
"horario que Usted seleccionó. Sin embargo, es posible desactivar esto\n"
-"quitando la marca de la casilla \"Reloj interno puesto a GMT\" de forma tal\n"
-"que el reloj de hardware es el mismo que el del sistema. Esto es útil\n"
-"cuando la máquina alberga otro sistema operativo como Windows.\n"
+"quitando la marca de la casilla \"Reloj interno puesto a GMT\", lo que hará\n"
+"que GNU/Linux sepa que el reloj del sistema y el reloj de hardware están en\n"
+"el mismo huso horario. Esto es útil cuando la máquina también alberga otro\n"
+"sistema operativo como Windows.\n"
"\n"
"La opción \"Sincronización automática de hora (usando NTP)\" regulará\n"
"automáticamente el reloj conectándose a un servidor remoto de la hora en la\n"
-"Internet. Elija un servidor ubicado cerca suyo en la lista que se presenta.\n"
-"Por supuesto debe tener una conexión con la Internet funcionando para que\n"
-"esta característica funcione. La misma instalará en su máquina un servidor\n"
-"de la hora que, opcionalmente, puede ser utilizado por otras máquinas en su\n"
-"red local."
+"Internet. Para que esta característica funcione, debe tener una conexión\n"
+"con la Internet funcionando. En realidad, esta opción instala un servidor\n"
+"de la hora que puede ser utilizado por otras máquinas en su red local."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2726,16 +2754,16 @@ msgid ""
"enabled on a server. In general, select only the services you really need.\n"
"!!"
msgstr ""
-"Ahora puede elegir los servicios que desea iniciar durante el arranque.\n"
+"Este diálogo se usa para elegir los servicios que desea iniciar durante el\n"
+"arranque.\n"
"\n"
-"Aquí se presentan todos los servicios disponibles con la instalación\n"
-"corriente. Debe revisarlos con cuidado y quitar la marca de aquellos que no\n"
-"siempre son necesarios al arrancar.\n"
+"DrakX listará todos los servicios disponibles con la instalación corriente.\n"
+"Debe revisarlos con cuidado y quitar la marca de aquellos que no siempre\n"
+"son necesarios al arrancar.\n"
"\n"
-"Puede obtener un pequeño texto explicativo acerca de un servicio\n"
-"seleccionando un servicio específico. Sin embargo, si no está seguro si un\n"
-"servicio es útil o no, es más seguro dejar el comportamiento\n"
-"predeterminado.\n"
+"Cuando se selecciona un servicio obtendrá un pequeño texto explicativo\n"
+"acerca del mismo. Sin embargo, si no está seguro si un servicio es útil o\n"
+"no, es más seguro dejar el comportamiento predeterminado.\n"
"\n"
"!! Tenga mucho cuidado en esta etapa si pretende usar su máquina como un\n"
"servidor: probablemente no deseará arrancar servicios que no necesita. Por\n"
@@ -2743,24 +2771,26 @@ msgstr ""
"en un servidor. En general, seleccione sólo aquellos servicios que\n"
"realmente necesita. !!"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
msgstr ""
-"\"Impresora\": haciendo clic sobre el botón \"Sin impresora\" abrirá el "
-"asistente de configuración de la impresora. Consulte el capítulo "
-"correspondiente de la ``Guía de Comienzo'' para más información acerca de "
-"cómo configurar una impresora nueva. La interfaz presentada aquí es similar "
-"a la utilizada durante la instalación."
+"\"Impresora\": al hacer clic sobre el botón \"Configurar\" se abrirá el\n"
+"asistente de configuración de la impresora. Consulte el capítulo\n"
+"correspondiente de la \"Guía de Comienzo\" para más información sobre cómo\n"
+"configurar una impresora nueva. La interfaz presentada allí es similar a la\n"
+"utilizada durante la instalación."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"You will now set up your Internet/network connection. If you wish to\n"
"connect your computer to the Internet or to a local network, click \"Next\n"
@@ -2783,32 +2813,31 @@ msgid ""
msgstr ""
"Ahora se le propone configurar su conexión de red/Internet. Si desea\n"
"conectar su computadora a la Internet o a una red de área local, haga clic\n"
-"sobre \"Aceptar\". Se lanzará la detección automática de dispositivos de\n"
-"red y módems. Si esta detección falla, quite la marca de la casilla \"Usar\n"
-"detección automática\" la próxima vez. También puede elegir no configurar\n"
-"la red, o hacerlo más tarde; en ese caso simplemente haga clic sobre el\n"
-"botón \"Cancelar\".\n"
-"\n"
-"Los tipos de conexión disponibles son: módem tradicional, módem RDSI\n"
-"(ISDN), conexión ADSL, cable módem, y finalmente una simple conexión LAN\n"
-"(Ethernet).\n"
-"\n"
-"Aquí no entraremos en detalle en cada configuración. Simplemente debe\n"
-"asegurarse que su Proveedor de Servicios de Internet o su administrador del\n"
-"sistema le proporcionaron todos los parámetros de configuración.\n"
-"\n"
-"Puede consultar el capítulo de \"Guía del Usuario\" sobre las conexiones a\n"
+"sobre \"Siguiente ->\". Mandrake Linux intentará detectar automáticamente\n"
+"los dispositivos de red y módems. Si esta detección falla, quite la marca\n"
+"de la casilla \"Usar detección automática\". También puede elegir no\n"
+"configurar la red, o hacerlo más tarde, en cuyo caso hacer clic sobre el\n"
+"botón \"Cancelar\" lo llevará al paso siguiente.\n"
+"\n"
+"Cuando configura su red, los tipos de conexión disponibles son: módem\n"
+"tradicional, módem RDSI (ISDN), conexión ADSL, cable módem, y finalmente\n"
+"una simple conexión LAN (Ethernet).\n"
+"\n"
+"Aquí no entraremos en detalle en cada opción de configuración - simplemente\n"
+"debe asegurarse que su Proveedor de Servicios de Internet o su\n"
+"administrador del sistema le proporcionaron todos los parámetros de\n"
+"configuración, tales como la dirección IP, la pasarela predeterminada, los\n"
+"servidores DNS, etc.\n"
+"\n"
+"Puede consultar el capítulo de \"Guía de Comienzo\" sobre las conexiones a\n"
"la Internet para detalles acerca de la configuración, o simplemente esperar\n"
-"hasta que su sistema esté instalado y usar el programa que se describe aquí\n"
-"para configurar su conexión.\n"
-"\n"
-"Si desea configurar la red más tarde, luego de la instalación, o si ha\n"
-"finalizado de configurar su conexión de red, haga clic sobre \"Cancelar\"."
+"hasta que su sistema esté instalado y usar el programa que se describe allí\n"
+"para configurar su conexión."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"If you told the installer that you wanted to individually select packages,\n"
"it will present a tree containing all packages classified by groups and\n"
@@ -2844,49 +2873,50 @@ msgid ""
"end of another installation. See the second tip of last step on how to\n"
"create such a floppy."
msgstr ""
-"Finalmente, dependiendo de si Usted elige seleccionar los paquetes\n"
-"individuales o no, se le presentará un árbol que contiene todos los\n"
-"paquetes clasificados por grupos y sub-grupos. Mientras navega por el\n"
-"árbol, puede seleccionar grupos enteros, sub-grupos, o simplemente\n"
-"paquetes.\n"
+"Si le dijo al instalador que deseaba seleccionar los paquetes individuales,\n"
+"el mismo presentará un árbol que contiene todos los paquetes clasificados\n"
+"por grupos y subgrupos. Mientras navega por el árbol, puede seleccionar\n"
+"grupos enteros, subgrupos, o paquetes individuales.\n"
"\n"
"Tan pronto como selecciona un paquete en el árbol, aparece una descripción\n"
-"del mismo sobre la derecha. Cuando ha finalizado con su selección, haga\n"
-"clic sobre el botón \"Instalar\" que lanzará el proceso de instalación.\n"
-"Dependiendo de la velocidad de su hardware y de la cantidad de paquetes que\n"
-"se deben instalar, el proceso puede tardar un rato en completarse. En la\n"
-"pantalla se muestra una estimación del tiempo necesario para completar la\n"
-"instalación para ayudarlo a considerar si tiene tiempo suficiente par\n"
-"disfrutar una taza de café.\n"
-"\n"
-"!! Si ha sido seleccionado un paquete de servidor ya sea intencionalmente o\n"
-"porque era parte de un grupo completo, se le pedirá que confirme que\n"
-"realmente desea que se instalen esos servidores. Bajo Mandrake Linux,\n"
-"cualquier servidor instalado se inicia de manera predeterminada al momento\n"
-"del arranque. Aunque estos son seguros y no tienen problemas conocidos al\n"
-"momento en que se publicó la distribución, puede ocurrir que más tarde se\n"
-"descubran vulnerabilidades en la seguridad. En particular, si no sabe que\n"
-"es lo que se supone que hace un servicio o la razón por la cual se está\n"
-"instalando, entonces haga clic sobre \"No\". Si hace clic sobre \"Sí\" se\n"
-"instalarán todos los servicios listados y de manera predeterminada los\n"
-"mismos arrancarán automáticamente. !!\n"
+"del mismo sobre la derecha que le permite conocer el propósito del paquete.\n"
+"\n"
+"Es muy probable que la gran mayoría de las descripciones de los paquetes\n"
+"estén en inglés.\n"
+"\n"
+"!! Si ha sido seleccionado un paquete de servidor ya sea porque Usted\n"
+"seleccionó específicamente el paquete individual o porque el mismo era\n"
+"parte de un grupo de paquetes, se le pedirá que confirme que realmente\n"
+"desea que se instalen esos servidores. Bajo Mandrake Linux, cualquier\n"
+"servidor instalado se inicia de manera predeterminada al momento del\n"
+"arranque. Aunque estos son seguros y no tienen problemas conocidos al\n"
+"momento en que se publicó la distribución, es posible que se descubran\n"
+"vulnerabilidades en la seguridad luego que se terminó con esta versión de\n"
+"Mandrake Linux. En particular, si no sabe que es lo que se supone que hace\n"
+"un servicio o la razón por la cual se está instalando, entonces haga clic\n"
+"sobre \"No\". Si hace clic sobre \"Sí\" se instalarán todos los servicios\n"
+"listados y de manera predeterminada los mismos arrancarán automáticamente.\n"
+"!!\n"
"\n"
"La opción \"Dependencias automáticas\" simplemente deshabilita el diálogo\n"
-"de advertencia cuando el instalador selecciona automáticamente un paquete.\n"
-"Esto ocurre porque se determina que es necesario para satisfacer una\n"
-"dependencia con otro paquete para poder completar la instalación\n"
-"satisfactoriamente.\n"
+"de advertencia que aparece cuando el instalador selecciona automáticamente\n"
+"un paquete para resolver un problema de dependencias. Algunos paquetes\n"
+"tienen relaciones entre ellos tales que la instalación de un paquete\n"
+"necesita que algún otro programa ya esté instalado. El instalador puede\n"
+"determinar qué paquetes se necesitan para satisfacer una dependencia para\n"
+"completar la instalación de manera satisfactoria.\n"
"\n"
"El pequeño icono del disquete al final de la lista le permite cargar la\n"
-"lista de paquetes elegida durante una instalación previa. Haga clic sobre\n"
-"este icono y se le pedirá que inserte un disquete creado con anterioridad\n"
-"al final de otra instalación. Vea el segundo consejo del último paso para\n"
-"información sobre como crear dicho disquete."
+"lista de paquetes elegida durante una instalación previa. Esto es útil si\n"
+"Usted tiene una cantidad de máquinas que desea configurar de manera\n"
+"idéntica. Haga clic sobre este icono y se le pedirá que inserte un disquete\n"
+"creado con anterioridad al final de otra instalación. Vea el segundo\n"
+"consejo del último paso para información sobre como crear dicho disquete."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"It is now time to specify which programs you wish to install on your\n"
"system. There are thousands of packages available for Mandrake Linux, and\n"
@@ -2940,30 +2970,31 @@ msgid ""
"updating an existing system."
msgstr ""
"Ahora es el momento de especificar los programas que desea instalar en su\n"
-"sistema. Hay miles de paquetes disponibles para Mandrake Linux, y no se\n"
-"supone que los conozca a todos de memoria.\n"
-"\n"
-"Si está realizando una instalación estándar desde un CD-ROM, primero se le\n"
-"pedirá que especifique los CDs que tiene (sólo en modo Experto). Verifique\n"
-"las etiquetas de los CDs y marque las casillas que corresponden a los que\n"
-"tiene disponibles para la instalación. Haga clic sobre \"Aceptar\" cuando\n"
-"esté listo para continuar.\n"
+"sistema. Hay miles de paquetes disponibles para Mandrake Linux, y para\n"
+"hacer más simple el manejo de los paquetes, los mismos se han puesto en\n"
+"grupos de aplicaciones similares.\n"
"\n"
"Los paquetes se ordenan en grupos que corresponden a un uso particular de\n"
-"su máquina. Los grupos en sí mismos están clasificados en cuatro secciones:\n"
+"su máquina. Mandrake Linux tiene cuatro instalaciones predefinidas\n"
+"disponibles. Puede pensar en estas clases de instalación como contenedores\n"
+"para los distintos paquetes. Puede mezclar y hacer coincidir aplicaciones\n"
+"de varios contenedores, por lo que una instalación de \"Estación de\n"
+"trabajo\" puede tener instaladas aplicaciones del contenedor\n"
+"\"Desarrollo\".\n"
"\n"
-" * \"Estación de trabajo\": si planea utilizar su máquina como una estación\n"
-"de trabajo, seleccione uno o más grupos correspondientes.\n"
+" * \"Estación de trabajo\": si planifica utilizar su máquina como una\n"
+"estación de trabajo, seleccione una o más aplicaciones del contenedor\n"
+"estación de trabajo.\n"
"\n"
-" * \"Desarrollo\": si la máquina se utilizará para programación, elija\n"
-"el(los) grupo(s) deseado(s).\n"
+" * \"Desarrollo\": si la máquina se utilizará para programación, elija los\n"
+"paquetes apropiados del contenedor.\n"
"\n"
-" * \"Servidor\": finalmente, si se pretende usar la máquina como un\n"
-"servidor aquí puede seleccionar los servicios más comunes que desea que se\n"
-"instalen en la misma.\n"
+" * \"Servidor\": si pretende usar la máquina como un servidor, seleccione\n"
+"cuáles de los servicios más comunes desea instalar en su máquina.\n"
"\n"
-" * \"Entorno gráfico\": seleccione aquí su entorno gráfico preferido. Si\n"
-"desea tener una estación de trabajo gráfica, ¡seleccione al menos uno!\n"
+" * \"Entorno gráfico\": aquí es donde seleccionará su entorno gráfico\n"
+"preferido. Si desea tener una estación de trabajo gráfica, debe seleccionar\n"
+"al menos uno.\n"
"\n"
"Si mueve el cursor del ratón sobre el nombre de un grupo se mostrará un\n"
"pequeño texto explicativo acerca de ese grupo. Si deselecciona todos los\n"
@@ -2972,17 +3003,18 @@ msgstr ""
"una instalación mínima:\n"
"\n"
" * \"Con X\": instala la menor cantidad de paquetes posible para tener un\n"
-"escritorio gráfico que funcione;\n"
+"escritorio gráfico que funcione.\n"
"\n"
" * \"Con documentación básica\": instala el sistema base más algunos\n"
"utilitarios básicos y la documentación de los mismos. Esta instalación es\n"
-"adecuada para configurar un servidor;\n"
+"adecuada para configurar un servidor.\n"
"\n"
" * \"Instalación realmente mínima\": instalará el mínimo necesario estricto\n"
-"para obtener un sistema Linux que funciona, sólo en línea de comandos. Esta\n"
-"instalación ocupa alrededor de 65Mb.\n"
+"para obtener un sistema Linux que funciona. Con esta instalación sólo\n"
+"tendrá una interfaz de línea de comandos. Esta instalación ocupa alrededor\n"
+"de 65 MB.\n"
"\n"
-"Puede marcar la opción \"Selección por paquetes individuales\" que es útil\n"
+"Puede marcar la casilla \"Selección de paquetes individuales\" que es útil\n"
"si está familiarizado con los paquetes que se ofrecen o si desea tener un\n"
"control total sobre lo que se instalará.\n"
"\n"
@@ -2993,20 +3025,20 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
"knows if a selected package is located on another CD-ROM so it will eject\n"
"the current CD and ask you to insert the correct CD as required."
msgstr ""
"La instalación de Mandrake Linux se divide en varios CD-ROMs. DrakX sabe si\n"
-"un paquete seleccionado se encuentra en otro CD y expulsará el CD corriente\n"
-"y le pedirá que inserte uno diferente cuando sea necesario."
+"un paquete seleccionado se encuentra en otro CD por lo que expulsará el CD\n"
+"corriente y le pedirá que inserte el CD correcto cuando sea necesario."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Here are Listed the existing Linux partitions detected on your hard drive.\n"
"You can keep the choices made by the wizard, since they are good for most\n"
@@ -3038,14 +3070,14 @@ msgid ""
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc."
msgstr ""
-"Arriba se listan las particiones Linux existentes que se detectaron en su\n"
-"disco rígido. Puede mantener las elecciones hechas por el asistente, las\n"
-"mismas son buenas para las instalaciones más comunes. Si hace cambios, al\n"
-"menos debe definir una partición raíz (\"/\"). No elija una partición muy\n"
-"pequeña o no podrá instalar software suficiente. Si desea almacenar sus\n"
+"Aquí se listan las particiones Linux existentes que se detectaron en su\n"
+"disco rígido. Puede mantener las elecciones hechas por el asistente, ya que\n"
+"las mismas son buenas para las instalaciones más comunes. Si hace cambios,\n"
+"al menos debe definir una partición raíz (\"/\"). No elija una partición\n"
+"muy pequeña o no podrá instalar software suficiente. Si desea almacenar sus\n"
"datos en una partición separada, también puede necesitar crear una\n"
"partición para \"/home\" (sólo es posible si tiene más de una partición\n"
-"Linux disponible).\n"
+"Linux disponible)\n"
"\n"
"Cada partición se lista como sigue: \"Nombre\", \"Capacidad\".\n"
"\n"
@@ -3076,7 +3108,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"GNU/Linux is a multi-user system, meaning each user can have their own\n"
"preferences, their own files and so on. You can read the ``Starter Guide''\n"
@@ -3118,38 +3150,50 @@ msgid ""
msgstr ""
"GNU/Linux es un sistema multiusuario, y esto significa que cada usuario\n"
"puede tener sus preferencias propias, sus archivos propios, y así\n"
-"sucesivamente. Puede leer la \"Guía del Usuario\" para aprender más. Pero,\n"
-"a diferencia de \"root\", que es el administrador, los usuarios que agregue\n"
-"aquí no podrán cambiar nada excepto su configuración y sus archivos\n"
-"propios. Tendrá que crear al menos un usuario no privilegiado para Usted\n"
-"mismo. Esa cuenta es donde debería conectarse para el uso diario. Aunque es\n"
-"muy práctico ingresar como \"root\" diariamente, ¡también puede ser muy\n"
-"peligroso! El error más leve podría significar que su sistema deje de\n"
+"sucesivamente. Puede leer la \"Guía de Comienzo\" para aprender más. Pero,\n"
+"a diferencia de \"root\", que es el administrador del sistema, los usuarios\n"
+"que agregue en este punto no estarán autorizados a cambiar nada excepto su\n"
+"configuración y sus archivos propios, protegiendo al sistema contra cambios\n"
+"no intencionales o maliciosos que pueden impactar al sistema como un todo.\n"
+"Tendrá que crear al menos un usuario no privilegiado para Usted mismo - esa\n"
+"cuenta es la que debería utilizar para el uso rutinario, diario. Aunque es\n"
+"muy práctico ingresar como \"root\" para cualquier cosa y de todo, ¡también\n"
+"puede ser muy peligroso! Un error podría significar que su sistema deje de\n"
"funcionar. Si comete un error serio como usuario no privilegiado, sólo\n"
-"puede llegar a perder algo de información, pero no todo el sistema.\n"
-"\n"
-"Primero tendrá que ingresar su nombre real. Esto no es obligatorio, por\n"
-"supuesto - ya que, en realidad, puede ingresar lo que desee. DrakX tomará\n"
-"entonces la primer palabra que ingresó y la copiará al campo \"Nombre de\n"
-"usuario\". Este es el nombre que este usuario en particular usará para\n"
-"ingresar al sistema. Lo puede cambiar. Luego tendrá que ingresar una\n"
-"contraseña aquí. La contraseña de un usuario no privilegiado (regular) no\n"
-"es tan crucial como la de \"root\" desde el punto de vista de la seguridad,\n"
-"pero esto no es razón alguna para obviarla: después de todo, son sus\n"
-"archivos los que están en riesgo.\n"
-"\n"
-"Si hace clic sobre \"Aceptar usuario\", entonces puede agregar tantos como\n"
-"desee. Agregue un usuario para cada uno de sus amigos: por ejemplo su padre\n"
-"o su hermana. Cuando haya terminado de agregar todos los usuarios que\n"
-"desee, seleccione \"Hecho\".\n"
-"\n"
-"Hacer clic sobre el botón \"Avanzadas\" le permite cambiar el \"shell\"\n"
-"predeterminado para ese usuario (bash por defecto)."
+"puede llegar a perder algo de información, pero no afectar a todo el\n"
+"sistema.\n"
+"\n"
+"El primer campo le pide un nombre real. Por supuesto, esto no es\n"
+"obligatorio - en realidad, puede ingresar lo que desee. DrakX usará la\n"
+"primer palabra que ingresó y la copiará al campo \"Nombre de usuario\", que\n"
+"es el nombre que este usuario en particular usará para ingresar al sistema.\n"
+"Si lo desea, puede omitir lo predeterminado y cambiar el nombre de usuario.\n"
+"El próximo paso es ingresar una contraseña. La contraseña de un usuario no\n"
+"privilegiado (regular) no es tan crucial como la de \"root\" desde el punto\n"
+"de vista de la seguridad, pero esto no es razón alguna para obviarla o\n"
+"hacerla muy simple: después de todo, son sus archivos los que podrían estar\n"
+"en peligro.\n"
+"\n"
+"Una vez que hace clic sobre \"Aceptar usuario\", puede agregar otros\n"
+"usuarios. Agregue un usuario para cada uno de sus amigos: por ejemplo su\n"
+"padre o su hermana. Cuando haya terminado de agregar todos los usuarios que\n"
+"desee, haga clic sobre \"Siguiente ->\".\n"
+"\n"
+"Hacer clic sobre el botón \"Avanzada\" le permite cambiar el \"shell\"\n"
+"predeterminado para ese usuario (bash, por defecto)\n"
+"\n"
+"Cuando haya finalizado de añadir todos los usuarios, se le propone elegir\n"
+"un usuario para conectarse automáticamente en el sistema cuando arranca la\n"
+"computadora. Si está interesado en esa característica (y no le importa\n"
+"mucho la seguridad local), elija el usuario y administrador de ventanas\n"
+"deseado, luego haga clic sobre \"Siguiente ->\". Si no está interesado en\n"
+"esta característica, quite la marca de la casilla \"¿Desea utilizar esta\n"
+"característica?\"."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Before continuing, you should carefully read the terms of the license. It\n"
"covers the entire Mandrake Linux distribution. If you do agree with all the\n"
@@ -3157,10 +3201,9 @@ msgid ""
"computer."
msgstr ""
"Antes de continuar, debería leer cuidadosamente los términos de la\n"
-"licencia. La misma cubre a toda la distribución Mandrake Linux, y si Usted\n"
-"no está de acuerdo con todos los términos en ella, haga clic sobre el botón\n"
-"\"Rechazar\". Esto terminará la instalación de inmediato. Para continuar\n"
-"con la instalación, haga clic sobre el botón \"Aceptar\"."
+"licencia. La misma cubre a toda la distribución Mandrake Linux. Si acepta\n"
+"con todos los términos en la misma, marque la casilla \"Aceptar\". Si no,\n"
+"simplemente apague su computadora."
#: ../../install2.pm:1
#, c-format
@@ -3356,6 +3399,9 @@ msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Windows(TM)"
msgstr ""
+"Para asegurar la integridad de los datos luego de cambiar el tamaño a\n"
+"las particiones, se pueden ejecutar verificaciones de los sist. de archivos\n"
+"la próxima vez que arranque en Windows(TM)"
#: ../../install_interactive.pm:1
#, c-format
@@ -4388,6 +4434,12 @@ msgstr "Servicios"
msgid "System"
msgstr "Sistema"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "%s on %s"
+msgstr "%s en %s"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
@@ -4528,14 +4580,14 @@ msgid "Which is your timezone?"
msgstr "¿Cuál es su huso horario?"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Would you like to try again?"
-msgstr "¿Desea configurar la impresión?"
+msgstr "¿Desea intentar nuevamente?"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Unable to contact mirror %s"
-msgstr "No se puede hacer fork: %s"
+msgstr "No se puede contactar al sitio de réplica %s"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4835,6 +4887,11 @@ msgid "Please choose your type of mouse."
msgstr "Por favor, seleccione el tipo de su ratón."
#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Clave de cifrado"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr "Actualizar %s"
@@ -8182,7 +8239,7 @@ msgstr "Intercambio"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Journalised FS"
-msgstr "Sistema de. archivos. con journal"
+msgstr "S. de a. con journal"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
@@ -8983,9 +9040,9 @@ msgid "SCSI controllers"
msgstr "Controladores SCSI"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Firewire controllers"
-msgstr "Controladores USB"
+msgstr "Controladores Firewire"
#: ../../harddrake/data.pm:1
#, c-format
@@ -9760,11 +9817,6 @@ msgstr "Configurando la red"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "no se encontró ninguna tarjeta de red"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
@@ -10413,9 +10465,9 @@ msgid "Start at boot"
msgstr "Iniciar al arrancar"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Assign host name from DHCP address"
-msgstr "Debe ingresar el nombre o la IP del host.\n"
+msgstr "Asignar nombre de máquina desde dirección DHCP"
#: ../../network/network.pm:1
#, c-format
@@ -10428,9 +10480,9 @@ msgid "Track network card id (useful for laptops)"
msgstr "Id tarjeta de red (útil para portátiles)"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "DHCP host name"
-msgstr "Nombre de la máquina"
+msgstr "Nombre de la máquina DHCP"
#: ../../network/network.pm:1 ../../standalone/drakconnect:1
#: ../../standalone/drakgw:1
@@ -11072,19 +11124,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"Están configuradas las impresoras siguientes. Haga doble clic sobre una para "
-"cambiar sus parámetros; para hacerla la predeterminada; para ver información "
-"acerca de la misma o para hacer que una impresora en un servidor CUPS remoto "
-"esté disponible para Star Office/OpenOffice.org/GIMP."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "Sistema de impresión: "
@@ -11727,6 +11766,11 @@ msgstr "¡La opción %s debe ser un número entero!"
#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Printer default settings"
+msgstr "Configuraciones predeterminadas de la impresora"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
"Printer default settings\n"
"\n"
@@ -13771,8 +13815,8 @@ msgstr "Bienvenidos, crackers"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
"El éxito de MandrakeSoft se basa en el principio del Software Libre. Su "
"sistema operativo nuevo es el resultado del trabajo colaborativo de parte de "
@@ -13780,7 +13824,7 @@ msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "Bienvenido al mundo del Código Abierto"
#: ../../share/advertising/01-thanks.pl:1
@@ -13791,8 +13835,8 @@ msgstr "Gracias por elegir Mandrake Linux 9.1"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
"Para compartir su conocimiento y ayudar a construir herramientas Linux, "
"únase a los foros de discusión que encontrará en nuestras páginas web para "
@@ -13800,218 +13844,160 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr "¿Desea saber más acerca de la comunidad de Código Abierto?"
-
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Participe en el mundo del Software Libre"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
-"Mandrake Linux 9.1 ha seleccionado el mejor software para Usted. Navegue la "
-"web y vea animaciones con Mozilla y Konqueror, o lea su correo y organice su "
-"información personal con Evolution y KMail"
+"¿Desea saber más acerca de la comunidad de Código Abierto? Participe en el "
+"mundo del Software Libre!"
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
-msgstr "Aprovechar al máximo la Internet"
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
"Mandrake Linux 9.1 le permite utilizar el último software para reproducir "
"archivos de audio, editar y organizar sus imágenes o fotos, y reproduzcir "
"vídeos"
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr "¡Lleve los multimedios al límite!"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr "¡Descubra las herramientas gráficas y multimedios más actualizadas!"
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"Mandrake Linux 9.1 brinda lo mejor en juegos de Código Abierto - arcade, "
-"acción, estrategia, ..."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "Juegos"
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-"Mandrake Linux 9.1 brinda una herramienta potente para personalizar y "
-"configurar su máquina por completo."
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Centro de control de Mandrake"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Configuración del Servidor de Terminales de Mandrake"
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
"Mandrake Linux 9.1 le brinda 11 interfaces de usuario que se pueden "
"modificar por completo: KDE3, Gnome 2, WindowMaker..."
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "Interfaces de usuario"
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-"Utilice el poder del compilador GNU gcc 3 así como también los mejores "
-"entornos de desarrollo de Código Abierto."
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "Mandrake Linux 9.1 es la mejor plataforma de desarrollo."
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr "Desarrollo simplificado"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"Transforme su máquina en un servidor Linux potente con unos pocos clic del "
"ratón: servidor web, de correo, cortafuegos, router, servidor de archivos e "
"impresoras, ..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr "Convierta su máquina en un servidor confiable."
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr "Este producto está disponible en el sitio web MandrakeStore"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-"Este producto cortafuegos incluye características de red que le permiten "
-"satisfacer todas sus necesidades de seguridad"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr ""
-"MandrakeSecurity ofrece un rango que incluye el producto Multi Network "
-"Firewall (M.N.F.)."
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr "Optimice su seguridad"
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"Nuestro rango completo de soluciones Linux, así como también ofertas "
"especiales sobre productos y otras \"cositas\", están disponibles en línea "
"en nuestra tienda electrónica:"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr "La tienda oficial de MandrakeSoft"
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
+#: ../../share/advertising/09-mdksecure.pl:1
+#, fuzzy, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"MandrakeSoft trabaja junto a una selección de compañías que ofrecen "
"soluciones profesionales compatibles con Mandrake Linux. En MandrakeStore "
"está disponible una lista de dichos socios"
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr "Socios estratégicos"
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-"Ya sea si elige enseñarse a sí mismo en línea o a través de nuestra red de "
-"socios de entrenamiento, el catálogo Linux-Campus lo prepara para el "
-"reconocido programa de certificación LPT (certificación técnica profesional "
-"a nivel mundial)."
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr "Certifíquese en Linux."
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "Optimice su seguridad"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
+#, c-format
+msgid "This product is available on the MandrakeStore Web site."
+msgstr "Este producto está disponible en el sitio web MandrakeStore"
+
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-"El programa de entrenamiento ha sido creado para responder a las necesidades "
-"tanto de los usuarios finales como de los expertos (Administración de "
-"sistemas y redes)"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr "Descubra el catálogo Linux-Campus de entrenamiento de MandrakeSoft"
+msgid "Secure your networks with the Multi Network Firewall"
+msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -14022,21 +14008,21 @@ msgstr ""
"línea para compartir su conocimiento y ayudar a otros convirtiéndose en un "
"Experto reconocido en el sitio web de soporte técnico en línea:"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
"Encuentre las soluciones a sus problemas por medio de la plataforma de "
"soporte en línea de MandrakeSoft"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr "Conviértase en un MandrakeExpert"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
@@ -14045,40 +14031,18 @@ msgstr ""
"Todos los incidentes estarán seguidos por un único experto técnico "
"calificado de MandrakeSoft."
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
"Una plataforma en línea para responder a las necesidades específicas de "
"soporte de la compañía."
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert Corporativo"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-"El Club de Mandrake y el Club Corporativo de Mandrake fueron creados para "
-"las empresas y usuarios privados de Mandrake Linux que desean soportar "
-"directamente a su distribución Linux favorita a la vez que reciben "
-"privilegios especiales. Si Usted disfruta nuestros productos, si su empresa "
-"se beneficia con nuestros productos para ganar competitividad, si desea "
-"soportar el desarrollo de Mandrake Linux, ¡únase al Club de Mandrake!"
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr "Descubra el Club de Mandrake y el Club Corporativo de Mandrake"
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -15209,7 +15173,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, c-format
msgid "%s"
-msgstr ""
+msgstr "%s"
#: ../../standalone/drakbackup:1
#, c-format
@@ -16733,6 +16697,11 @@ msgstr "Aisstente Inicial"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr "Centro de control de Mandrake"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr "Herramienta de Reporte de Errores de Mandrake"
@@ -17698,6 +17667,28 @@ msgstr "Interfaz %s (usando el módulo %s)"
#: ../../standalone/drakgw:1
#, c-format
+msgid "Net Device"
+msgstr "Dispositivo de red"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+"Por favor, ingrese el nombre de la Interfaz conectada a la Internet.\n"
+"\n"
+"Ejemplos:\n"
+"\t\tppp+ para conexiones por módem o DSL,\n"
+"\t\teth0, o eth1 para conexión por cable,\n"
+"\t\tippp+ para una conexión RDSI.\n"
+
+#: ../../standalone/drakgw:1
+#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -18076,7 +18067,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -18088,7 +18079,7 @@ msgstr ""
"servidor DHCP\n"
"y un servidor TFTP para construir un servidor de instalación.\n"
"Con esa característica, otras computadoras en su red local se podrán "
-"instalar utilizando esta computadora.\n"
+"instalar utilizando esta computadora como fuente.\n"
"\n"
"Debe asegurarse que ha configurado su acceso a la Red/Internet utilizando "
"drakconnect antes de proceder.\n"
@@ -18284,6 +18275,11 @@ msgid "choose image file"
msgstr "elija un archivo de imagen"
#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "elija un archivo de imagen"
+
+#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
msgstr "Configurar foto de bootsplash"
@@ -18761,11 +18757,21 @@ msgstr "puerto de impresora de red"
#: ../../standalone/harddrake2:1
#, c-format
+msgid "the name of the CPU"
+msgstr "el nombre de la CPU"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "Name"
msgstr "Nombre"
#: ../../standalone/harddrake2:1
#, c-format
+msgid "the number of buttons the mouse has"
+msgstr "la cantidad de botones que tiene el ratón"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "Number of buttons"
msgstr "Cantidad de botones"
@@ -18937,13 +18943,13 @@ msgstr "Este campo describe al dispositivo"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
"La frecuencia de la CPU en MHz (Megahertz que en una primera aproximación se "
-"puede considerar como la cantidad de instrucciones que la CPU puede ejecutar "
-"por segundo)"
+"puede considerar como la cantidad de millones instrucciones que la CPU puede "
+"ejecutar por segundo)"
#: ../../standalone/harddrake2:1
#, c-format
@@ -19964,6 +19970,10 @@ msgstr ""
"archivos, y chat"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Juegos"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimedios - Gráficos"
@@ -20019,6 +20029,442 @@ msgstr "Finanzas personales"
msgid "Programs to manage your finances, such as gnucash"
msgstr "Programas para administrar sus finanzas, tales como gnucash"
+#~ msgid "no network card found"
+#~ msgstr "no se encontró ninguna tarjeta de red"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "and view animations with Mozilla and Konqueror, or read your mail and "
+#~ "handle your personal information with Evolution and Kmail"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 ha seleccionado el mejor software para Usted. Navegue "
+#~ "la web y vea animaciones con Mozilla y Konqueror, o lea su correo y "
+#~ "organice su información personal con Evolution y KMail"
+
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Aprovechar al máximo la Internet"
+
+#~ msgid "Push multimedia to its limits!"
+#~ msgstr "¡Lleve los multimedios al límite!"
+
+#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
+#~ msgstr "¡Descubra las herramientas gráficas y multimedios más actualizadas!"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 brinda lo mejor en juegos de Código Abierto - arcade, "
+#~ "acción, estrategia, ..."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 brinda una herramienta potente para personalizar y "
+#~ "configurar su máquina por completo."
+
+#~ msgid "User interfaces"
+#~ msgstr "Interfaces de usuario"
+
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+#~ "Utilice el poder del compilador GNU gcc 3 así como también los mejores "
+#~ "entornos de desarrollo de Código Abierto."
+
+#~ msgid "Development simplified"
+#~ msgstr "Desarrollo simplificado"
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ "Este producto cortafuegos incluye características de red que le permiten "
+#~ "satisfacer todas sus necesidades de seguridad"
+
+#~ msgid ""
+#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
+#~ "N.F.)"
+#~ msgstr ""
+#~ "MandrakeSecurity ofrece un rango que incluye el producto Multi Network "
+#~ "Firewall (M.N.F.)."
+
+#~ msgid "Strategic partners"
+#~ msgstr "Socios estratégicos"
+
+#~ msgid ""
+#~ "Whether you choose to teach yourself online or via our network of "
+#~ "training partners, the Linux-Campus catalogue prepares you for the "
+#~ "acknowledged LPI certification program (worldwide professional technical "
+#~ "certification)"
+#~ msgstr ""
+#~ "Ya sea si elige enseñarse a sí mismo en línea o a través de nuestra red "
+#~ "de socios de entrenamiento, el catálogo Linux-Campus lo prepara para el "
+#~ "reconocido programa de certificación LPT (certificación técnica "
+#~ "profesional a nivel mundial)."
+
+#~ msgid "Certify yourself on Linux"
+#~ msgstr "Certifíquese en Linux."
+
+#~ msgid ""
+#~ "The training program has been created to respond to the needs of both end "
+#~ "users and experts (Network and System administrators)"
+#~ msgstr ""
+#~ "El programa de entrenamiento ha sido creado para responder a las "
+#~ "necesidades tanto de los usuarios finales como de los expertos "
+#~ "(Administración de sistemas y redes)"
+
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr "Descubra el catálogo Linux-Campus de entrenamiento de MandrakeSoft"
+
+#~ msgid ""
+#~ "MandrakeClub and Mandrake Corporate Club were created for business and "
+#~ "private users of Mandrake Linux who would like to directly support their "
+#~ "favorite Linux distribution while also receiving special privileges. If "
+#~ "you enjoy our products, if your company benefits from our products to "
+#~ "gain a competititve edge, if you want to support Mandrake Linux "
+#~ "development, join MandrakeClub!"
+#~ msgstr ""
+#~ "El Club de Mandrake y el Club Corporativo de Mandrake fueron creados para "
+#~ "las empresas y usuarios privados de Mandrake Linux que desean soportar "
+#~ "directamente a su distribución Linux favorita a la vez que reciben "
+#~ "privilegios especiales. Si Usted disfruta nuestros productos, si su "
+#~ "empresa se beneficia con nuestros productos para ganar competitividad, si "
+#~ "desea soportar el desarrollo de Mandrake Linux, ¡únase al Club de "
+#~ "Mandrake!"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr "Descubra el Club de Mandrake y el Club Corporativo de Mandrake"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#~ msgid ""
+#~ "As a review, DrakX will present a summary of various information it has\n"
+#~ "about your system. Depending on your installed hardware, you may have "
+#~ "some\n"
+#~ "or all of the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary.\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Country\": check the current country selection. If you are not in "
+#~ "this\n"
+#~ "country, click on the button and choose another one.\n"
+#~ "\n"
+#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+#~ "primary language you have chosen. But here, just as in your choice of a\n"
+#~ "keyboard, you may not be in a country to which the chosen language\n"
+#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
+#~ "configure the clock for the correct timezone.\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation.\n"
+#~ "\n"
+#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+#~ "click that button. This should be reserved to advanced users.\n"
+#~ "\n"
+#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+#~ "interface in \"800x600\" resolution. If that does not suits you, click "
+#~ "on\n"
+#~ "the button to reconfigure your graphical interface.\n"
+#~ "\n"
+#~ " * \"Network\": If you want to configure your Internet or local network\n"
+#~ "access now, you can by clicking on this button.\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. If you notice the sound card displayed is not the one "
+#~ "that\n"
+#~ "is actually present on your system, you can click on the button and "
+#~ "choose\n"
+#~ "another driver.\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. If you have a TV card and it is not detected, click on the button "
+#~ "to\n"
+#~ "try to configure it manually.\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with the card."
+#~ msgstr ""
+#~ "A manera de revisión, DrakX presentará un resumen de las distintas "
+#~ "informaciones\n"
+#~ "que tiene acerca de su sistema. Dependiendo del hardware instalado, puede "
+#~ "tener\n"
+#~ "algunas o todas las entradas siguientes:\n"
+#~ "\n"
+#~ " * \"Ratón\": verifique la configuración del ratón y haga clic sobre el\n"
+#~ "botón para cambiarla, si es necesario.\n"
+#~ "\n"
+#~ " * \"Teclado\": verifique la configuración de la disposición del teclado "
+#~ "y\n"
+#~ "haga clic sobre el botón para cambiarla, si es necesario.\n"
+#~ "\n"
+#~ " * \"País\": verifique la selección corriente del país. Si Usted no se "
+#~ "encuentra\n"
+#~ "en este país, haga clic sobre el botón y elija otro.\n"
+#~ "\n"
+#~ " * \"Huso horario\": De manera predeterminada, DrakX, deduce su huso "
+#~ "horario\n"
+#~ "basándose en el país que ha elegido. Pero nuevamente, al igual\n"
+#~ "que con la elección del teclado, puede ocurrir que no se encuentre en el\n"
+#~ "país que sugiere el idioma elegido. De ser así, puede necesitar hacer "
+#~ "clic\n"
+#~ "sobre el botón \"Huso horario\" para configurar el reloj de acuerdo al "
+#~ "huso\n"
+#~ "horario en el que se encuentre.\n"
+#~ "\n"
+#~ " * \"Impresora\": al hacer clic sobre el botón \"Sin impresora\" se "
+#~ "abrirá\n"
+#~ "el asistente de configuración de la impresora. Consulte el capítulo\n"
+#~ "correspondiente de la \"Guía de Comienzo\" para más información sobre "
+#~ "como\n"
+#~ "configurar una impresora nueva. La interfaz presentada allí es similar a "
+#~ "la\n"
+#~ "utilizada durante la instalación.\n"
+#~ "\n"
+#~ " * \"Cargador de arranque\": si desea cambiar la configuración de su\n"
+#~ "cargador de arranque, haga clic sobre el botón. Esto debería estar "
+#~ "reservado\n"
+#~ " para usuarios avanzados. \n"
+#~ "* \"Interfaz gráfica\": predeterminadamente, DrakX configura su interfaz\n"
+#~ "gráfica en \"800x600\" de resolución. Si eso no lo satisface, haga clic\n"
+#~ "sobre el botón para volver a configurar su interfaz gráfica.\n"
+#~ "\n"
+#~ "* \"Red\": si desea configurar la Internet o su acceso a la red local "
+#~ "ahora\n"
+#~ "puede hacerlo haciendo un clic sobre este botón.\n"
+#~ "\n"
+#~ " * \"Tarjeta de sonido\": si se detecta una tarjeta de sonido en su\n"
+#~ "sistema, la misma se muestra aquí. Si nota que la tarjeta de sonido\n"
+#~ "mostrada no es la que está realmente presente en su máquina\n"
+#~ "puede hacer clic sobre el botón y elegir otro controlador.\n"
+#~ "\n"
+#~ " * \"Tarjeta de TV\": si se detecta una tarjeta de TV en su sistema, la\n"
+#~ "misma se muestra aquí. Si tiene una tarjeta de TV y no se detecta, haga "
+#~ "clic\n"
+#~ "sobre el botón para intentar configurarla manualmente.\n"
+#~ "\n"
+#~ " * \"Tarjeta RDSI\": si se detecta una tarjeta RDSI en su sistema, la "
+#~ "misma\n"
+#~ "se muestra aquí. Puede hacer clic sobre el botón para cambiar los\n"
+#~ "parámetros asociados a la misma."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#~ msgid ""
+#~ "LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
+#~ "what it finds there:\n"
+#~ "\n"
+#~ " * if a Windows boot sector is found, it will replace it with a grub/"
+#~ "LILO\n"
+#~ "boot sector. This way you will be able to load either GNU/Linux or "
+#~ "another\n"
+#~ "OS.\n"
+#~ "\n"
+#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
+#~ "one.\n"
+#~ "\n"
+#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
+#~ "bootloader.\n"
+#~ "\n"
+#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
+#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
+#~ "disk\n"
+#~ "(\"On Floppy\").\n"
+#~ "\n"
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "LILO y grub son cargadores de arranque de GNU/Linux. Normalmente esta\n"
+#~ "etapa está completamente automatizada. DrakX analizará el sector de "
+#~ "arranque\n"
+#~ "del disco y actuará de acuerdo a lo que encuentra allí:\n"
+#~ "\n"
+#~ "* se encuentra un sector de arranque de Windows, lo reemplazará con uno "
+#~ "de\n"
+#~ "grub/LILO. De esta forma, Usted podrá cargar bien GNU/Linux o bien otro\n"
+#~ "sistema operativo.\n"
+#~ "\n"
+#~ "* si encuentra un sector de arranque de grub o LILO, lo reemplazará con\n"
+#~ "uno nuevo.\n"
+#~ "\n"
+#~ "Si no puede realizar una determinación, DrakX le preguntará dónde "
+#~ "colocar\n"
+#~ "el cargador de arranque.\n"
+#~ "\n"
+#~ "\"Dispositivo de arranque\": en la mayoría de los casos, no deberá "
+#~ "cambiar\n"
+#~ "lo predeterminado (\"Primer sector del disco (MBR)\"), pero si lo "
+#~ "prefiere,el\n"
+#~ "administrador de arranque se puede instalar en el segundo disco o "
+#~ "incluso\n"
+#~ "en un disquete (\"En disquete\")\n"
+#~ "\n"
+#~ "Marcar \"Crear un disquete de arranque\" le permite tener un disco de "
+#~ "rescate\n"
+#~ "a mano.\n"
+#~ "\n"
+#~ "El CD-ROM de Mandrake Linux tiene un modo de rescate incorporado. Puede\n"
+#~ "acceder al mismo arrancando el CD-ROM, presionando la tecla >>F1<< y\n"
+#~ "tecleando >>rescue<< en el prompt. Si su computadora no puede arrancar\n"
+#~ "desde el CD-ROM, hay al menos dos situaciones donde es crítico tener\n"
+#~ "un disquete de arranque:\n"
+#~ "\n"
+#~ " * cuando instala el cargador de arranque, DrakX sobreescribirá el MBR\n"
+#~ "de su disco principal (a menos que use otro administrador de arranque) "
+#~ "para\n"
+#~ "permitirle arrancar Windows o GNU/Linux (si es que tiene Windows en su\n"
+#~ "sistema) Si necesita volver a instalar Windows, el proceso de "
+#~ "instalación\n"
+#~ "de Microsoft sobreescribirá el sector de arranque y ¡le quitará la "
+#~ "posibilidad\n"
+#~ "de arrancar GNU/LInux! * si surge un problema y no puede arrancar GNU/"
+#~ "Linux desde el disco,\n"
+#~ "este disquete será la única forma para arrancar GNU/Linux. El mismo "
+#~ "contiene\n"
+#~ "una cantidad de herramientas del sistema para restaurar un sistema que "
+#~ "cayó\n"
+#~ "debido a una falla de energía, un error infortunado de tecleo, una "
+#~ "contraseña de\n"
+#~ "root olvidada, o cualquier otra razón.\n"
+#~ "\n"
+#~ "Si dice \"Sí\", se le pedirá que inserte un disquete en la disquetera. "
+#~ "El\n"
+#~ "disquete debe estar vacío o tener datos no críticos. DrakX formateará\n"
+#~ "el disquete y lo sobreescribirá por completo."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/es/drakx-chapter.xml
+#~ msgid ""
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Marcando \"Crear disquete de arranque\" le permite tener un disquete de\n"
+#~ "arranque de rescate a mano.\n"
+#~ "\n"
+#~ "El CD-ROM de Mandrake Linux tiene un modo de rescate incorporado. Usted\n"
+#~ "puede acceder al mismo arrancando desde el CD-ROM, presionando la tecla\n"
+#~ ">>F1<< durante el arranque y tecleando >>rescue<< en el prompt. Si su\n"
+#~ "computadora no pueda arrancar desde el CD-ROM, Usted debería recurrir a\n"
+#~ "este paso al menos en dos situaciones:\n"
+#~ "\n"
+#~ " * cuando instala el cargador de arranque, DrakX sobreescribirá el "
+#~ "sector\n"
+#~ "de arranque (MBR) de su disco principal (a menos que esté utilizando "
+#~ "otro\n"
+#~ "administrador de arranque) de forma tal que pueda iniciar o bien Windows "
+#~ "o\n"
+#~ "bien GNU/Linux (asumiendo que tiene Windows en su sistema). Si necesita\n"
+#~ "volver a instalar Windows, el proceso de instalación de Microsoft\n"
+#~ "sobreescribirá el sector de arranque, y entonces ¡Usted no podrá iniciar\n"
+#~ "GNU/Linux!\n"
+#~ "\n"
+#~ " * si surge un problema y Usted no puede iniciar GNU/Linux desde el "
+#~ "disco\n"
+#~ "rígido, este disquete será la única manera de iniciar GNU/Linux. El "
+#~ "mismo\n"
+#~ "contiene una buena cantidad de herramientas del sistema para restaurar "
+#~ "un\n"
+#~ "sistema que colapsó debido a una falla de energía, un error de tecleo\n"
+#~ "infortunado, un error en una contraseña, o cualquier otro motivo.\n"
+#~ "\n"
+#~ "Si dice \"Sí\", se le pedirá que inserte un disquete dentro de la\n"
+#~ "disquetera. El disquete que inserte debe estar vacío o contener datos "
+#~ "que\n"
+#~ "no necesite. No tendrá que formatearlo ya que DrakX sobreescribirá el\n"
+#~ "disquete por completo."
+
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "Están configuradas las impresoras siguientes. Haga doble clic sobre una "
+#~ "para cambiar sus parámetros; para hacerla la predeterminada; para ver "
+#~ "información acerca de la misma o para hacer que una impresora en un "
+#~ "servidor CUPS remoto esté disponible para Star Office/OpenOffice.org/GIMP."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index d0871ec37..6bcefe3e6 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2003-02-24 11:57+0200\n"
"Last-Translator: Riho Kurg <rx@linux.ee>\n"
"Language-Team: Estonian <et@li.org>\n"
@@ -1091,99 +1091,129 @@ msgstr ""
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
"Siin näidatakse mitmeid Teie masinat puudutavaid parameetreid. Sõltuvalt\n"
-"riistvarast võite siin näha (või mitte näha) järgmisi kirjeid:\n"
-"\n"
-" * \"Hiir\": võimalus kontrollida hiire seadistusi ja neid vajadusel muuta.\n"
+"riistvarast võite siin näha kõiki või osa järgmistest kirjetest. Iga kirje\n"
+"juures on ära toodud elemendid, mida on võimalik seadistada, ning Teie "
+"masinal\n"
+"praegu kehtiv seadistus. Selle muutmiseks vajutage nupule \"Seadista\".\n"
"\n"
-" * \"Klaviatuur\": võimalus kontrollida klaviatuuritabeli seadistusi ja "
-"neid\n"
-"vajaduse korral muuta.\n"
+" * \"Klaviatuur\": võimalus kontrollida klaviatuuritabeli seadistusi\n"
+"ja neid vajaduse korral muuta.\n"
"\n"
-" * \"Maa\": võimalus kontrollida oma riigi valikut. Kui Te ei asu vaikimisi\n"
-"määratud maal, vajutage nuppu ja valige uus riik.\n"
+" * \"Maa\": võimalus kontrollida oma riigi valikut. Kui Te ei asu\n"
+"vaikimisi määratud maal, vajutage nuppu \"Seadista\" ja valige uus\n"
+"riik. Kui Teie riiki ei ole ilmuvas nimekirjas, vajutage nupule\n"
+"\"Veel\", mis avab riikide täisnimekirja.\n"
"\n"
" * \"Ajavöönd\": DrakX arvab vaikimisi ajavööndi ära valitud keele põhjal. "
"Kuid\n"
"nagu klaviatuuri puhul, võib ka siin ette tulla, et Te ei viibi näiteks "
"maal,\n"
-"millele valitud keel vastab. Sellisel juhul tuleks klõpsata nupul \"Ajavöönd"
+"millele valitud keel vastab. Sellisel juhul tuleks klõpsata nupul \"Seadista"
"\",\n"
"et seada kell selle ajavööndi ajale, kus Te parajasti viibite.\n"
"\n"
-" * \"Printer\": klõps nupul \"Printer puudub\" avab printeri seadistamise "
+" * \"Hiir\": võimalus kontrollida hiire seadistusi ja neid vajadusel muuta.\n"
+"\n"
+" * \"Printer\": klõps nupul \"Seadista\" avab printeri seadistamise "
"nõustaja.\n"
"Seda, kuidas uut printerit seadistada, vaadake lähemalt käivitusjuhiste "
"vastavast\n"
"peatükist. Siin nähtav on sarnane paigaldusajal nähtuga.\n"
"\n"
-" * \"Alglaadur\": kui soovite muuta oma alglaaduri seadistusi, klõpsake\n"
-"nupule. See on mõeldud kogenud kasutajatele.\n"
+" * \"Helikaart\": kui süsteemis leiti helikaart, näidatakse seda.\n"
+"Kui märkate, et siintoodud helikaart pole see, mis tegelikult on\n"
+"süsteemi paigaldatud, vajutage nuppu ja valige sobiv juhtprogramm.\n"
"\n"
" * \"Graafiline liides\": vaikimisi määrab DrakX Teie graafilise liidese\n"
-"kuvatiheduseks \"800x600\". Kui see Teile ei sobi, vajutage nupule ja\n"
-"seadistage graafiline liides oma tahtmist mööda.\n"
+"kuvatiheduseks \"800x600\" või \"1024x768\". Kui see Teile ei sobi,\n"
+"vajutage nupule \"Seadista\" ja valige mõni muu võimalus.\n"
+"\n"
+" * \"TV-kaart\": kui süsteemis leiti TV-kaart, näidatakse seda.\n"
+"Kui Teil on TV-kaart, aga seda ei leitud, vajutage nupule \"Seadista\"\n"
+"ning püüdke see käsitsi määrata.\n"
+"\n"
+" * \"ISDN-kaart\": kui süsteemis leiti ISDN-kaart, näidatakse seda.\n"
+"Nupule \"Seadista\" vajutades saab muuta sellega seonduvaid parameetreid.\n"
"\n"
" * \"Võrk\": Kui soovite kohe seadistada juurdepääsu Internetti või "
"kohtvõrku,\n"
"saate seda teha siin nupule vajutades.\n"
"\n"
-" * \"Helikaart\": kui süsteemis leiti helikaart, näidatakse seda. Paigalduse "
-"ajal pole\n"
-"seda võimalik (ümber) seadistada.\n"
+" * \"Turvatase\": see pakub võimaluse määrata ümber eelmisel sammul ()\n"
+"paika pandud turvatase.\n"
+"\n"
+" * \"Tulemüür\": kui kavatsete oma masina Internetti ühendada, kuluks\n"
+"ära enda kaitsmine rünnakute eest tulemüüri paikapanemisega. Vaadake\n"
+"üksikasju, kuidas tulemüüri seadistada, käivitusjuhiste vastavast\n"
+"peatükist.\n"
"\n"
-" * \"TV-kaart\": kui süsteemis leiti TV-kaart, näidatakse seda. Paigalduse "
-"ajal pole\n"
-"seda võimalik (ümber) seadistada.\n"
+" * \"Alglaadur\": kui soovite muuta alglaaduri seadistusi, vajutage\n"
+"sellele nupule. See on mõeldud siiski vaid kogenud kasutajatele.\n"
"\n"
-" * \"ISDN-kaart\": kui süsteemis leiti ISDN-kaart, näidatakse seda. Nupule "
-"vajutades\n"
-"saab muuta sellega seonduvaid parameetreid."
+" * \"Teenused\": saate täpselt kontrollida, millised teenused Teie\n"
+"masinal töötavad. Kui kavatsete kasutada oma masinat serverina, kuluks\n"
+"ära seadistused üle vaadata."
#: ../../help.pm:1
#, c-format
@@ -1379,13 +1409,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1405,15 +1430,6 @@ msgstr ""
"Riistvara tuvastamine ei pruugi alati siiski õnnestuda ja kui see nii "
"peaks \n"
"minema, palub DrakX Teil teatada, kas masinas on mõni PCI SCSI-liides.\n"
-"Vajutage \"Jah\", kui olete kindel, et Teil on SCSI-liides, ning seejärel\n"
-"palutakse Teil ilmuvast loendist sobiv valida. Kui SCSI-liidest ei ole, on "
-"mõtet\n"
-"vastata \"Ei\". Kui Te ei ole kindel, võite kontrollida oma masina "
-"riistvara,\n"
-"vajutades \"Näita riistvara infot\" ja \"Järgmine ->\". Vaadake riistvara "
-"nimekiri\n"
-"üle ning vajutage \"Järgmine ->\", mis toob Teid tagasi SCSI-liidese "
-"küsimuse juurde.\n"
"\n"
"Kui peate oma adapteri käsitsi määrama, küsib DrakX, kas soovite määrata\n"
"ka selle parameetrid. Siin oleks mõtet lasta tegutseda DrakX-l, mis proovib\n"
@@ -1421,8 +1437,10 @@ msgstr ""
"vajab.\n"
"Tavaliselt õnnestub see edukalt.\n"
"\n"
-"Kui automaatne parameetrite otsimine ei tööta, tutvuge palun lähemalt\n"
-"oma SCSI liidese dokumentatsiooniga või küsige abi riistvara müüjalt."
+"Kui automaatne parameetrite otsimine ei tööta, tuleb liides käsitsi "
+"seadistada.\n"
+"Selleks tutvuge palun lähemalt oma SCSI liidese dokumentatsiooniga\n"
+"või küsige abi riistvara müüjalt."
#: ../../help.pm:1
#, c-format
@@ -1435,7 +1453,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1501,32 +1519,7 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+"(\"On Floppy\")."
msgstr ""
"LiLo ja grub on GNU/Linuxi alglaadurid. Tavaliselt käib siin kõik täiesti\n"
"automaatselt. DrakX uurib ketta alglaadimissektorit ja talitab vastavalt\n"
@@ -1542,38 +1535,7 @@ msgstr ""
"\n"
"\"Alglaadimisseade\": enamasti ei peaks muutma vaikeväärtust (\"Ketta\n"
"avasektor (MBR)\"), aga soovi korral saab alglaaduri paigaldada ka\n"
-"teisele kõvakettale (\"/dev/hdb\") või isegi flopile (\"Flopil\").\n"
-"\n"
-"Märkides ära \"Alglaadimisketta loomine\", saate luua endale käepärase\n"
-"abimehe alglaadimiseks kriisiolukorras.\n"
-"\n"
-"Mandrake Linuxi CD-ROM võib toimida ka päästeresiimis. Seda saab kasutada\n"
-"järgmiselt: teete alglaadimise CD-ROMilt, vajutate selle ajal >>F1<< ning \n"
-"kirjutate käsureale >>rescue<<. Kui Teie arvuti aga ei ole võimeline tegema\n"
-"alglaadimist CD-ROMilt, tuleks tulla selle sammu juurde tagasi abi otsima\n"
-"vähemalt kahe situatsiooni korral:\n"
-"\n"
-" * alglaadurit paigaldades kirjutab DrakX üle Teie põhiketta avasektori "
-"(MBR;\n"
-"muidugi ainult juhul, kui Te ei kasuta mõnda muud alglaadurit), mis "
-"võimaldab\n"
-"käivitada näiteks nii Windowsi kui GNU/Linuxi (eeldusel mõistagi, et Teie\n"
-"süsteemis on Windows). Kui tekib vajadus Windows uuesti paigaldada, "
-"kirjutab\n"
-"Microsofti paigaldusprotsess avasektori üle ning Te ei suuda enam käivitada\n"
-"GNU/Linuxit!\n"
-"\n"
-" *kui tekib mingi probleem ja GNU/Linuxit pole võimalik käivitada "
-"kõvakettalt,\n"
-"on flopiketas ainuke võimalus seda käima saada. Sellel leiduvad mõningad\n"
-"süsteemi taastamise vahendid, kui too on kannatada saanud voolukatkestuse,\n"
-"ebaõnnestunud redigeerimise, paroolieksimuse või mõne muu põhjuse tõttu.\n"
-"\n"
-"Kui vastate \"Jah\", palutakse sisestada seadmesse flopiketas. See peab "
-"olema\n"
-"puhas või vähemalt andmetega, mida Teil enam vaja ei lähe. Teil pole vaja "
-"seda\n"
-"ise vormindada, selle mure võtab DrakX enda kanda."
+"teisele kõvakettale (\"/dev/hdb\") või isegi flopile (\"Flopil\")."
#: ../../help.pm:1
#, c-format
@@ -1825,9 +1787,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1844,8 +1811,13 @@ msgstr ""
"Hispaaniast, valige puuvaates põhikeeleks eesti keel ning sektsioonis\n"
"\"Muud\" märkige ära \"Hispaania|Hispaania\".\n"
"\n"
-"Paigaldada võib ka mitu keelt. Kui olete valinud, millised lisakeeled\n"
-"paigaldada, klõpsake jätkamiseks nupul \"Järgmine ->\".\n"
+"Paigaldada võib ka mitu keelt. Te võite neid valida mitu või kas või kõik,\n"
+"märkides ära kasti \"Kõik keeled\". Keele toe valimine tähendab vastavaid\n"
+"tõlkeid, fonte, õigekirja kontrollijaid jne. Lisaks võimaldab kasti\n"
+"\"Unicode kasutamine vaikimisi\" märkimine sundida süsteemi kasutama\n"
+"Unicode'i (UTF-8). Arvestage siiski, et see on esialgu eksperimentaalne\n"
+"võimalus. Kui valite erinevaid kodeeringuid nõudvaid keeli, paigaldatakse\n"
+"Unicode toetus nagunii.\n"
"\n"
"Ühelt keelelt teisele lülitumiseks võite administraatorina anda käsu\n"
"\"/usr/sbin/localedrake\", mis võimaldab muuta kogu süsteemi keelt,\n"
@@ -1935,10 +1907,14 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
"\"Maa\": võimaldab konrollida praegust maa valikut. Kui see ei ole riik,\n"
-"kus Te viibite, vajutage nuppu ja valige mõni muu maa."
+"kus Te viibite, vajutage nuppu \"Seadista\" ja valige mõni muu maa. Kui\n"
+"Teie maad ei ole ilmuvas nimekirjas, vajutage nuppu \"Veel\", mis avab\n"
+"riikide täisnimekirja."
#: ../../help.pm:1
#, c-format
@@ -2160,17 +2136,14 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
"Nüüd on aeg valida masinale meelepärane turvatase. Rusikareeglina peaks\n"
"turvatase olema seda kõrgem, mida ligipääsule avatum see on ja mida rohkem\n"
"leidub sellel olulise tähtsusega andmeid. Samas tähendab kõrgem turvatase\n"
-"üldiselt kasutamislihtsuse kahanemist. Turvatasemete täpsema kirjelduse\n"
-"leiate käsiraamatu peatükist \"msec\".\n"
+"üldiselt kasutamislihtsuse kahanemist.\n"
"\n"
"Kui Te ei tea, mida valida, leppige pakutud võimalusega."
@@ -2180,14 +2153,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
"On tõenäoline, et praegu, kui Te paigaldate Mandrake Linuxit, on mõned\n"
"paketid jõudnud pärast väljalaset juba uuenduskuuri üle elada. Mõnes on ära\n"
@@ -2268,7 +2241,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2300,7 +2273,7 @@ msgstr ""
"võite valida, kas käivitada GNU/Linux või Windows (kui Teie arvutil on mitu\n"
"süsteemi).\n"
"\n"
-"Nupp \"Muud\" (ainult ekspertresiimis) pakub veel kaks võimalust:\n"
+"Nupp \"Muud\" pakub veel kaks võimalust:\n"
"\n"
" * \"Loo automaatpaigalduse flopi\": loob paigaldusflopi, mis sooritab kogu\n"
"paigalduse ilma kasutajata, paigaldus ise on samasugune nagu äsja\n"
@@ -2364,7 +2337,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2389,13 +2362,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"Olete jõudnud punkti, kus peate otsustama, kuhu täpselt Mandrake Linux\n"
"oma kõvakettal paigaldada. Kui kõvaketas on tühi või mõni muu\n"
@@ -2472,65 +2445,6 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Märkides ära \"Alglaadimisketta loomine\", on Teil võimalik luua endale\n"
-"käepärane abimees alglaadimiseks kriisiolukorras.\n"
-"\n"
-"Mandrake Linuxi CD-ROM võib toimida ka päästeresiimis. Seda saab kasutada\n"
-"järgmiselt: teete alglaadimise CD-ROMilt, vajutate selle ajal >>F1<< ning \n"
-"kirjutate käsureale >>rescue<<. Kui Teie arvuti aga ei ole võimeline tegema\n"
-"alglaadimist CD-ROMilt, tuleks tulla selle sammu juurde tagasi abi otsima\n"
-"vähemalt kahe situatsiooni korral:\n"
-"\n"
-" * alglaadurit paigaldades kirjutab DrakX üle Teie põhiketta avasektori "
-"(MBR;\n"
-"muidugi ainult juhul, kui Te ei kasuta mõnda muud alglaadurit), mis "
-"võimaldab\n"
-"käivitada näiteks nii Windowsi kui GNU/Linuxi (eeldusel mõistagi, et Teie\n"
-"süsteemis on Windows). Kui tekib vajadus Windows uuesti paigaldada, "
-"kirjutab\n"
-"Microsofti paigaldusprotsess avasektori üle ning Te ei suuda enam käivitada\n"
-"GNU/Linuxit!\n"
-"\n"
-" *kui tekib mingi probleem ja GNU/Linuxit pole võimalik käivitada "
-"kõvakettalt,\n"
-"on flopiketas ainuke võimalus seda käima saada. Sellel leiduvad mõningad\n"
-"süsteemi taastamise vahendid, kui too on kannatada saanud voolukatkestuse,\n"
-"ebaõnnestunud redigeerimise, paroolieksimuse või mõne muu põhjuse tõttu.\n"
-"\n"
-"Kui vastate \"Jah\", palutakse sisestada seadmesse flopiketas. See peab "
-"olema\n"
-"puhas või vähemalt andmetega, mida Teil enam vaja ei lähe. Teil pole vaja "
-"seda\n"
-"ise vormindada, selle mure võtab DrakX enda kanda."
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
@@ -2752,7 +2666,8 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2791,12 +2706,12 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
msgstr ""
-"\"Printer\": klõps nupul \"Printer puudub\" avab printeri seadistamise\n"
+"\"Printer\": klõps nupul \"Seadista\" avab printeri seadistamise\n"
"nõustaja. Uurige lähemalt käivitusjuhiste vastavast peatükist, kuidas\n"
"uut printerit häälestada. Siin näidatav sarnaneb sellele, mida võisite\n"
"näha paigalduse ajal."
@@ -4410,6 +4325,12 @@ msgstr "Teenused"
msgid "System"
msgstr "Süsteem"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "%s on %s"
+msgstr "%s asukohas %s"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
@@ -4846,6 +4767,11 @@ msgid "Please choose your type of mouse."
msgstr "Palun valige hiire tüüp."
#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Krüptovõti"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr "%s uuendus"
@@ -9725,11 +9651,6 @@ msgstr "Võrguseadistused"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "võrgukaarti ei leitud"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
@@ -11026,18 +10947,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"Seadistatud on järgmised printerid. Topeltklõps printeril võimaldab muuta "
-"selle seadistusi, teha see vaikeprinteriks, vaadata selle infot või muuta "
-"CUPSi printserveri printer kättesaadavaks StarOffice/OpenOffice.org/GIMP-ile."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "Trükkimissüsteem: "
@@ -11663,6 +11572,11 @@ msgstr "Võti %s peab olema täisarv!"
#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Printer default settings"
+msgstr "Printeri vaikesätted"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
"Printer default settings\n"
"\n"
@@ -13660,15 +13574,15 @@ msgstr "Tere tulemast, kräkkerid"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
"MandrakeSofti edu tugineb vaba tarkvara põhimõtte järgimisele. Teie uus "
"operatsioonisüsteem on üleilmse Linuxi kogukonna ühise töö tulemus."
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "Tere tulemast avatud tarkvara maailma"
#: ../../share/advertising/01-thanks.pl:1
@@ -13679,222 +13593,165 @@ msgstr "Täname, et valisite Mandrake Linux 9.1"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
"Oma teadmiste jagamiseks ning Linuxi vahendite loomiseks võite ühineda "
"diskussioonirühmadega, mida leiab meie \"kogukonna\" veebilehekülgedel"
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr "Kas soovite avatud tarkvara kogukonnast rohkem teada saada?"
-
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Liituge vaba tarkvara maailmaga"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
-"Mandrake Linux 9.1 on valinud just Teie jaoks välja parima tarkvara. Liikuge "
-"ringi veebis ja vaadake animatsioone Mozilla ja Konquerori vahendusel või "
-"lugege kirju ja korraldage oma vajalikku erainfot Evolution ja KMaili abil"
+"Kas soovite avatud tarkvara kogukonnast rohkem teada saada? Liituge vaba "
+"tarkvara maailmaga!"
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
-msgstr "Võtke Internetist viimane välja"
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
"Mandrake Linux 9.1 võimaldab teil kasutada uusimat tarkvara helifailide "
"mängimiseks, piltide või fotode töötlemiseks ning videode vaatamiseks"
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr "Võtke multimeediast kõik, mida võtta annab!"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr "Avastage uusimad ja parimad graafika- ja multimeediavahendid!"
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"Mandrake Linux 9.1 pakub parimaid avatud tarkvara mänge - põnevust, "
-"seiklusi, strateegiat..."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "Mängud"
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-"Mandrake Linux 9.1 pakub võimsa vahendi oma masinat igati kohandada ja "
-"seadistada"
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Mandrake juhtimiskeskus"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Mandrake terminaliserveri sätted"
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
"Mandrake Linux 9.1 pakub Teile 11 kasutajaliidest, mida saab igati "
"kohandada: KDE 3, GNOME 2, WindowMaker..."
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "Kasutajaliidesed"
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-"Kasutage GNU gcc 3 kompilaatori täit jõudu ning parimaid arendusplatvorme, "
-"mida avatud tarkvara kogukond suudab pakkuda"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "Mandrake Linux 9.1 kujutab endast täiuslikku arendusplatvormi"
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr "Arendus lihtsamat moodi"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"Kujundage vaid mõne hiireklõpsuga enda masinast võimas Linuxi server: "
"veebiserver, meili-, tulemüüri-, marsruutimis-, faili- ja printserver..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr "Muutke oma masin usaldust väärivaks serveriks"
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr "See toode on saadaval MandrakeStore veebisaidil"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-"See tulemüür sisaldab võrguvõimalusi, mis lubavad rahuldada kõik vajadused, "
-"mis Teil turvalisuse osas võivad esineda"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr ""
-"MandrakeSecurity tootepere sisaldab universaalset tulemüüri \"Multi Network "
-"Firewall\" (M.N.F.)"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr "Turvalisus, nagu Teile meeldib"
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"Täisvaliku meie Linuxi lahendusi, samuti toodete eripakkumised ja muud "
"\"soodustused\", leiate meie internetikaubamajast:"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr "MandrakeSofti ametlik kauplusladu"
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
+#: ../../share/advertising/09-mdksecure.pl:1
+#, fuzzy, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"MandrakeSoft teeb koostööd mitme firmaga, kes pakuvad Mandrake Linuxiga "
"ühilduvaid professionaalseid rakendusi. Nende partnerite loendi leiab "
"MandrakeStore veebileheküljelt"
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr "Strateegilised partnerid"
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-"Hoolimata sellest, kas kavatsete teadmisi omandada võrgus või meie "
-"õppepartnerite võrgustiku vahendusel, valmistab Linux-Campus Teid ette "
-"tunnustatud LPI sertifitseerimisprogrammi läbimiseks (see on üleilmne "
-"tehnilise professionaalsuse sertifikaat)"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
+#, c-format
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "Turvalisus, nagu Teile meeldib"
+
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr "Hankige endale Linuxi sertifikaat"
+msgid "This product is available on the MandrakeStore Web site."
+msgstr "See toode on saadaval MandrakeStore veebisaidil"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-"Õppeprogrammi loomisel võeti arvesse nii lõppkasutajate kui ekspertide "
-"(võrgu- ja süsteemiadministraatorid) vajadusi"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr "Tutvuge MandrakeSofti õpingukeskusega Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
+msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -13905,19 +13762,19 @@ msgstr ""
"et jagada oma kogemusi ning aidata ka teistel saada tunnustatud ekspertideks "
"tehnilise toe veebileheküljel:"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr "Leidke oma probleemidele lahendus MandrakeSofti internetitoe abil"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr "Omandage Mandrake eksperdi kuulsus"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
@@ -13926,38 +13783,16 @@ msgstr ""
"Iga teadet jälgib ja lahendab konkreetne ja kvalifitseeritud MandrakeSofti "
"tehniline töötaja."
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr "Internetiplatvorm, mis vastab firmade spetsiifilistele tugivajadustele"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "Mandrake äriekspert"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-"Mandrake klubi ja Mandrake äriklubi loodi Mandrake Linuxi äri- ja "
-"erakasutajatele, kes soovivad otseselt toetada meelepärast Linuxi "
-"distributsiooni ning saada vastutasuks erillisi privileege. Kui meie toode "
-"Teile meeldib, kui Teie firma on meie toodete abil saavutanud ärilist edu, "
-"kui Te soovite toetada Mandrake Linuxi arendamist, siis ühinege Mandrake "
-"klubiga!"
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr "Avastage Mandrake klubi ja Mandrake äriklubi"
-
# c-format
#: ../../standalone/XFdrake:1
#, c-format
@@ -16595,6 +16430,11 @@ msgstr "Esimese korra nõustaja"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr "Mandrake juhtimiskeskus"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr "Mandrake veateate abivahend"
@@ -17551,6 +17391,28 @@ msgstr "Liides %s (kasutab moodulit %s)"
#: ../../standalone/drakgw:1
#, c-format
+msgid "Net Device"
+msgstr "Võrguseade"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+"Palun sisestage Internetiühendust teostava seadme nimi.\n"
+"\n"
+"Näited:\n"
+"\t\tppp+ modemi- või DSL ühenduse korral. \n"
+"\t\teth0 või eth1 kaabliühenduse korral, \n"
+"\t\tippp+ ISDN ühenduse korral.\n"
+
+#: ../../standalone/drakgw:1
+#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -17923,7 +17785,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -18130,6 +17992,11 @@ msgid "choose image file"
msgstr "valige pildifail"
#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "valige pildifail"
+
+#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
msgstr "Käivituslogo pildi seadistamine"
@@ -18609,11 +18476,21 @@ msgstr "võrguprinteri port"
#: ../../standalone/harddrake2:1
#, c-format
+msgid "the name of the CPU"
+msgstr "protsessori (CPU) nimi"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "Name"
msgstr "Nimi"
#: ../../standalone/harddrake2:1
#, c-format
+msgid "the number of buttons the mouse has"
+msgstr "hiire nuppude arv"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "Number of buttons"
msgstr "Nuppude arv"
@@ -18780,7 +18657,7 @@ msgstr "See väli kirjeldab seadet"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -19788,6 +19665,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr "Meili, uudiste, veebi, jututamise ja failiülekande vahendid"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Mängud"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimeedia - Graafika"
@@ -19842,3 +19723,111 @@ msgstr "Isiklikud rahaasjad"
#: ../../share/compssUsers:999
msgid "Programs to manage your finances, such as gnucash"
msgstr "Isiklike rahaasjade rakendused, näiteks gnucash"
+
+#~ msgid "no network card found"
+#~ msgstr "võrgukaarti ei leitud"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "and view animations with Mozilla and Konqueror, or read your mail and "
+#~ "handle your personal information with Evolution and Kmail"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 on valinud just Teie jaoks välja parima tarkvara. "
+#~ "Liikuge ringi veebis ja vaadake animatsioone Mozilla ja Konquerori "
+#~ "vahendusel või lugege kirju ja korraldage oma vajalikku erainfot "
+#~ "Evolution ja KMaili abil"
+
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Võtke Internetist viimane välja"
+
+#~ msgid "Push multimedia to its limits!"
+#~ msgstr "Võtke multimeediast kõik, mida võtta annab!"
+
+#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
+#~ msgstr "Avastage uusimad ja parimad graafika- ja multimeediavahendid!"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 pakub parimaid avatud tarkvara mänge - põnevust, "
+#~ "seiklusi, strateegiat..."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 pakub võimsa vahendi oma masinat igati kohandada ja "
+#~ "seadistada"
+
+#~ msgid "User interfaces"
+#~ msgstr "Kasutajaliidesed"
+
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+#~ "Kasutage GNU gcc 3 kompilaatori täit jõudu ning parimaid "
+#~ "arendusplatvorme, mida avatud tarkvara kogukond suudab pakkuda"
+
+#~ msgid "Development simplified"
+#~ msgstr "Arendus lihtsamat moodi"
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ "See tulemüür sisaldab võrguvõimalusi, mis lubavad rahuldada kõik "
+#~ "vajadused, mis Teil turvalisuse osas võivad esineda"
+
+#~ msgid ""
+#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
+#~ "N.F.)"
+#~ msgstr ""
+#~ "MandrakeSecurity tootepere sisaldab universaalset tulemüüri \"Multi "
+#~ "Network Firewall\" (M.N.F.)"
+
+#~ msgid "Strategic partners"
+#~ msgstr "Strateegilised partnerid"
+
+#~ msgid ""
+#~ "Whether you choose to teach yourself online or via our network of "
+#~ "training partners, the Linux-Campus catalogue prepares you for the "
+#~ "acknowledged LPI certification program (worldwide professional technical "
+#~ "certification)"
+#~ msgstr ""
+#~ "Hoolimata sellest, kas kavatsete teadmisi omandada võrgus või meie "
+#~ "õppepartnerite võrgustiku vahendusel, valmistab Linux-Campus Teid ette "
+#~ "tunnustatud LPI sertifitseerimisprogrammi läbimiseks (see on üleilmne "
+#~ "tehnilise professionaalsuse sertifikaat)"
+
+#~ msgid "Certify yourself on Linux"
+#~ msgstr "Hankige endale Linuxi sertifikaat"
+
+#~ msgid ""
+#~ "The training program has been created to respond to the needs of both end "
+#~ "users and experts (Network and System administrators)"
+#~ msgstr ""
+#~ "Õppeprogrammi loomisel võeti arvesse nii lõppkasutajate kui ekspertide "
+#~ "(võrgu- ja süsteemiadministraatorid) vajadusi"
+
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr "Tutvuge MandrakeSofti õpingukeskusega Linux-Campus"
+
+#~ msgid ""
+#~ "MandrakeClub and Mandrake Corporate Club were created for business and "
+#~ "private users of Mandrake Linux who would like to directly support their "
+#~ "favorite Linux distribution while also receiving special privileges. If "
+#~ "you enjoy our products, if your company benefits from our products to "
+#~ "gain a competititve edge, if you want to support Mandrake Linux "
+#~ "development, join MandrakeClub!"
+#~ msgstr ""
+#~ "Mandrake klubi ja Mandrake äriklubi loodi Mandrake Linuxi äri- ja "
+#~ "erakasutajatele, kes soovivad otseselt toetada meelepärast Linuxi "
+#~ "distributsiooni ning saada vastutasuks erillisi privileege. Kui meie "
+#~ "toode Teile meeldib, kui Teie firma on meie toodete abil saavutanud "
+#~ "ärilist edu, kui Te soovite toetada Mandrake Linuxi arendamist, siis "
+#~ "ühinege Mandrake klubiga!"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr "Avastage Mandrake klubi ja Mandrake äriklubi"
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index 6cd911d48..10fa7ccca 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2002-10-13 17:11+0200\n"
"Last-Translator: Iñigo Salvador Azurmendi <xalba@euskalnet.net>\n"
"Language-Team: Euskara <linux-eu@chanae.alphanet.ch>\n"
@@ -1096,85 +1096,71 @@ msgstr ""
"disko gogorra. Kontuz ibili, bertako datu guztiak galduko dira eta ezin\n"
"izango dira berreskuratu!"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
-msgstr ""
-"Hemen zure ordenagailuari dagozkion parametroak aurkezten dira.\n"
-"Instalatutako hardwarearen arabera, ondoko sarrerak ikusiko dituzu - edo\n"
-"ez:\n"
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
"\n"
-" * \"Sagua\": egiaztatu uneko sagu-konfigurazioa eta, behar izanez gero,\n"
-"egin klik botoian, aldatzeko;\n"
-"\n"
-" * \"Teklatua\": egiaztatu uneko teklatuaren konfigurazioa eta, behar\n"
-"izanez gero, egin klik botoian aldatzeko;\n"
-"\n"
-" * \"Ordu-zona\": DrakXk, lehenespenez, aukeratutako hizkuntzatik asmatzen\n"
-"du zure ordu-zona. Baina hemen ere, teklatua aukeratzean bezala, baliteke\n"
-"aukeratutako hizkuntzari dagokion herrialdean ez egotea zu. Horregatik,\n"
-"\"Ordu-zona\" botoian klik egin beharko duzu erlojua zu zauden ordu-zonaren\n"
-"arabera konfiguratzeko;\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
"\n"
-" * \"Inprimagailua\": \"Inprimagailurik ez\" botoian klik eginez,\n"
-"inprimagailuaren konfigurazio-morroia irekiko da;\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
"\n"
-" * \"Soinu-txartela\": zure sisteman soinu-txartel bat detektatzen bada,\n"
-"hemen bistaratuko da. Instalazio-garaian ezin da aldaketarik egin;\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
"\n"
-" * \"Telebista-txartela\": zure sisteman telebista-txartel bat detektatzen\n"
-"bada, hemen bistaratuko da. Instalazio-garaian ezin da aldaketarik egin;\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
"\n"
-" * \"ISDN txartela\": zure sisteman ISDN txartel bat detektatzen bada,\n"
-"hemen bistaratuko da. Egin klik botoian txartelaren parametroak aldatzeko."
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
+msgstr ""
#: ../../help.pm:1
#, c-format
@@ -1357,13 +1343,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1414,7 +1395,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1460,10 +1441,8 @@ msgstr ""
"erabili lprNG. Bestela, hobe da CUPS, sareetan lan egiteko sinpleagoa eta\n"
"hobea delako."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
"automated. DrakX will analyze the disk boot sector and act according to\n"
@@ -1482,59 +1461,8 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Mandrake Linux-en CD-ROMak berreskuratze-modua dauka barnean. Hura erabili\n"
-"dezakezu CD-ROMetik abiatu, >>F1<< tekla abioan sakatu eta gonbitan "
-">>rescue<<\n"
-"idatziz. Baina zure ordenagailua CD-ROMetik abiatu ezin daitekeen kasuan, "
-"urrats\n"
-"honetara itzuli beharko zenuke laguntza bila gutxienez bi egoeratan:\n"
-"\n"
-" * abio-zamatzailea instalatzeko, DrakXek zure disko nagusiko abio-sektorea\n"
-"(MBR) berridatziko du (baldin eta ez baduzu beste abio-kudeatzaile bat\n"
-"erabiltzen), Windows nahiz GNU/Linux-ekin hasi ahal zaitezen (zure sisteman\n"
-"Windows daukazula suposatuz). Windows berrinstalatzen baduzu,\n"
-"Microsoft-en instalazio-prozesuak abioko sektorea berridatziko du, eta gero\n"
-"ezin izango duzu GNU/Linux abiarazi!\n"
-"\n"
-" * arazoren bat sortzen bada eta GNU/Linux disko zurrunetik abiarazi ezin "
-"baduzu,\n"
-"diskete hau izango da GNU/Linux abiarazteko bide bakarra. Sistema-tresna "
-"ugari ditu, argindarra eten, idazketa-akats tamalgarri bat, pasahitz batean "
-"akatsa, edo\n"
-"beste edozein arrazoigatik hondatu den sistema berreskuratzeko.\n"
-"\n"
-"\"Bai\" esaten baduzu, unitatean diskete bat sartzea eskatuko zaizu. "
-"Sartuko\n"
-"duzun disketea hutsik egon behar da edo dituen datuak ez dira beharrezko "
-"izan\n"
-"behar. Ez duzu eratu beharko, DrakX-ek disko osoa gainidatziko baitu."
+"(\"On Floppy\")."
+msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
@@ -1792,9 +1720,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1875,7 +1808,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
@@ -2107,9 +2042,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -2131,14 +2064,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
"Mandrake Linux instalatzen duzunean, litekeena da pakete batzuk aldatu\n"
"izana hasierako argitalpenetik. Beharbada akats batzuk konponduko ziren,\n"
@@ -2217,7 +2150,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2306,7 +2239,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2331,13 +2264,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"Hona iritsita, Mandrake Linux sistema eragilea disko gogorrean non\n"
"instalatu aukeratu beharko duzu. Disko gogorra hutsik badago edo lehendik\n"
@@ -2408,63 +2341,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Mandrake Linux-en CD-ROMak berreskuratze-modua dauka barnean. Hura erabili\n"
-"dezakezu CD-ROMetik abiatu, >>F1<< tekla abioan sakatu eta gonbitan "
-">>rescue<<\n"
-"idatziz. Baina zure ordenagailua CD-ROMetik abiatu ezin daitekeen kasuan, "
-"urrats\n"
-"honetara itzuli beharko zenuke laguntza bila gutxienez bi egoeratan:\n"
-"\n"
-" * abio-zamatzailea instalatzeko, DrakXek zure disko nagusiko abio-sektorea\n"
-"(MBR) berridatziko du (baldin eta ez baduzu beste abio-kudeatzaile bat\n"
-"erabiltzen), Windows nahiz GNU/Linux-ekin hasi ahal zaitezen (zure sisteman\n"
-"Windows daukazula suposatuz). Windows berrinstalatzen baduzu,\n"
-"Microsoft-en instalazio-prozesuak abioko sektorea berridatziko du, eta gero\n"
-"ezin izango duzu GNU/Linux abiarazi!\n"
-"\n"
-" * arazoren bat sortzen bada eta GNU/Linux disko zurrunetik abiarazi ezin "
-"baduzu,\n"
-"diskete hau izango da GNU/Linux abiarazteko bide bakarra. Sistema-tresna "
-"ugari ditu, argindarra eten, idazketa-akats tamalgarri bat, pasahitz batean "
-"akatsa, edo\n"
-"beste edozein arrazoigatik hondatu den sistema berreskuratzeko.\n"
-"\n"
-"\"Bai\" esaten baduzu, unitatean diskete bat sartzea eskatuko zaizu. "
-"Sartuko\n"
-"duzun disketea hutsik egon behar da edo dituen datuak ez dira beharrezko "
-"izan\n"
-"behar. Ez duzu eratu beharko, DrakX-ek disko osoa gainidatziko baitu."
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
-#: ../../help.pm:1
#, c-format
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
@@ -2614,7 +2490,8 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2649,7 +2526,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -4259,6 +4136,12 @@ msgstr "Zerbitzuak"
msgid "System"
msgstr "Sistema"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "Ataka"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
@@ -4701,6 +4584,11 @@ msgstr "Aukeratu sagu-mota."
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Enkriptatze-gakoa"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "Bertsio-berritu"
@@ -9521,11 +9409,6 @@ msgstr "Sarea konfiguratzen"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "ez da sare-txartelik aurkitu"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
@@ -10816,19 +10699,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"Ondoko inprimagailuak daude konfiguratuta. Egin klik bikoitza inprimagailu "
-"batean ezarpenak aldatzeko, inprimagailua lehenesteko, informazioa ikusteko, "
-"edo urruneko CUPS zerbitzari bateko inprimagailu bat Star Office/OpenOffice."
-"org-rentzat erabilgarri egiteko."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "Inprimatze-sistema: "
@@ -11463,6 +11333,11 @@ msgid "Option %s must be an integer number!"
msgstr "%s aukerak osoko zenbakia izan behar du!"
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Inprimagailu-modeloaren hautapena"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -13316,8 +13191,8 @@ msgstr "Ongi etorri Crackers-era"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
"MandrakeSoft-en arrakastaren funtsa software librearen printzipioa da. Zure "
"sistema eragile berria mundu osoko Linux komunitatearen elkarlanaren emaitza "
@@ -13325,7 +13200,7 @@ msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "Ongi etorri iturburu irekiaren mundura"
#: ../../share/advertising/01-thanks.pl:1
@@ -13336,8 +13211,8 @@ msgstr "Eskerrik asko Mandrake Linux 9.1 aukeratzeagatik"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
"Zure jakinduria elkarbanatzeko eta Linux tresnak eraikitzen laguntzeko, egin "
"zaitez gure \"Komunitate\" web-orrian aurkituko dituzun eztabaida-taldeen "
@@ -13345,216 +13220,159 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr "Iturburu Irekiaren Komunitateari buruz gehiago jakin nahi?"
-
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Sar zaitez software librearen munduan"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
-"Mandrake Linux 9.1k zuretzako software honenak aukeratu ditu. Surfeatu "
-"Webean eta ikusi animazioak Mozilla eta Konquerorrekin, edo irakurri zure "
-"posta eta kudeatu zure informazio pertsonalak Evolution eta Kmail erabiliz"
+"Iturburu Irekiaren Komunitateari buruz gehiago jakin nahi? Sar zaitez "
+"software librearen munduan!"
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
-msgstr "Eskuratu Internetek eman dezakeen guztia"
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
"Mandrake Linux 9.1k audio fitxategiak jotzeko, zure argazkiak editatu eta "
"manipulatzeko, eta bideoak ikusteko software berriena erabiltzeko aukera "
"ematen dizu"
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr "Sakatu multimedia bere limitera!"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr "Ezagutu itzazu tresna grafiko eta multimedia eguneratuenak!"
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"Mandrake Linux 9.1k Iturburu Irekiko jokorik onenak eskaintzen ditu - makina-"
-"jokoak, ekintza, estrategia, ..."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "Jokoak"
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-"Mandrake Linux 9.1k zure makina erabat pertsonalizatu eta konfiguratzeko "
-"tresna ahaltsua dauka"
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Mandrake-ren Kontrol Zentroa"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Mandrake Terminal Zerbitzariaren Ezarpena"
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
"Mandrake Linux 9.1k erabat aldatu daitezkeen 11 erabiltzaile interfaze "
"eskaintzen dizkizu: KDE 3, Gnome 2, WindowMaker, ..."
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "Erabiltzaile-interfazeak"
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-"GNU gcc 3 konpilatzailearen indar osoa erabili, baita Iturburu Irekiko "
-"garapen ingurune onenak ere"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "Mandrake Linux 9.1 garapen plataforma berriena da"
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr "Garapena erraztuta"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"Bihur ezazu zure makina zerbitzari ahaltsu, saguaren klik gutxi batzuk "
"eginez: Web zerbitzaria, posta, suhesia, routerra, fitxategi eta inprimaketa "
"zerbitzaria, ..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr "Bihurtu zure makina zerbitzari fidagarria"
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr "Produktu hau MandrakeStore webgunean eskuragarri dago"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-"Suhesi produktu honek zure segurtasun beharrak hasetzeko aukera emango dizun "
-"sareko ezaugarriak ditu"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr ""
-"MandrakeSecurity aukeren artean Multi Network Firewall (M.N.F.) produktua "
-"dauka"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr "Optimizatu zure segurtasuna"
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"Gure Linux soluzioen aukera osoa, eta baita produktu eta beste \"gutizia\" "
"batzutan eskaintza bereziak eskuragarri daude lerroan gure e-dendan:"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr "MandrakeSoft denda ofiziala"
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
+#: ../../share/advertising/09-mdksecure.pl:1
+#, fuzzy, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"MandrakeSoftek, Mandrake Linuxentzako soluzio bateragarri profesionalak "
"eskaintzen dituzten konpainien artean aukeratutako batzuekin lanegiten du. "
"MandrakeStoren aipatutako kide horien zerrenda eskuratu daiteke."
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr "Kide estrategikoak"
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-"Zeure buruari lerroan edo gure entrenamendu kide sarearen bitartez irakastea "
-"erabakitzen baduzu, Linux-Campus katalogoak LPI zertifikazio ezagunaren "
-"programarako prestatuko zaitu (mundu zabaleko zertifikazio tekniko "
-"profesionala)"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr "Zertifikatu zure burua Linux-ekiko"
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "Optimizatu zure segurtasuna"
+
+#: ../../share/advertising/11-mnf.pl:1
+#, c-format
+msgid "This product is available on the MandrakeStore Web site."
+msgstr "Produktu hau MandrakeStore webgunean eskuragarri dago"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-"Entrenamendu programa bien, erabiltzaileen eta espertuen (Sare eta Sistema "
-"administratzaileak), beharrei erantzuteko sortu da"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr "Ezagutu MandrakeSoften Linux-Campus entrenamendu katalogoa"
+msgid "Secure your networks with the Multi Network Firewall"
+msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -13565,21 +13383,21 @@ msgstr ""
"zure jakinduria elkarbanatu eta besteei lagundu lerroko euskarri teknikoko "
"webguneetan Aditu ezaguna bilakatuz:"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
"Aurkitu zure arazoei erantzuna MandrakeSoft-en lerroko euskarri "
"plataformaren bitartez"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr "Bilakatu zaitez MandrakeExpert"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
@@ -13588,38 +13406,16 @@ msgstr ""
"Gertaera guztiek MandrakeSoften Aditu tekniko kualifikatu bakarraren "
"jarraipena izango dute."
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr "Konpainien euskarri behar espezifikoei erantzuteko lerroko plataforma"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert Korporatiboa"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-"MandrakeClub eta Mandrake Corporate Club beraien Linux banaketa gogokoenari "
-"laguntzearekin batera pribilegio bereziak jasotzen dituzten Mandrake Linuxen "
-"enpresa erabiltzaile eta erabiltzaile pribatuentzako sortu zen. Gure "
-"produktuak gustoko badituzu, zure konpainiak gure produktuengandik etekina "
-"badu lehiakortasuna lortzeko, Mandrake Linux garapenari euskarri eman nahi "
-"badiozu, sartu MandrakeClubera!"
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr "Ezagutu \"MandrakeClub\" eta \"Mandrake Corporate Club\""
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -16117,6 +15913,11 @@ msgstr "Lehen Aldikorako Morroia"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr "Mandrake-ren Kontrol Zentroa"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr "Mandrake Akatsak Jakinarazteko Tresna"
@@ -17057,6 +16858,22 @@ msgid "Interface %s (using module %s)"
msgstr "%s interfazea (%s modulua erabiliz)"
#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Xinetd Zerbitzua"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -17416,7 +17233,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -17621,6 +17438,11 @@ msgid "choose image file"
msgstr "aukeratu irudi fitxategia"
#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "aukeratu irudi fitxategia"
+
+#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
msgstr "Abiapen-irudia konfiguratu"
@@ -18095,10 +17917,20 @@ msgstr ", \"%s\" sareko inprimagailua, %s portua"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
+msgid "the name of the CPU"
+msgstr "gailuaren saltzaile izena"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
msgid "Name"
msgstr "Izena: "
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "aurrerapen-barraren kolorea"
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Number of buttons"
msgstr "Botoi kopurua"
@@ -18261,7 +18093,7 @@ msgstr "eremu honek gailua deskribatzen du"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -19262,6 +19094,10 @@ msgstr ""
"tresnak"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Jokoak"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimedia - Grafikoak"
@@ -19317,6 +19153,381 @@ msgstr "Finantza pertsonalak"
msgid "Programs to manage your finances, such as gnucash"
msgstr "Zure finantzak kudeatzeko programak, hala nola gnucash"
+#~ msgid "no network card found"
+#~ msgstr "ez da sare-txartelik aurkitu"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "and view animations with Mozilla and Konqueror, or read your mail and "
+#~ "handle your personal information with Evolution and Kmail"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1k zuretzako software honenak aukeratu ditu. Surfeatu "
+#~ "Webean eta ikusi animazioak Mozilla eta Konquerorrekin, edo irakurri zure "
+#~ "posta eta kudeatu zure informazio pertsonalak Evolution eta Kmail erabiliz"
+
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Eskuratu Internetek eman dezakeen guztia"
+
+#~ msgid "Push multimedia to its limits!"
+#~ msgstr "Sakatu multimedia bere limitera!"
+
+#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
+#~ msgstr "Ezagutu itzazu tresna grafiko eta multimedia eguneratuenak!"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 9.1k Iturburu Irekiko jokorik onenak eskaintzen ditu - "
+#~ "makina-jokoak, ekintza, estrategia, ..."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1k zure makina erabat pertsonalizatu eta konfiguratzeko "
+#~ "tresna ahaltsua dauka"
+
+#~ msgid "User interfaces"
+#~ msgstr "Erabiltzaile-interfazeak"
+
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+#~ "GNU gcc 3 konpilatzailearen indar osoa erabili, baita Iturburu Irekiko "
+#~ "garapen ingurune onenak ere"
+
+#~ msgid "Development simplified"
+#~ msgstr "Garapena erraztuta"
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ "Suhesi produktu honek zure segurtasun beharrak hasetzeko aukera emango "
+#~ "dizun sareko ezaugarriak ditu"
+
+#~ msgid ""
+#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
+#~ "N.F.)"
+#~ msgstr ""
+#~ "MandrakeSecurity aukeren artean Multi Network Firewall (M.N.F.) produktua "
+#~ "dauka"
+
+#~ msgid "Strategic partners"
+#~ msgstr "Kide estrategikoak"
+
+#~ msgid ""
+#~ "Whether you choose to teach yourself online or via our network of "
+#~ "training partners, the Linux-Campus catalogue prepares you for the "
+#~ "acknowledged LPI certification program (worldwide professional technical "
+#~ "certification)"
+#~ msgstr ""
+#~ "Zeure buruari lerroan edo gure entrenamendu kide sarearen bitartez "
+#~ "irakastea erabakitzen baduzu, Linux-Campus katalogoak LPI zertifikazio "
+#~ "ezagunaren programarako prestatuko zaitu (mundu zabaleko zertifikazio "
+#~ "tekniko profesionala)"
+
+#~ msgid "Certify yourself on Linux"
+#~ msgstr "Zertifikatu zure burua Linux-ekiko"
+
+#~ msgid ""
+#~ "The training program has been created to respond to the needs of both end "
+#~ "users and experts (Network and System administrators)"
+#~ msgstr ""
+#~ "Entrenamendu programa bien, erabiltzaileen eta espertuen (Sare eta "
+#~ "Sistema administratzaileak), beharrei erantzuteko sortu da"
+
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr "Ezagutu MandrakeSoften Linux-Campus entrenamendu katalogoa"
+
+#~ msgid ""
+#~ "MandrakeClub and Mandrake Corporate Club were created for business and "
+#~ "private users of Mandrake Linux who would like to directly support their "
+#~ "favorite Linux distribution while also receiving special privileges. If "
+#~ "you enjoy our products, if your company benefits from our products to "
+#~ "gain a competititve edge, if you want to support Mandrake Linux "
+#~ "development, join MandrakeClub!"
+#~ msgstr ""
+#~ "MandrakeClub eta Mandrake Corporate Club beraien Linux banaketa "
+#~ "gogokoenari laguntzearekin batera pribilegio bereziak jasotzen dituzten "
+#~ "Mandrake Linuxen enpresa erabiltzaile eta erabiltzaile pribatuentzako "
+#~ "sortu zen. Gure produktuak gustoko badituzu, zure konpainiak gure "
+#~ "produktuengandik etekina badu lehiakortasuna lortzeko, Mandrake Linux "
+#~ "garapenari euskarri eman nahi badiozu, sartu MandrakeClubera!"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr "Ezagutu \"MandrakeClub\" eta \"Mandrake Corporate Club\""
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#, fuzzy
+#~ msgid ""
+#~ "As a review, DrakX will present a summary of various information it has\n"
+#~ "about your system. Depending on your installed hardware, you may have "
+#~ "some\n"
+#~ "or all of the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary.\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Country\": check the current country selection. If you are not in "
+#~ "this\n"
+#~ "country, click on the button and choose another one.\n"
+#~ "\n"
+#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+#~ "primary language you have chosen. But here, just as in your choice of a\n"
+#~ "keyboard, you may not be in a country to which the chosen language\n"
+#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
+#~ "configure the clock for the correct timezone.\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation.\n"
+#~ "\n"
+#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+#~ "click that button. This should be reserved to advanced users.\n"
+#~ "\n"
+#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+#~ "interface in \"800x600\" resolution. If that does not suits you, click "
+#~ "on\n"
+#~ "the button to reconfigure your graphical interface.\n"
+#~ "\n"
+#~ " * \"Network\": If you want to configure your Internet or local network\n"
+#~ "access now, you can by clicking on this button.\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. If you notice the sound card displayed is not the one "
+#~ "that\n"
+#~ "is actually present on your system, you can click on the button and "
+#~ "choose\n"
+#~ "another driver.\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. If you have a TV card and it is not detected, click on the button "
+#~ "to\n"
+#~ "try to configure it manually.\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with the card."
+#~ msgstr ""
+#~ "Hemen zure ordenagailuari dagozkion parametroak aurkezten dira.\n"
+#~ "Instalatutako hardwarearen arabera, ondoko sarrerak ikusiko dituzu - edo\n"
+#~ "ez:\n"
+#~ "\n"
+#~ " * \"Sagua\": egiaztatu uneko sagu-konfigurazioa eta, behar izanez gero,\n"
+#~ "egin klik botoian, aldatzeko;\n"
+#~ "\n"
+#~ " * \"Teklatua\": egiaztatu uneko teklatuaren konfigurazioa eta, behar\n"
+#~ "izanez gero, egin klik botoian aldatzeko;\n"
+#~ "\n"
+#~ " * \"Ordu-zona\": DrakXk, lehenespenez, aukeratutako hizkuntzatik "
+#~ "asmatzen\n"
+#~ "du zure ordu-zona. Baina hemen ere, teklatua aukeratzean bezala, "
+#~ "baliteke\n"
+#~ "aukeratutako hizkuntzari dagokion herrialdean ez egotea zu. Horregatik,\n"
+#~ "\"Ordu-zona\" botoian klik egin beharko duzu erlojua zu zauden ordu-"
+#~ "zonaren\n"
+#~ "arabera konfiguratzeko;\n"
+#~ "\n"
+#~ " * \"Inprimagailua\": \"Inprimagailurik ez\" botoian klik eginez,\n"
+#~ "inprimagailuaren konfigurazio-morroia irekiko da;\n"
+#~ "\n"
+#~ " * \"Soinu-txartela\": zure sisteman soinu-txartel bat detektatzen bada,\n"
+#~ "hemen bistaratuko da. Instalazio-garaian ezin da aldaketarik egin;\n"
+#~ "\n"
+#~ " * \"Telebista-txartela\": zure sisteman telebista-txartel bat "
+#~ "detektatzen\n"
+#~ "bada, hemen bistaratuko da. Instalazio-garaian ezin da aldaketarik egin;\n"
+#~ "\n"
+#~ " * \"ISDN txartela\": zure sisteman ISDN txartel bat detektatzen bada,\n"
+#~ "hemen bistaratuko da. Egin klik botoian txartelaren parametroak aldatzeko."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#, fuzzy
+#~ msgid ""
+#~ "LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
+#~ "what it finds there:\n"
+#~ "\n"
+#~ " * if a Windows boot sector is found, it will replace it with a grub/"
+#~ "LILO\n"
+#~ "boot sector. This way you will be able to load either GNU/Linux or "
+#~ "another\n"
+#~ "OS.\n"
+#~ "\n"
+#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
+#~ "one.\n"
+#~ "\n"
+#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
+#~ "bootloader.\n"
+#~ "\n"
+#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
+#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
+#~ "disk\n"
+#~ "(\"On Floppy\").\n"
+#~ "\n"
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Mandrake Linux-en CD-ROMak berreskuratze-modua dauka barnean. Hura "
+#~ "erabili\n"
+#~ "dezakezu CD-ROMetik abiatu, >>F1<< tekla abioan sakatu eta gonbitan "
+#~ ">>rescue<<\n"
+#~ "idatziz. Baina zure ordenagailua CD-ROMetik abiatu ezin daitekeen kasuan, "
+#~ "urrats\n"
+#~ "honetara itzuli beharko zenuke laguntza bila gutxienez bi egoeratan:\n"
+#~ "\n"
+#~ " * abio-zamatzailea instalatzeko, DrakXek zure disko nagusiko abio-"
+#~ "sektorea\n"
+#~ "(MBR) berridatziko du (baldin eta ez baduzu beste abio-kudeatzaile bat\n"
+#~ "erabiltzen), Windows nahiz GNU/Linux-ekin hasi ahal zaitezen (zure "
+#~ "sisteman\n"
+#~ "Windows daukazula suposatuz). Windows berrinstalatzen baduzu,\n"
+#~ "Microsoft-en instalazio-prozesuak abioko sektorea berridatziko du, eta "
+#~ "gero\n"
+#~ "ezin izango duzu GNU/Linux abiarazi!\n"
+#~ "\n"
+#~ " * arazoren bat sortzen bada eta GNU/Linux disko zurrunetik abiarazi ezin "
+#~ "baduzu,\n"
+#~ "diskete hau izango da GNU/Linux abiarazteko bide bakarra. Sistema-tresna "
+#~ "ugari ditu, argindarra eten, idazketa-akats tamalgarri bat, pasahitz "
+#~ "batean akatsa, edo\n"
+#~ "beste edozein arrazoigatik hondatu den sistema berreskuratzeko.\n"
+#~ "\n"
+#~ "\"Bai\" esaten baduzu, unitatean diskete bat sartzea eskatuko zaizu. "
+#~ "Sartuko\n"
+#~ "duzun disketea hutsik egon behar da edo dituen datuak ez dira beharrezko "
+#~ "izan\n"
+#~ "behar. Ez duzu eratu beharko, DrakX-ek disko osoa gainidatziko baitu."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
+#, fuzzy
+#~ msgid ""
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Mandrake Linux-en CD-ROMak berreskuratze-modua dauka barnean. Hura "
+#~ "erabili\n"
+#~ "dezakezu CD-ROMetik abiatu, >>F1<< tekla abioan sakatu eta gonbitan "
+#~ ">>rescue<<\n"
+#~ "idatziz. Baina zure ordenagailua CD-ROMetik abiatu ezin daitekeen kasuan, "
+#~ "urrats\n"
+#~ "honetara itzuli beharko zenuke laguntza bila gutxienez bi egoeratan:\n"
+#~ "\n"
+#~ " * abio-zamatzailea instalatzeko, DrakXek zure disko nagusiko abio-"
+#~ "sektorea\n"
+#~ "(MBR) berridatziko du (baldin eta ez baduzu beste abio-kudeatzaile bat\n"
+#~ "erabiltzen), Windows nahiz GNU/Linux-ekin hasi ahal zaitezen (zure "
+#~ "sisteman\n"
+#~ "Windows daukazula suposatuz). Windows berrinstalatzen baduzu,\n"
+#~ "Microsoft-en instalazio-prozesuak abioko sektorea berridatziko du, eta "
+#~ "gero\n"
+#~ "ezin izango duzu GNU/Linux abiarazi!\n"
+#~ "\n"
+#~ " * arazoren bat sortzen bada eta GNU/Linux disko zurrunetik abiarazi ezin "
+#~ "baduzu,\n"
+#~ "diskete hau izango da GNU/Linux abiarazteko bide bakarra. Sistema-tresna "
+#~ "ugari ditu, argindarra eten, idazketa-akats tamalgarri bat, pasahitz "
+#~ "batean akatsa, edo\n"
+#~ "beste edozein arrazoigatik hondatu den sistema berreskuratzeko.\n"
+#~ "\n"
+#~ "\"Bai\" esaten baduzu, unitatean diskete bat sartzea eskatuko zaizu. "
+#~ "Sartuko\n"
+#~ "duzun disketea hutsik egon behar da edo dituen datuak ez dira beharrezko "
+#~ "izan\n"
+#~ "behar. Ez duzu eratu beharko, DrakX-ek disko osoa gainidatziko baitu."
+
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "Ondoko inprimagailuak daude konfiguratuta. Egin klik bikoitza "
+#~ "inprimagailu batean ezarpenak aldatzeko, inprimagailua lehenesteko, "
+#~ "informazioa ikusteko, edo urruneko CUPS zerbitzari bateko inprimagailu "
+#~ "bat Star Office/OpenOffice.org-rentzat erabilgarri egiteko."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index ad5b084c0..7c9e16524 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -11,8 +11,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-fi - MDK Release 9.1\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
-"PO-Revision-Date: 2003-02-26 20:26+0200\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
+"PO-Revision-Date: 2003-03-06 13:36+0200\n"
"Last-Translator: Thomas Backlund <tmb@iki.fi>\n"
"Language-Team: Finnish <cooker-i18n@linux-mandrake.com>\n"
"MIME-Version: 1.0\n"
@@ -1137,99 +1137,128 @@ msgstr ""
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
"Tässä DrakX näyttää yhteenvedon laitteistoasi koskevista tiedoista\n"
"jotka se on kerännyt. Asennetusta laitteistosta riippuen, näet joitakin\n"
-"tai kaikki seuraavista tietueista:\n"
+"tai kaikki seuraavista tietueista. Jokainen tietue koostuu asetettavasta\n"
+"laitteesta ja lyhyestä selostuksesta laitteen astuksien nykytilasta. Paina\n"
+"sitä vastaava \"Määrittele\" painiketta jos haluat muuttaa sitä.\n"
"\n"
-" * \"Hiiri\": tarkista nykyinen hiiriasetus, ja paina painiketta jos on \n"
-"tarvetta muuttaa sitä;\n"
+" * \"Näppäimistö\": tarkista näppäinasettelu, ja paina \"Määrittele\"\n"
+"jos on tarvetta muuttaa sitä;\n"
"\n"
-" * \"Näppäimistö\": tarkista näppäinasettelu, ja paina painiketta jos on \n"
-"tarvetta muuttaa sitä;\n"
-"\n"
-" * \"Maa\": takista maa-asetukset, jos et ole maassa, joka on valittu, "
-"paina\n"
-"painiketta ja valitse joku muu;\n"
+" * \"Maa\": takista maa-asetukset. jos et ole maassa, joka on valittu, \n"
+"paina \"Määrittele\" painiketta ja valitse joku muu. Jos maasi ei ole\n"
+"listassa, paina \"Lisää\" painiketta jolloin näet listan kaikista maista.\n"
" * \"Aikavyöhyke\": DrakX oletuksena arvioi aikavyöhykkeesi riippuen siitä,\n"
-"minkä kielen olet valinnut. Mutta samalla tavalla kun näppäimistöllä, voi\n"
-"olla ettet ole samassa maassa mihin kieli viittaa. Tästä syystä sinun "
-"tarvitsee\n"
-"painaa \"Aikavyöhyke\"-painiketta asettaaksesi kellon sen mukaan missä\n"
-"aikavyöhykkeessä olet;\n"
+"minkä kielen olet valinnut. Jos tämä ei ole oikea, voit muuttaa sitä\n"
+"painamalla \"Määrittele\". Tässä voit myös asettaa jos järjestelmäsi\n"
+"kello on asetettu GMT-aikaan ja jos haluat automaattisen kellon \n"
+"synkronointi ulkoisen aikapalvelimen kanssa.\n"
+"\n"
+" * \"Hiiri\": tarkista nykyinen hiiriasetus, ja paina \"Määrittele\" jos on\n"
+"tarvetta muuttaa sitä.\n"
"\n"
-" * \"Tulostin\": painamalla \"Ei tulostinta\"-painiketta avaat tulostuksen\n"
+" * \"Tulostin\": painamalla \"Määrittele\"-painiketta avaat tulostuksen\n"
"asetusvelhon. Lue lisää asiaa koskevasta luvusta ``Aloitusoppaasta''\n"
"saadaaksesi lisäätietoa miten asettaa uusi tulostin. Käyttöliittymä\n"
"joka esitetään siellä on vastaava kuin se jota käytetään asennuksen\n"
-"aikana;\n"
-"\n"
-" * \"Käynnistyslataaja\": jos haluat muuttaa käynnistyslataajasi asetuksia,\n"
-"paina tätä painiketta. Tätä ei kannata muuttaa jos et ole asiantuntija;\n"
-"\n"
-" * \"Graafinen käyttöliittymä\": oletuksena DrakX asettaa graafisen\n"
-"käyttöliittymäsi käyttämään \"800x600\" näyttötilaa. Jos tämä ei sovi\n"
-"sinulle, paina painiketta muuttaaksesi asetuksia;\n"
-"\n"
-" * \"Verkko\": jos haluat asettaa Internet- tai paikallisverkkoasetuksia\n"
-"nyt, voit painaa tätä painiketta;\n"
+"aikana.\n"
"\n"
" * \"Äänikortti\": jos äänikortti on tunnistettu järjestelmässäsi, se\n"
"näytetään täällä. Jos huomaat että näytetty äänikortti ei vastaa sitä\n"
-"joka on asennettu koneeseesi, voit painaa tätä painiketta ja valita toisen "
-"ajurin;\n"
+"joka on asennettu koneeseesi, voit painaa \"Määrittele\" ja valita toisen\n"
+"ajurin.\n"
+"\n"
+" * \"Graafinen käyttöliittymä\": oletuksena DrakX asettaa graafisen\n"
+"käyttöliittymäsi käyttämään \"800x600\" tai \"1024x768\" näyttötilaa.\n"
+"Jos tämä ei sovi sinulle, paina \"Määrittele\" muuttaaksesi asetukset.\n"
"\n"
" * \"TV-kortti\": jos TV-korttisi on tunnistettu järjestelmässäsi, se\n"
"näytetään täällä. Jos sinulla on TV-kortti ja sitä ei ole tunnistettu,\n"
-"voit painaa painiketta ja yrittää asettaa sen itse;\n"
+"voit painaa \"Määrittele\" ja yrittää asettaa sen itse.\n"
"\n"
" * \"ISDN-kortti\": jos ISDN-kortti on tunnistettu järjestelmässäsi, se\n"
-"näytetään täällä. Voit painaa painiketta jos sinulla on tarvetta muuttaa\n"
-"kortin asetuksia."
+"näytetään täällä. Voit painaa \"Määrittele\" jos sinulla on tarvetta \n"
+"muuttaa kortin asetuksia.\n"
+"\n"
+" * \"Verkko\": jos haluat asettaa Internet- tai paikallisverkkoasetuksia\n"
+"nyt, voit painaa \"Määrittele\".\n"
+"\n"
+"\n"
+" * \"Turvataso\": tässä voit muuttaa asennuksen alussa asettamasi\n"
+"turvatasoa jos haluat ().\n"
+"\n"
+" * \"Palomuuri\": Jos aiot yhdistää konettasi Internettiin, kannattaa\n"
+"suojautua verkon vaaroista asettamalla palomuuria. Katso aloitus-\n"
+"oppaasta tätä aihetta vastaava lukua saadaaksesi lisäätietoa\n"
+"palomuurin asetuksista.\n"
+"\n"
+" * \"Käynnistyslataaja\": jos haluat muuttaa käynnistyslataajasi asetuksia,\n"
+"paina \"Määrittele\". Tätä ei kannata muuttaa jos et ole asiantuntija.\n"
+"\n"
+" * \"Palvelut\": täällä voit määrittää mitkä palveluja järjestelmässäsi\n"
+"pyörii. Jos aiot käyttää tätä konetta palvelimena, ehdotamme että\n"
+"tarkistat näitä asetuksia."
#: ../../help.pm:1
#, c-format
@@ -1416,13 +1445,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1438,14 +1462,9 @@ msgstr ""
"Samalla myös tutkitaan löytyykö järjestelmästä PCI SCSI ohjaimia. Jos \n"
"SCSI-ohjain löytyy, asentaa DrakX tarvittava(t) ajuri(t).\n"
"\n"
-"Koska laitteiston tunnistaminen ei ole idiootinvarma, DrakX pyytää sinua \n"
-"varmistamaan jos koneestasi löytyy PCI SCSI -ohjain. Jos painat \"Kyllä\"\n"
-"sinulle näytetään valikkoa, josta voit valita oikean mallin. Paina \"Ei\" "
-"jos \n"
-"tiedät ettei sinulla ei ole SCSI-ohjainta koneessasi. Jos et ole varma, \n"
-"voit tarkistaa listan koneestasi tunnistetuista laitteista painamalla \n"
-"\"Katso laitteistotietoja\" ja paina \"Seuraava ->\". Tutki laitteisto-\n"
-"listaa ja paina \"Seuraava ->\" palataksesi SCSI-liityntä kysymykseen.\n"
+"Koska laitteiston tunnistaminen ei ole idiootinvarma, DrakX voi\n"
+"epäonnistua. Siinnä tapauksessa joudut määrittämään laitteistosi\n"
+"itse.\n"
"\n"
"Jos sinun pitää määrittää PCI SCSI ohjaintasi, DrakX kysyy sinulta\n"
"haluatko määrittää ohjaimen asetuksia. Ehdotamme että sallit DrakX\n"
@@ -1466,7 +1485,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1483,10 +1502,10 @@ msgid ""
"system you may change it by running PrinterDrake from the Mandrake Control\n"
"Center and clicking the expert button."
msgstr ""
-"Nyt on aika valita tulostusjärjestelmä tietokoneellesi. Muut "
-"käyttöjärjestelmät\n"
-"saattavat tarjota sinulle yhden, mutta Mandrake Linux tarjoaa kaksi. Kukin\n"
-"tulostusjärjestelmä sopii parhaiten tietylle asetuksille.\n"
+"Nyt on aika valita tulostusjärjestelmä tietokoneellesi. Muut käyttö-\n"
+"järjestelmät saattavat tarjota sinulle yhden, mutta Mandrake Linux \n"
+"tarjoaa kaksi. Kukin tulostusjärjestelmä sopii parhaiten tietylle \n"
+"asetuksille.\n"
"\n"
" * \"pdq\" -- joka tarkoittaa ``tulosta, älä jonota (print, don't queue)'',\n"
"Tämä on sopiva valinta jos sinulla on suora yhteys tulostimeesi ja haluat\n"
@@ -1498,17 +1517,17 @@ msgstr ""
" * \"CUPS\" -- ``Common Unix Printing System'', eli Yleinen Unix Tulostus-\n"
"järjestelmä, on mainio tulostettaessa paikalliseen tulostimeen, tai\n"
"vaikkapa maapallon toiselle puolelle. Se on yksinkertainen järjestelmä\n"
-"ja voi toimia tulostuspalvelimena vanhalle \"lpd\" tulostusjärjestelmälle.\n"
-"Näin ollen, se on yhteensopiva vanhempien järjestelmien kanssa. Se on\n"
-"monitaitoinen, mutta perusasetuksen teko on melkein yhtä helppoa kuin\n"
-"\"pdq\". Jos tarvitset \"lpd\" palvelimen emulointia, sinun pitää "
-"käynnistää\n"
-"\"cups-lpd\" demoni. \"CUPS\" sisältää graafinen käyttöliittymän jota \n"
-"voidaan käyttää tulostamiseen tai asetuksien tekoon\n"
+"ja voi toimia tulostuspalvelimena tai asiakkaana vanhalle \"lpd\" \n"
+"tulostusjärjestelmälle. Näin ollen, se on yhteensopiva vanhempien\n"
+"järjestelmien kanssa. Se on monitaitoinen, mutta perusasetuksen teko\n"
+"on melkein yhtä helppoa kuin \"pdq\". Jos tarvitset \"lpd\" palvelimen \n"
+"emulointia, sinun pitää käynnistää \"cups-lpd\" demoni. \"CUPS\" \n"
+"sisältää graafinen käyttöliittymän jota voidaan käyttää tulostamiseen \n"
+"tai asetuksien tekoon.\n"
"\n"
"Jos teet valinnan nyt, ja myöhemmin huomaat ettet pidä nykyistestä\n"
"tulostusjärjestelmästä voit muuttaa valintasi Mandraken Ohjauskeskuksesta\n"
-"löytyvässä PrinterDrakessa valitsemalla Asiantuntija-nappia."
+"löytyvässä PrinterDrakessa valitsemalla Asiantuntija-painiketta."
#: ../../help.pm:1
#, c-format
@@ -1530,41 +1549,15 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+"(\"On Floppy\")."
msgstr ""
"LILO (the LInux LOader) ja grub ovat GNU/Linux järjestelmälataajia.\n"
"Yleensä tämä askel on automaattinen, eli DrakX analysoi käynnistyssektorin\n"
"ja toimii sen mukaan mitä sieltä löytyy:\n"
"\n"
" * jos Windows käynnistyssektori löytyy, sen tilalle asennetaan grub/LILO\n"
-"käynnistyssektori. Tällä tavalla voit käynnistää GNU/Linuxin tai jonkin "
-"muun\n"
-"käyttöjärjestelmän;\n"
+"käynnistyssektori. Tällä tavalla voit käynnistää GNU/Linuxin tai jonkin \n"
+"muun käyttöjärjestelmän.\n"
"\n"
" * jos grub tai LILO käynnistyssektori löytyy, se päivitetään uudempaan\n"
"versioon.\n"
@@ -1574,34 +1567,7 @@ msgstr ""
"\n"
"\"Käynnistyslaite\": yleensä sinun ei tarvitse muuttaa oletusta (\"Levyn\n"
"ensimmäinen sektori (MBR)\"), mutta jos haluat, voit asentaa käynnistys-\n"
-"lataajan toiselle kovalevylle (\"/dev/hdb\") tai vaikkapa \"Levykkeelle\".\n"
-"\n"
-"Valitsemalla \"Luo käynnistyslevyke\" sinulle tarjoutuu ylimääräinen\n"
-"tapa käynnistää kone pelastustilaan.\n"
-"\n"
-"Mandrake Linux CD-levy sisältää sisäänrakennetun pelastustilan. Voit \n"
-"käyttää sitä käynnistämällä koneen cd-levyltä, painamalla >>F1<< \n"
-"näppäintä käynnistyksen aikana ja kirjoittamalla >>rescue<< kehotteessa. \n"
-"Mutta jos koneesi ei tue cd-levyltä käynnistymistä, sinun pitää tulla \n"
-"takaisin tähän kohtaan ainakin kahdessa eri tilanteessa:\n"
-"\n"
-" * kun käyttöjärjestelmän lataaja asennetaan, DrakX uudelleenkirjoittaa\n"
-"käynnistyssektorin (MBR) pääkovalevyllä (jos et käytä toista järjestelmä-\n"
-"lataajaa), mahdollistaakseen sinun käynnistää joko Windows tai GNU/Linux\n"
-"(olettaen että sinulla on Windows asennettuna). Jos joudut uudelleen-\n"
-"asentamaan Windowsin, Microsoftin asennusprosessi uudelleenkirjoittaa\n"
-"käynnistyssektorin, jolloin et enää pysty käynnistämään GNU/Linuxia!\n"
-"\n"
-" * jos sattuu virhetilanne, etkä pysty käynnistämään GNU/Linuxia\n"
-"kovalevyltä, tämä levyke voi olla ainoa tapa käynnistää GNU/Linux.\n"
-"Se sisältää kohtuullisen määrän järjestelmätyökaluja, jolla voit korjata \n"
-"järjestelmäsi, joka on kaatunut sähkökatkon, valitettavan kirjotusvirheen,\n"
-"salasanavirheen tai jonkun muun ongelman takia.\n"
-"\n"
-"Jos vastaat \"Kyllä\", sinua pyydetään asettamaan levyke asemaan. \n"
-"Levykkeen pitää olla tyhjä tai sisältää tietoja joita et tarvitse. Sinun "
-"ei \n"
-"tarvitse alustaa levykettä, koska DrakX uudelleenkirjoittaa koko levykkeen."
+"lataajan toiselle kovalevylle (\"/dev/hdb\") tai vaikkapa \"Levykkeelle\"."
#: ../../help.pm:1
#, c-format
@@ -1845,9 +1811,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1861,15 +1832,22 @@ msgstr ""
"Painamalla \"Lisäasetukset\"-painiketta saat mahdollisuuden valita myös\n"
"muita kieliä asennettavaksi työasemallesi. Muiden kielien valitseminen\n"
"asentaa kielikohtaiset tiedostot järjestelmän dokumentoinnista ja\n"
-"ohjelmistoista. Esimerkiksi jos sinulla koneessasi espanjalaisia käyttäjiä,\n"
-"valitse englanti (tai suomi) pääkieleksi ja lisäasetusten puolelta paina\n"
-"harmaata tähteä, joka vastaa Espanjaa.\n"
-"\n"
-"Huomaa, että voit valita useita kieliä. Kun olet valinnut haluamasi \n"
-"ylimääräiset kielet, paina \"Seuraava ->\"-painiketta jatkaaksesi.\n"
+"ohjelmistoista. Esimerkiksi jos sinulla koneessasi espanjalaisia \n"
+"käyttäjiä, valitse englanti (tai suomi) pääkieleksi ja lisäasetusten\n"
+"puolelta Espanjaa.\n"
+"\n"
+"Huomaa, että voit valita useita kieliä. Voit valita monta niistä, tai\n"
+"jopa kaikki valisemalla \"Kaikki kielet\". Kielituen valinta tarkoittaa\n"
+"käännöksien, kirjasinten, oikoluku-ohjelmien, jne. asentaminen sille\n"
+"kielelle.\n"
+"Tämän lisäksi voit valita \"Käytä Unicode oletuksena\" joka pakottaa\n"
+"järjestelmän käyttämään unicodea (UTF-8). Huomaa kuitenkin että tämä\n"
+"on ominaisuus joka on kokeluvaiheessa. Jos valiset eri kielet joka\n"
+"tarvitsevat eri koodausta, asennetaan unicode tuki tästä valinnasta\n"
+"huolimatta.\n"
"\n"
"Vaihtaaksesi eri kielten välillä, voit suorittaa \"/usr/bin/localedrake\"\n"
-"\"root\"-käyttäjänä,jolloin vaihdat koko järjestelmän kieltä, tai "
+"\"root\"-käyttäjänä,jolloin vaihdat koko järjestelmän kieltä, tai \n"
"tavallisena\n"
"käyttäjänä jolloin vaihdat vain sen käyttäjän vakiokielen."
@@ -1956,10 +1934,13 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
-"\"Maa\": tarkista nykyinen maa-asetus. Jos et ole tässä maassa,\n"
-"paina painiketta ja valitse oikea."
+"\"Maa\": takista maa-asetukset. jos et ole maassa, joka on valittu, \n"
+"paina \"Määrittele\" painiketta ja valitse joku muu. Jos maasi ei ole\n"
+"listassa, paina \"Lisää\" painiketta jolloin näet listan kaikista maista."
#: ../../help.pm:1
#, c-format
@@ -2183,19 +2164,16 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
"Tässä vaiheessa DrakX sallii sinun valita tietokoneellesi sopivan\n"
-"turvatason. Yleisesti mitä avoimempi koneesi on ja mitä enemmän tärkeää\n"
-"tietoa on talletettu koneellesi, tai jos se on kytketty Internettiin, sitä\n"
-"korkeampi turvatason pitäisi olla. Huomaa kuitenkin, että korkeampi\n"
+"turvatason. Yleisesti mitä avoimempi koneesi on ja mitä enemmän\n"
+"tärkeää tietoa on talletettu koneellesi, tai jos se on kytketty "
+"Internettiin,\n"
+"sitä korkeampi turvatason pitäisi olla. Huomaa kuitenkin, että korkeampi\n"
"turvallisuustaso saavutetaan yleensä käytettävyyden kustannuksella.\n"
-"Lue MSEC-kappale``Command Line Manual'':sta saadaksesi\n"
-"lisää tietoa turvatasojen merkityksestä.\n"
"\n"
"Jos et tiedä mitä valita, käytä oletuksena olevaa vaihtoehtoa."
@@ -2205,21 +2183,23 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
-"Tässä vaiheessa, kun asennat Mandrake Linuxia, on todennäköistä että jotkut\n"
-"paketit on päivitetty alkujulkaisun jälkeen. Joitakin virheitä voi olla\n"
-"korjattu, ja turvallisuusaukkoja paikattu. Hyödyntääksesi näitä \n"
-"päivityksiä, sinulla on nyt mahdollisuus hakea ne Internetistä. \n"
-"Valitse \"Kyllä\" jos sinulla on toimiva Internet yhteys, tai \"Ei\" jos\n"
-"haluat asentaa päivitykset myöhemmin.\n"
+"Tässä vaiheessa, kun asennat Mandrake Linuxia, on todennäköistä että\n"
+"jotkut paketit on päivitetty alkujulkaisun jälkeen. Joitakin virheitä voi "
+"olla\n"
+"korjattu, ja turvallisuusaukkoja paikattu. Hyödyntääksesi näitä "
+"päivityksiä,\n"
+"sinulla on nyt mahdollisuus hakea ne Internetistä. Valitse \"Kyllä\" jos\n"
+"sinulla on toimiva Internet yhteys, tai \"Ei\" jos haluat asentaa \n"
+"päivitykset myöhemmin.\n"
"\n"
"Valitsemalla \"Kyllä\", sinulle näytetään lista päivityspalvelimista. \n"
"Valise lähin palvelin. Sen jälkeen sinulle näytetään lista päivityksistä:\n"
@@ -2286,7 +2266,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2312,13 +2292,12 @@ msgid ""
"\"mformat a:\")"
msgstr ""
"Ole hyvä. Asennus on valmis ja GNU/Linux -järjestelmäsi on valmis\n"
-"käytettäväksi. Paina \"Seuraava ->\" käynnistääksesi järjestelmän "
-"uudelleen.\n"
-"Voit käynnistää GNU/Linuxin tai Windowsin valintasi mukaan (jos käytät \n"
-"'dual-boot' ominaisuutta), kunhan kone on käynnistynyt uudestaan.\n"
+"käytettäväksi. Paina \"Seuraava ->\" käynnistääksesi järjestelmän\n"
+"uudelleen.Ensimmäien asia mitä näet en jälkeen kun tietokoneesi on\n"
+"surittanut laitteistotestit, on käynnistysvalikkon josta voit valita mitä\n"
+"käyttöjärjestelmää haluat käynnistää.\n"
"\n"
-"\"Lisäasetukset\" painike (ainoastaan Asiantuntija-tilassa) näyttää kaksi\n"
-"lisäpainiketta:\n"
+"\"Lisäasetukset\" painike näyttää kaksi lisäpainiketta:\n"
"\n"
" * \"luo automaattiasennuslevyke\": luodaksesi levykkeen, joka suorittaa\n"
"koko asennuksen ilman käyttäjän ohjausta, samoilla asetuksilla ja\n"
@@ -2376,7 +2355,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2401,13 +2380,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"Nyt sinun pitää valita miten haluat asentaa Mandrake Linux käyttö-\n"
"järjestelmän kovalevyllesi. Jos kovalevysi on tyhjä, tai nykyinen\n"
@@ -2415,10 +2394,11 @@ msgstr ""
"se. Käytännössä osiointi tarkoittaa kovalevyn loogista jakamista\n"
"tehdäksesi tilaa Mandrake Linux järjestelmän asennukselle.\n"
"\n"
-"Koska osiointiprosessin muutoksia yleensä ei voi peruuttaa, osiointi\n"
-"voi olla pelottava ja stressaava jos olet kokematon käyttäjä. Onneksi\n"
-"löytyy velho joka yksinkertaistaa tämän prosessin. Ennen kuin aloitat,\n"
-"lue ohjeet rauhassa.\n"
+"Koska osiointiprosessin muutoksia yleensä ei voi peruuttaa, ja voi johtaa\n"
+"tietojen hävittämiselle jos toinen käyttöjärjestelmä on jo asennettu, \n"
+"osiointi voi olla pelottava ja stressaava jos olet kokematon käyttäjä.\n"
+"Onneksi DrakX sisältää velhon joka yksinkertaistaa tämän prosessin.\n"
+"Ennen kuin aloitat, lue nämä ohjeet rauhassa.\n"
"\n"
"Riippuen kovalevyasetuksistasi, löytyy monta eri vaihtoehtoa:\n"
"\n"
@@ -2436,11 +2416,13 @@ msgstr ""
"tilaa Linuxille. Tehdäksesi tämän, voit joko poistaa Windows-osion (katso\n"
"``Tyhjennä koko levy'' vaihtoehto) tai muuttaa FAT osion kokoa. Osion\n"
"koon muuttaminen voidaan tehdä ilman tietojen hävittämistä, kunhan olet\n"
-"eheyttänyt sen ja se käyttää FAT tiedostojärjestelmää. Tietojen varmistus "
-"ei\n"
-"ole sekään pahitteeksi. Tämä vaihtoehto on suositeltu jos haluat käyttää\n"
+"eheyttänyt sen ja se käyttää FAT tiedostojärjestelmää. Tietojen varmistus\n"
+"on suotavaa. Tämä vaihtoehto on suositeltu jos haluat käyttää\n"
"Mandrake Linuxia ja Microsoft Windowsia samassa koneessa.\n"
"\n"
+"!! \"9.1\" jakelustä lähtien asennusohjelmaa osaa myös muuttaa NTFS\n"
+" osion kokoa, mutta se on viellä KOKEILUVAIHEESSA, joten teet sitä\n"
+" OMALLA VASTUULLASI. Voit menettää tietojasi !!\n"
" Ennen kuin valitset tämän vaihtoehton, sinun pitää ymmärtää että tämän\n"
"toimeenpiteen jälkeen Windows-osiosi on pienempi kuin tällä hetkellä.\n"
"Sinulla tulee olemaan vähemmän vapaata tilaa Widowsille, johon voit\n"
@@ -2451,8 +2433,7 @@ msgstr ""
"varovainen tämän valinnan kanssa, koska et pysty peruuttamaan\n"
"valintaasi kun olet hyväksynyt tämän toimenpiteen;\n"
"\n"
-" !! Jos valitset tämän vaihtoehton, kaikki tiedot kovalevylläsi "
-"tuhoutuu !!\n"
+" !! Jos valitset tämän vaihtoehton, kaikki tiedot kovalevylläsi tuhoutuu !!\n"
"\n"
" * \"Poista Windows\": tämä vaihtoehto yksinkertaisesti poistaa kaikki\n"
"kovalevystä ja aloittaa puhtaalta levyltä osioimalla kaikki alusta asti.\n"
@@ -2470,71 +2451,16 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Valitsemalla \"Luo käynnistyslevyke\" sinulle tarjoutuu ylimääräinen\n"
-"tapa käynnistää kone pelastustilaan.\n"
-"\n"
-"Mandrake Linux CD-levy sisältää sisäänrakennetun pelastustilan. Voit \n"
-"käyttää sitä käynnistämällä koneen cd-levyltä, painamalla >>F1<< \n"
-"-näppäintä käynnistyksen aikana ja kirjoittamalla >>rescue<< kehotteessa. \n"
-"Mutta jos koneesi ei tue cd-levyltä käynnistymistä, sinun pitää tulla \n"
-"takaisin tähän kohtaan ainakin kahdessa eri tilanteessa:\n"
-"\n"
-" * kun käyttöjärjestelmän lataaja asennetaan, DrakX uudelleenkirjoittaa\n"
-"käynnistyssektorin (MBR) pääkovalevyllä (jos et käytä toista järjestelmä-\n"
-"lataajaa), mahdollistaakseen sinun käynnistää joko Windows tai GNU/Linux\n"
-"(olettaen että sinulla on Windows asennettuna). Jos joudut uudelleen-\n"
-"asentamaan Windowsin, Microsoftin asennusprosessi uudelleenkirjoittaa\n"
-"käynnistyssektorin, jolloin et enää pysty käynnistämään GNU/Linuxia!\n"
-"\n"
-" * jos sattuu virhetilanne, etkä pysty käynnistämään GNU/Linuxia\n"
-"kovalevyltä, tämä levyke voi olla ainoa tapa käynnistää GNU/Linux.\n"
-"Se sisältää kohtuullinen määrän järjestelmätyökaluja, jolla voit korjata\n"
-"järjestelmäsi, joka on kaatunut sähkökatkon, valitettavan kirjotusvirheen,\n"
-"unohdetun salasanan jonkin muun ongelman takia.\n"
-"\n"
-"Jos vastaat \"Kyllä\", sinua pyydetään asettamaan levyke asemaan.\n"
-"Levykkeen pitää olla tyhjä tai sisältää tietoja joita et tarvitse. Sinun ei\n"
-"tarvitse alustaa levykettä koska DrakX uudelleenkirjoittaa koko levykkeen."
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
"act as a server, or if you were not successful in getting the display\n"
"configured."
msgstr ""
-"Lopuksi sinulta kysytään, haluatko käynnistyksessä graafisen "
-"käyttöliittymän.\n"
-"Huomaa, että kysymys esitetään vaikka et olisi testannut asetuksia.\n"
-"Haluat varmaankin vastata \"Ei\", jos koneesi on tarkoitettu palvelimeksi\n"
-"tai jos näytön asetus epäonnistui."
+"Lopuksi sinulta kysytään, haluatko käynnistyksessä graafisen \n"
+"käyttöliittymän. Huomaa, että kysymys esitetään vaikka et olisi \n"
+"testannut asetuksia.Haluat varmaankin vastata \"Ei\", jos koneesi \n"
+"on tarkoitettu palvelimeksi tai jos näytön asetus epäonnistui."
#: ../../help.pm:1
#, c-format
@@ -2731,7 +2657,8 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2768,12 +2695,12 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
msgstr ""
-"\"Tulostin\": painamalla \"Ei tulostinta\" painiketta avautuu tulostimen\n"
+"\"Tulostin\": painamalla \"Määrittele\" painiketta avautuu tulostimen\n"
"asetusvelho. Katso tätä vastaava luku ``Starter Guide'' saadaksesi\n"
"lisää tietoa miten asetat uuden tulostimen. Oppaassa näytetty\n"
"käyttöliittymä on vastaava kuin asennuksen aikana käytetty."
@@ -3359,9 +3286,9 @@ msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Windows(TM)"
msgstr ""
-"Varmistaakseen tietojen yhtenäisyyttä osio(ide)n koon muuttamisen\n"
-"jälkeen, suoritetaan tiedostojärjestelmän tarkistusta seuraavan kerran\n"
-"kun käynnistät Windows(TM)."
+"Varmistaakseen tietojen yhtenäisyyttä osio(ide)n koon\n"
+"muuttamisen jälkeen, suoritetaan tiedostojärjestelmän \n"
+"tarkistusta seuraavan kerran kun käynnistät Windows(TM)."
#: ../../install_interactive.pm:1
#, c-format
@@ -4527,6 +4454,12 @@ msgstr "Palvelut"
msgid "System"
msgstr "Järjestelmä"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "%s on %s"
+msgstr "%s kohteessa %s"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
@@ -4666,14 +4599,14 @@ msgid "Which is your timezone?"
msgstr "Mikä on järjestelmäsi aikavyöhyke?"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Would you like to try again?"
-msgstr "Huono valinta, yritä uudelleen\n"
+msgstr "Haluako kokeilla uudelleen?"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Unable to contact mirror %s"
-msgstr "Prosessia %s ei voitu haarauttaa"
+msgstr "En saa yhteyttä peilipalvelimeen %s"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4968,6 +4901,11 @@ msgid "Please choose your type of mouse."
msgstr "Valitse hiiren tyyppi."
#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Salausavain"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr "Päivitä %s"
@@ -5079,7 +5017,7 @@ msgstr "Ok"
#: ../../interactive/newt.pm:1
#, c-format
msgid "Finish"
-msgstr "Loppu"
+msgstr "Valmis"
#: ../../interactive.pm:1 ../../standalone/draksec:1
#, c-format
@@ -7816,7 +7754,7 @@ msgstr "XFree %s"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "Configure only card \"%s\"%s"
-msgstr "Määrittele vain kortin \"%s\" (%s) asetukset"
+msgstr "Aseta vain kortin \"%s\"%s"
#: ../../Xconfig/card.pm:1
#, c-format
@@ -9112,9 +9050,9 @@ msgid "SCSI controllers"
msgstr "SCSI-ohjaimet"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Firewire controllers"
-msgstr "USB-ohjaimet"
+msgstr "FireWire ohjaimet"
#: ../../harddrake/data.pm:1
#, c-format
@@ -9884,11 +9822,6 @@ msgstr "Asetan verkkoa"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "yhtäkään verkkokorttia ei löytynyt"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr "Valitse mitä verkkokorteista haluat käyttää Internetiin liittymiseen"
@@ -10533,9 +10466,9 @@ msgid "Start at boot"
msgstr "Käynnistä koneen käynnistyksen yhteydessä"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Assign host name from DHCP address"
-msgstr "Sinun pitää syöttää verkkoaseman nimi tai IP-osoite.\n"
+msgstr "Myönnä koneennimi DHCP osoitteesta"
#: ../../network/network.pm:1
#, c-format
@@ -10548,9 +10481,9 @@ msgid "Track network card id (useful for laptops)"
msgstr "Selvitä verkkokortti-id (hyödyllistä sylimikroille)"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "DHCP host name"
-msgstr "Koneen nimi"
+msgstr "DHCP kone nimi"
#: ../../network/network.pm:1 ../../standalone/drakconnect:1
#: ../../standalone/drakgw:1
@@ -11193,19 +11126,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"Seuraavat tulostimet ovat asetettuja. Tuplaklikkaa tulostinta muuttaaksesi "
-"sen asetuksia; asettaaksesi sen oletustulostimeksi; nähdäksesi tulostimen "
-"tiedot; tai asettaaksesi tulostimen CUPS-etäpalvelimella StarOffice/ "
-"OpenOffice.org/GIMP käyttöön."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "Tulostusjärjestelmä: "
@@ -11837,6 +11757,11 @@ msgstr "Valitsimen %s pitää olla kokonaisluku!"
#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Printer default settings"
+msgstr "Tulostimen oletusasetuksia"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
"Printer default settings\n"
"\n"
@@ -13847,15 +13772,15 @@ msgstr "Tervetuloa murtautujat"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
"MandrakeSoft:in menestys perustuu Vapaan Ohjelmiston periaatteeseen. Uusi "
"käyttöjärjestelmäsi on maailmanlaajuisen Linux Yhteisön yhteistyön tulos."
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "Tervetuloa Avoimen Lähdekoodin maailmaan"
#: ../../share/advertising/01-thanks.pl:1
@@ -13866,224 +13791,167 @@ msgstr "Kiitos, että olet valinnut Mandrake Linux 9.1:n"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
"Jakaaksesi omaa tuntemustasi ja auttaaksesi Linux-työkalujen kehityksessä, "
"liity keskustelufoorumeihin, joita löydät meidän \"Yhteisö\" webbisivuilta."
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr "Haluatko tietää enemmän Avoimen Lähdekoodin yhteisöstä?"
-
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Tule osalliseksi Vapaan Ohjelmiston maailmaan"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
-"Mandrake Linux 9.1 on valinnut parhaat ohjelmistot sinulle. Surffaa netissä "
-"ja toista animaatioita käyttäen Mozillaa ja Konqueroria tai lue sähköpostisi "
-"ja käsittele henkilökohtaiset tietosi käyttäen Evolutionia ja Kmailia."
+"Haluatko tietää enemmän Avoimen Lähdekoodin yhteisöstä? Tule osalliseksi "
+"Vapaan Ohjelmiston maailmaan!"
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
-msgstr "Ota kaikki irti Internetistä"
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
"Mandrake Linux 9.1 antaa sinulle mahdollisuuden käyttää viimeisimpiä "
"ohjelmia äänitiedostojen toistamiseen, kuvien muokkaukseen ja videoiden "
"toistamiseen."
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr "Riko multimedian rajat!"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr "Huomaa ajan tasalla olevat graafiset ja multimediatyökalut!"
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"Mandrake Linux 9.1 tarjoaa parhaat Avoimen Lähdekoodin pelit - arcade, "
-"toiminta, strategia, ..."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "Pelit"
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-"Mandrake Linux 9.1 tarjoaa tehokkaan työkalun koneesi räätälöintiin ja "
-"asetuksien tekoon."
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Mandraken Ohjauskeskus"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Mandrake Terminal Server Asetus"
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
"Mandrake Linux 9.1 tarjoaa sinulle 11 käyttöliittymää jotka ovat täysin "
"räätälöitävissä: KDE 3, Gnome 2, WindowMaker, ..."
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "Käyttöliittymät"
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-"Käytä GNU gcc 3 kääntäjän täysi teho hyväksesi samoin kuin parhaita Avoimen "
-"Lähdekoodin kehitysympäristöjä"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "Mandrake Linux 9.1 on ratkaiseva kehitysalusta"
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr "Ohjelmistokehitys yksinkertaistettuna"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"Muuta koneesi tehokkaaksi Linux palvelimeksi parilla hiiren näppäimen "
"painalluksella: webbipalvelin, sähköposti, palomuuri, reititin, tiedosto- ja "
"tulostuspalvelin, ..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr "Muuta koneesi luotettavaksi palvelimeksi"
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr "Tämä tuote on saatavissa MandrakeStore:n webbisivustolla"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-"Tämä palomuurituote sisältää verkko-ominaisuuksia jotka täyttävät kaikki "
-"turvallisuustarpeesi."
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr ""
-"MandrakeSecurity tuotelinja sisältää moniverkon palomuurin (Multi Network "
-"Firewall product (M.N.F.))"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr "Optimoi turvallisuutesi"
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"Täydellinen tuotelinjamme Linux-ratkaisuista, sekä erikoistarjouksia "
"tuotteista ja muista \"herkuista\" on saatavilla online e-kaupastamme:"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr "Virallinen MandrakeSoft kauppa"
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
+#: ../../share/advertising/09-mdksecure.pl:1
+#, fuzzy, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"MandrakeSoft työskentelee yhteistyössä valittujen yrityksien kanssa jotka "
"tarjoavat ammattimaisia ratkaisuja jotka ovat yhteensopivia Mandrake Linuxin "
"kanssa. Listan näistä yhteistyökumppaneista löydät MandrakeStore:sta."
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr "Strategiset yhteistyökumppanit"
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-"Valitsetpa online itseopiskelun tai opetusverkostomme kumppaneita "
-"oppiaksesi, Linux Campus luettelolla valmistaudut hyväksyttyyn LPI "
-"sertifiointiohjelmaan (maailmanlaajuinen ammattimainen tekninen "
-"sertifiointi)."
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
+#, c-format
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "Optimoi turvallisuutesi"
+
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr "Hanki itsellesi Linux sertifiointi"
+msgid "This product is available on the MandrakeStore Web site."
+msgstr "Tämä tuote on saatavissa MandrakeStore:n webbisivustolla"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-"Harjoitusohjelma on luotu vastaamaan loppukäyttäjien ja asiantuntijoiden "
-"(verkko- ja järjestelmäylläpitäjien) tarpeisiin."
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr "Huomaa MandrakeSoft:in harjoitusluettelo Linux Campus"
+msgid "Secure your networks with the Multi Network Firewall"
+msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -14094,19 +13962,19 @@ msgstr ""
"tuntemustasi ja auttaaksesi muita tulemalla tunnistetuksi asiantuntijaksi "
"online teknisen tuen webbisivustossa:"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr "Löydä ratkaisuja ongelmiisi MandrakeSoft:n online-tukialustasta"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr "Tule MandrakeExpert asiantuntijaksi"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
@@ -14115,37 +13983,16 @@ msgstr ""
"Kaikkia tapauksia seurataan yhden pätevän MandrakeSoft:n teknisen "
"asiantuntijan toimesta."
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr "Online-alusta, joka vastaa yrityskohtaiseen tukitarpeeseen"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert Corporate"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-"MandrakeClub ja Mandrake Corporate Club luotiin Mandrake Linuxin yritys- ja "
-"yksityiskäyttäjille jotka haluavat suoraan tukea suosikki Linux-jakeluaan ja "
-"myös saada erikoisoikeuksia. Jos pidät tuotteistamme, jos yrityksesi "
-"hyödyntää tuotteitamme saadakseen kilpailuetua, jos haluat tukea Mandrake "
-"Linux:in kehitystä, liity MadrakeClub:iin!"
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr "Löydä MandrakeClub ja Mandrake Corporate Club"
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -16797,6 +16644,11 @@ msgstr "Aloittelija-velho"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr "Mandraken Ohjauskeskus"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr "Mandraken virheenraportointityökalu"
@@ -17134,7 +16986,7 @@ msgstr "pakota"
#: ../../standalone/drakfloppy:1
#, c-format
msgid "mkinitrd optional arguments"
-msgstr "mkinitrd:n vapaaehtoiset parametrit"
+msgstr "mkinitrd vapaaehtoiset parametrit"
#: ../../standalone/drakfloppy:1
#, c-format
@@ -17762,6 +17614,28 @@ msgstr "Liitäntä %s (käyttäen moduulia %s)"
#: ../../standalone/drakgw:1
#, c-format
+msgid "Net Device"
+msgstr "Verkkolaite"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+"Ole hyvä ja syötä liitynnän nimi jolla yhdistetään Internettiin.\n"
+"\n"
+"Esimerkkejä:\n"
+"\t\tppp+ modeemi tai DSL yhteyksille.\n"
+"\t\teth0 tai eth1 kaapeliyhteydelle.\n"
+"\t\tppp+ ISDN-yhteydelle.\n"
+
+#: ../../standalone/drakgw:1
+#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -18136,7 +18010,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -18344,6 +18218,11 @@ msgid "choose image file"
msgstr "Valitse kuvatiedosto"
#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "Valitse kuvatiedosto"
+
+#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
msgstr "Aseta bootsplash kuvaa"
@@ -18820,11 +18699,21 @@ msgstr "verkkotulostimen portti"
#: ../../standalone/harddrake2:1
#, c-format
+msgid "the name of the CPU"
+msgstr "Prosessorin nimi (CPU)"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "Name"
msgstr "Nimi"
#: ../../standalone/harddrake2:1
#, c-format
+msgid "the number of buttons the mouse has"
+msgstr "hiiren painikkeiden määrä"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "Number of buttons"
msgstr "Painikkeiden määrä"
@@ -18992,7 +18881,7 @@ msgstr "Tämä kenttä kuvaa laitteen"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -20011,6 +19900,10 @@ msgstr ""
"jutusteluun"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Pelit"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimedia - Grafiikka"
@@ -20066,6 +19959,417 @@ msgstr "Henkilökohtainen kirjanpito"
msgid "Programs to manage your finances, such as gnucash"
msgstr "Ohjelmia henkilökohtaisen talouden hallintaan, kuten gnucash"
+#~ msgid "no network card found"
+#~ msgstr "yhtäkään verkkokorttia ei löytynyt"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "and view animations with Mozilla and Konqueror, or read your mail and "
+#~ "handle your personal information with Evolution and Kmail"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 on valinnut parhaat ohjelmistot sinulle. Surffaa "
+#~ "netissä ja toista animaatioita käyttäen Mozillaa ja Konqueroria tai lue "
+#~ "sähköpostisi ja käsittele henkilökohtaiset tietosi käyttäen Evolutionia "
+#~ "ja Kmailia."
+
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Ota kaikki irti Internetistä"
+
+#~ msgid "Push multimedia to its limits!"
+#~ msgstr "Riko multimedian rajat!"
+
+#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
+#~ msgstr "Huomaa ajan tasalla olevat graafiset ja multimediatyökalut!"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 tarjoaa parhaat Avoimen Lähdekoodin pelit - arcade, "
+#~ "toiminta, strategia, ..."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 tarjoaa tehokkaan työkalun koneesi räätälöintiin ja "
+#~ "asetuksien tekoon."
+
+#~ msgid "User interfaces"
+#~ msgstr "Käyttöliittymät"
+
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+#~ "Käytä GNU gcc 3 kääntäjän täysi teho hyväksesi samoin kuin parhaita "
+#~ "Avoimen Lähdekoodin kehitysympäristöjä"
+
+#~ msgid "Development simplified"
+#~ msgstr "Ohjelmistokehitys yksinkertaistettuna"
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ "Tämä palomuurituote sisältää verkko-ominaisuuksia jotka täyttävät kaikki "
+#~ "turvallisuustarpeesi."
+
+#~ msgid ""
+#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
+#~ "N.F.)"
+#~ msgstr ""
+#~ "MandrakeSecurity tuotelinja sisältää moniverkon palomuurin (Multi Network "
+#~ "Firewall product (M.N.F.))"
+
+#~ msgid "Strategic partners"
+#~ msgstr "Strategiset yhteistyökumppanit"
+
+#~ msgid ""
+#~ "Whether you choose to teach yourself online or via our network of "
+#~ "training partners, the Linux-Campus catalogue prepares you for the "
+#~ "acknowledged LPI certification program (worldwide professional technical "
+#~ "certification)"
+#~ msgstr ""
+#~ "Valitsetpa online itseopiskelun tai opetusverkostomme kumppaneita "
+#~ "oppiaksesi, Linux Campus luettelolla valmistaudut hyväksyttyyn LPI "
+#~ "sertifiointiohjelmaan (maailmanlaajuinen ammattimainen tekninen "
+#~ "sertifiointi)."
+
+#~ msgid "Certify yourself on Linux"
+#~ msgstr "Hanki itsellesi Linux sertifiointi"
+
+#~ msgid ""
+#~ "The training program has been created to respond to the needs of both end "
+#~ "users and experts (Network and System administrators)"
+#~ msgstr ""
+#~ "Harjoitusohjelma on luotu vastaamaan loppukäyttäjien ja asiantuntijoiden "
+#~ "(verkko- ja järjestelmäylläpitäjien) tarpeisiin."
+
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr "Huomaa MandrakeSoft:in harjoitusluettelo Linux Campus"
+
+#~ msgid ""
+#~ "MandrakeClub and Mandrake Corporate Club were created for business and "
+#~ "private users of Mandrake Linux who would like to directly support their "
+#~ "favorite Linux distribution while also receiving special privileges. If "
+#~ "you enjoy our products, if your company benefits from our products to "
+#~ "gain a competititve edge, if you want to support Mandrake Linux "
+#~ "development, join MandrakeClub!"
+#~ msgstr ""
+#~ "MandrakeClub ja Mandrake Corporate Club luotiin Mandrake Linuxin yritys- "
+#~ "ja yksityiskäyttäjille jotka haluavat suoraan tukea suosikki Linux-"
+#~ "jakeluaan ja myös saada erikoisoikeuksia. Jos pidät tuotteistamme, jos "
+#~ "yrityksesi hyödyntää tuotteitamme saadakseen kilpailuetua, jos haluat "
+#~ "tukea Mandrake Linux:in kehitystä, liity MadrakeClub:iin!"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr "Löydä MandrakeClub ja Mandrake Corporate Club"
+
+#~ msgid ""
+#~ "As a review, DrakX will present a summary of various information it has\n"
+#~ "about your system. Depending on your installed hardware, you may have "
+#~ "some\n"
+#~ "or all of the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary.\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Country\": check the current country selection. If you are not in "
+#~ "this\n"
+#~ "country, click on the button and choose another one.\n"
+#~ "\n"
+#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+#~ "primary language you have chosen. But here, just as in your choice of a\n"
+#~ "keyboard, you may not be in a country to which the chosen language\n"
+#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
+#~ "configure the clock for the correct timezone.\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation.\n"
+#~ "\n"
+#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+#~ "click that button. This should be reserved to advanced users.\n"
+#~ "\n"
+#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+#~ "interface in \"800x600\" resolution. If that does not suits you, click "
+#~ "on\n"
+#~ "the button to reconfigure your graphical interface.\n"
+#~ "\n"
+#~ " * \"Network\": If you want to configure your Internet or local network\n"
+#~ "access now, you can by clicking on this button.\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. If you notice the sound card displayed is not the one "
+#~ "that\n"
+#~ "is actually present on your system, you can click on the button and "
+#~ "choose\n"
+#~ "another driver.\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. If you have a TV card and it is not detected, click on the button "
+#~ "to\n"
+#~ "try to configure it manually.\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with the card."
+#~ msgstr ""
+#~ "Tässä DrakX näyttää yhteenvedon laitteistoasi koskevista tiedoista\n"
+#~ "jotka se on kerännyt. Asennetusta laitteistosta riippuen, näet joitakin\n"
+#~ "tai kaikki seuraavista tietueista:\n"
+#~ "\n"
+#~ " * \"Hiiri\": tarkista nykyinen hiiriasetus, ja paina painiketta jos on \n"
+#~ "tarvetta muuttaa sitä;\n"
+#~ "\n"
+#~ " * \"Näppäimistö\": tarkista näppäinasettelu, ja paina painiketta jos "
+#~ "on \n"
+#~ "tarvetta muuttaa sitä;\n"
+#~ "\n"
+#~ " * \"Maa\": takista maa-asetukset, jos et ole maassa, joka on valittu, "
+#~ "paina\n"
+#~ "painiketta ja valitse joku muu;\n"
+#~ " * \"Aikavyöhyke\": DrakX oletuksena arvioi aikavyöhykkeesi riippuen "
+#~ "siitä,\n"
+#~ "minkä kielen olet valinnut. Mutta samalla tavalla kun näppäimistöllä, "
+#~ "voi\n"
+#~ "olla ettet ole samassa maassa mihin kieli viittaa. Tästä syystä sinun "
+#~ "tarvitsee\n"
+#~ "painaa \"Aikavyöhyke\"-painiketta asettaaksesi kellon sen mukaan missä\n"
+#~ "aikavyöhykkeessä olet;\n"
+#~ "\n"
+#~ " * \"Tulostin\": painamalla \"Ei tulostinta\"-painiketta avaat "
+#~ "tulostuksen\n"
+#~ "asetusvelhon. Lue lisää asiaa koskevasta luvusta ``Aloitusoppaasta''\n"
+#~ "saadaaksesi lisäätietoa miten asettaa uusi tulostin. Käyttöliittymä\n"
+#~ "joka esitetään siellä on vastaava kuin se jota käytetään asennuksen\n"
+#~ "aikana;\n"
+#~ "\n"
+#~ " * \"Käynnistyslataaja\": jos haluat muuttaa käynnistyslataajasi "
+#~ "asetuksia,\n"
+#~ "paina tätä painiketta. Tätä ei kannata muuttaa jos et ole asiantuntija;\n"
+#~ "\n"
+#~ " * \"Graafinen käyttöliittymä\": oletuksena DrakX asettaa graafisen\n"
+#~ "käyttöliittymäsi käyttämään \"800x600\" näyttötilaa. Jos tämä ei sovi\n"
+#~ "sinulle, paina painiketta muuttaaksesi asetuksia;\n"
+#~ "\n"
+#~ " * \"Verkko\": jos haluat asettaa Internet- tai paikallisverkkoasetuksia\n"
+#~ "nyt, voit painaa tätä painiketta;\n"
+#~ "\n"
+#~ " * \"Äänikortti\": jos äänikortti on tunnistettu järjestelmässäsi, se\n"
+#~ "näytetään täällä. Jos huomaat että näytetty äänikortti ei vastaa sitä\n"
+#~ "joka on asennettu koneeseesi, voit painaa tätä painiketta ja valita "
+#~ "toisen ajurin;\n"
+#~ "\n"
+#~ " * \"TV-kortti\": jos TV-korttisi on tunnistettu järjestelmässäsi, se\n"
+#~ "näytetään täällä. Jos sinulla on TV-kortti ja sitä ei ole tunnistettu,\n"
+#~ "voit painaa painiketta ja yrittää asettaa sen itse;\n"
+#~ "\n"
+#~ " * \"ISDN-kortti\": jos ISDN-kortti on tunnistettu järjestelmässäsi, se\n"
+#~ "näytetään täällä. Voit painaa painiketta jos sinulla on tarvetta "
+#~ "muuttaa\n"
+#~ "kortin asetuksia."
+
+#~ msgid ""
+#~ "LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
+#~ "what it finds there:\n"
+#~ "\n"
+#~ " * if a Windows boot sector is found, it will replace it with a grub/"
+#~ "LILO\n"
+#~ "boot sector. This way you will be able to load either GNU/Linux or "
+#~ "another\n"
+#~ "OS.\n"
+#~ "\n"
+#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
+#~ "one.\n"
+#~ "\n"
+#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
+#~ "bootloader.\n"
+#~ "\n"
+#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
+#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
+#~ "disk\n"
+#~ "(\"On Floppy\").\n"
+#~ "\n"
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "LILO (the LInux LOader) ja grub ovat GNU/Linux järjestelmälataajia.\n"
+#~ "Yleensä tämä askel on automaattinen, eli DrakX analysoi "
+#~ "käynnistyssektorin\n"
+#~ "ja toimii sen mukaan mitä sieltä löytyy:\n"
+#~ "\n"
+#~ " * jos Windows käynnistyssektori löytyy, sen tilalle asennetaan grub/"
+#~ "LILO\n"
+#~ "käynnistyssektori. Tällä tavalla voit käynnistää GNU/Linuxin tai jonkin "
+#~ "muun\n"
+#~ "käyttöjärjestelmän;\n"
+#~ "\n"
+#~ " * jos grub tai LILO käynnistyssektori löytyy, se päivitetään uudempaan\n"
+#~ "versioon.\n"
+#~ "\n"
+#~ "Jos DrakX ei voi tehdä päätöstä, se kysyy sinulta mihin haluat asentaa\n"
+#~ "käynnistyslataajan.\n"
+#~ "\n"
+#~ "\"Käynnistyslaite\": yleensä sinun ei tarvitse muuttaa oletusta (\"Levyn\n"
+#~ "ensimmäinen sektori (MBR)\"), mutta jos haluat, voit asentaa käynnistys-\n"
+#~ "lataajan toiselle kovalevylle (\"/dev/hdb\") tai vaikkapa \"Levykkeelle"
+#~ "\".\n"
+#~ "\n"
+#~ "Valitsemalla \"Luo käynnistyslevyke\" sinulle tarjoutuu ylimääräinen\n"
+#~ "tapa käynnistää kone pelastustilaan.\n"
+#~ "\n"
+#~ "Mandrake Linux CD-levy sisältää sisäänrakennetun pelastustilan. Voit \n"
+#~ "käyttää sitä käynnistämällä koneen cd-levyltä, painamalla >>F1<< \n"
+#~ "näppäintä käynnistyksen aikana ja kirjoittamalla >>rescue<< "
+#~ "kehotteessa. \n"
+#~ "Mutta jos koneesi ei tue cd-levyltä käynnistymistä, sinun pitää tulla \n"
+#~ "takaisin tähän kohtaan ainakin kahdessa eri tilanteessa:\n"
+#~ "\n"
+#~ " * kun käyttöjärjestelmän lataaja asennetaan, DrakX uudelleenkirjoittaa\n"
+#~ "käynnistyssektorin (MBR) pääkovalevyllä (jos et käytä toista "
+#~ "järjestelmä-\n"
+#~ "lataajaa), mahdollistaakseen sinun käynnistää joko Windows tai GNU/Linux\n"
+#~ "(olettaen että sinulla on Windows asennettuna). Jos joudut uudelleen-\n"
+#~ "asentamaan Windowsin, Microsoftin asennusprosessi uudelleenkirjoittaa\n"
+#~ "käynnistyssektorin, jolloin et enää pysty käynnistämään GNU/Linuxia!\n"
+#~ "\n"
+#~ " * jos sattuu virhetilanne, etkä pysty käynnistämään GNU/Linuxia\n"
+#~ "kovalevyltä, tämä levyke voi olla ainoa tapa käynnistää GNU/Linux.\n"
+#~ "Se sisältää kohtuullisen määrän järjestelmätyökaluja, jolla voit "
+#~ "korjata \n"
+#~ "järjestelmäsi, joka on kaatunut sähkökatkon, valitettavan "
+#~ "kirjotusvirheen,\n"
+#~ "salasanavirheen tai jonkun muun ongelman takia.\n"
+#~ "\n"
+#~ "Jos vastaat \"Kyllä\", sinua pyydetään asettamaan levyke asemaan. \n"
+#~ "Levykkeen pitää olla tyhjä tai sisältää tietoja joita et tarvitse. Sinun "
+#~ "ei \n"
+#~ "tarvitse alustaa levykettä, koska DrakX uudelleenkirjoittaa koko "
+#~ "levykkeen."
+
+#~ msgid ""
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Valitsemalla \"Luo käynnistyslevyke\" sinulle tarjoutuu ylimääräinen\n"
+#~ "tapa käynnistää kone pelastustilaan.\n"
+#~ "\n"
+#~ "Mandrake Linux CD-levy sisältää sisäänrakennetun pelastustilan. Voit \n"
+#~ "käyttää sitä käynnistämällä koneen cd-levyltä, painamalla >>F1<< \n"
+#~ "-näppäintä käynnistyksen aikana ja kirjoittamalla >>rescue<< "
+#~ "kehotteessa. \n"
+#~ "Mutta jos koneesi ei tue cd-levyltä käynnistymistä, sinun pitää tulla \n"
+#~ "takaisin tähän kohtaan ainakin kahdessa eri tilanteessa:\n"
+#~ "\n"
+#~ " * kun käyttöjärjestelmän lataaja asennetaan, DrakX uudelleenkirjoittaa\n"
+#~ "käynnistyssektorin (MBR) pääkovalevyllä (jos et käytä toista "
+#~ "järjestelmä-\n"
+#~ "lataajaa), mahdollistaakseen sinun käynnistää joko Windows tai GNU/Linux\n"
+#~ "(olettaen että sinulla on Windows asennettuna). Jos joudut uudelleen-\n"
+#~ "asentamaan Windowsin, Microsoftin asennusprosessi uudelleenkirjoittaa\n"
+#~ "käynnistyssektorin, jolloin et enää pysty käynnistämään GNU/Linuxia!\n"
+#~ "\n"
+#~ " * jos sattuu virhetilanne, etkä pysty käynnistämään GNU/Linuxia\n"
+#~ "kovalevyltä, tämä levyke voi olla ainoa tapa käynnistää GNU/Linux.\n"
+#~ "Se sisältää kohtuullinen määrän järjestelmätyökaluja, jolla voit korjata\n"
+#~ "järjestelmäsi, joka on kaatunut sähkökatkon, valitettavan "
+#~ "kirjotusvirheen,\n"
+#~ "unohdetun salasanan jonkin muun ongelman takia.\n"
+#~ "\n"
+#~ "Jos vastaat \"Kyllä\", sinua pyydetään asettamaan levyke asemaan.\n"
+#~ "Levykkeen pitää olla tyhjä tai sisältää tietoja joita et tarvitse. Sinun "
+#~ "ei\n"
+#~ "tarvitse alustaa levykettä koska DrakX uudelleenkirjoittaa koko levykkeen."
+
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "Seuraavat tulostimet ovat asetettuja. Tuplaklikkaa tulostinta "
+#~ "muuttaaksesi sen asetuksia; asettaaksesi sen oletustulostimeksi; "
+#~ "nähdäksesi tulostimen tiedot; tai asettaaksesi tulostimen CUPS-"
+#~ "etäpalvelimella StarOffice/ OpenOffice.org/GIMP käyttöön."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index a11bf41e3..b03b1767a 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -53,8 +53,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX-fr\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
-"PO-Revision-Date: 2003-02-27 19:25+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
+"PO-Revision-Date: 2003-03-05 18:56+0100\n"
"Last-Translator: Christophe Combelles <ccomb@free.fr>\n"
"Language-Team: french <cooker-i18n@linux-mandrake.com>\n"
"MIME-Version: 1.0\n"
@@ -150,7 +150,7 @@ msgstr "Davantage"
#: ../../any.pm:1
#, c-format
msgid "Here is the full list of available countries"
-msgstr "Voici la liste complte de tous les pays"
+msgstr "Voici la liste complte des pays disponibles"
#: ../../any.pm:1
#, c-format
@@ -1124,7 +1124,7 @@ msgstr "le formatage au format %s de %s a chou"
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Click on \"Next ->\" if you want to delete all data and partitions present\n"
"on this hard drive. Be careful, after clicking on \"Next ->\", you will not\n"
@@ -1134,12 +1134,13 @@ msgid ""
"Click on \"<- Previous\" to stop this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
-"Cliquez sur OK si vous voulez vraiment effacer toute l'information et\n"
+"Cliquez sur Suivant si vous voulez vraiment effacer toute l'information "
+"et\n"
"les partitions. Soyez prudent, aprs avoir cliqu sur OK, vous ne\n"
-"pourrez plus rcuprer les donnes ou les partitions, incluant les donnes\n"
+"pourrez plus rcuprer les donnes ou les partitions, y compris les donnes\n"
"Windows.\n"
"\n"
-"Cliquez annuler pour annuler cette opration sans perdre de donnes."
+"Cliquez Prcdent pour annuler cette opration sans perdre de donnes."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
@@ -1150,8 +1151,9 @@ msgid ""
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-"Choisissez le disque dur effacer pour install votre partition GNU/Linux.\n"
-"Soyez prudent, toute l'information stocke sur le disque sera dtruite."
+"Choisissez le disque dur effacer pour installer votre partition\n"
+"GNU/Linux. Soyez prudent, toute l'information stocke sur le disque sera\n"
+"dtruite."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
@@ -1160,78 +1162,128 @@ msgstr ""
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
-"On vous prsente ici les diffrents paramtres de votre systme. Selon le\n"
-"matriel install, certaines entres seront prsentes et d'autres pas.\n"
+"On vous prsente ici diverses informations sur la configuration actuelle.\n"
+"Selon le matriel install, certaines entres seront prsentes et d'autres\n"
+"pas. Chaque paramtre est constitu du nom de la configuration, suivi d'un\n"
+"cours rsum de la configuration actuelle. Cliquez sur le bouton\n"
+"Configurer correspondant pour changer cela.\n"
+"\n"
+" * Clavier: vrifiez la configuration choisie pour le clavier.\n"
"\n"
-" * Souris: pour vrifier la configuration actuelle de la souris.\n"
+" * Pays: vrifiez la section du pays. Si vous ne vous trouvez pas\n"
+"dans ce pays, cliquez sur le bouton Configurer et choisissez le bon. Si\n"
+"votre pays ne se trouve pas dans la premire liste, cliquez sur Plus\n"
+"pour avoir la liste complte.\n"
+"\n"
+" * Fuseau horaire: DrakX, par dfaut, configure le fuseau horaire selon\n"
+"le pays dans lequel vous tes.\n"
+"\n"
+" * Souris: pour vrifier la configuration actuelle de la souris.\n"
"Cliquez sur le bouton pour modifier les options.\n"
"\n"
-" * Clavier: vrifie la configuration choisie pour le clavier. Cliquez\n"
-"sur le bouton pour la modifier.\n"
+" * Imprimante: en cliquant sur Configurer, l'outil de configuration\n"
+"d'impression sera dmarr. Consultez le chapitre correspondant du Guide\n"
+"de dmarrage pour plus de renseignements. L'interface qui y est\n"
+"documente est similaire celle rencontre lors de l'installation.\n"
+"\n"
+" * Carte son : si une carte son a t dtecte, elle apparatra ici. Si\n"
+"vous remarquez que la carte configure n'est pas celle qui se trouve\n"
+"effectivement sur votre systme, vous pouvez cliquer sur le bouton pour en\n"
+"choisir une autre.\n"
"\n"
-" * Fuseau horaire: DrakX, par dfaut, essaie de trouver le fuseau\n"
-"horaire dans lequel vous tes. Encore une fois, il est possible que vous ne\n"
-"soyez pas dans le fuseau horaire qui vous convient. Donc, vous aurez\n"
-"peut-tre cliquer sur le bouton fuseau horaire pour identifier\n"
-"prcisment l'heure qui doit apparatre dans vos horloges.\n"
+" * Interface graphique : par dfaut, DrakX configure votre interface\n"
+"graphique avec une rsolution de 800x600 ou 1024x768. Si cela ne\n"
+"vous convient pas, cliquez sur Configurer pour changer la configuration\n"
+"de votre interface graphique.\n"
"\n"
-" * Imprimante: en cliquant sur Pas d'imprimante, l'outil de\n"
-"configuration sera dmarr.\n"
+" * Carte TV : si une carte d'entre/sortie vido (carte TV) a t\n"
+"dtecte, elle apparatra ici. Si vous avez une carte TV et qu'elle n'a pas\n"
+"t dtecte, cliquez sur ce bouton pour la configurer la main.\n"
"\n"
-" * Carte son: si une carte son a t dtecte, elle apparatra ici.\n"
-"Aucune modification n'est possible cette tape.\n"
+" * Carte RNIS : si une carte RNIS (ISDN) est dtecte, elle apparatra\n"
+"ici. Vous pouvez cliquer sur le bouton pour en modifier les paramtres.\n"
"\n"
-" * Carte TV: si une carte d'entre/sortie vido (carte TV) a t\n"
-"dtecte, elle apparatra ici. Aucune modification possible cette tape.\n"
+" * Rseau : Si vous souhaitez configurer votre accs Internet ou rseau\n"
+"local ds maintenant.\n"
"\n"
-" * Carte ISDN: si une carte ISDN est dtecte, elle apparatra ici.\n"
-"Vous pouvez cliquer sur le bouton pour en modifier les paramtres."
+" * Niveau de scurit頻: il vous est ici propos de redfinir votre\n"
+"niveau de scurit tel que dfini dans une tape prcdente ().\n"
+"\n"
+" * Pare-feu : si vous avez l'intention de connecter votre ordinateur \n"
+"Internet, c'est une bonne ide de le protger des intrusions grce un\n"
+"pare-feu. Consultez la section correspondante du Guide de dmarrage\n"
+"pour plus de renseignements.\n"
+"\n"
+" * Chargeur de dmarrage : Si vous souhaitez changer la configuration\n"
+"par dfaut de votre chargeur de dmarrage. rserver aux utilisateurs\n"
+"expriments.\n"
+"\n"
+" * Services : vous pourrez ici contrler finement les services\n"
+"disponibles sur votre machine. si vous envisagez de monter un serveur,\n"
+"c'est une bonne ide de vrifier cette configuration."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -1240,10 +1292,10 @@ msgid ""
"actually present on your system, you can click on the button and choose\n"
"another driver."
msgstr ""
-"Carte son: si une carte son est dtecte sur votre systme, elle\n"
-"apparat ici. Si vous remarquez que la carte son affiche n'est pas\n"
-"celle prsente sur votre systme, vous pouvez cliquer sur le bouton et\n"
-"choisir un autre pilote."
+"Carte son : si une carte son a t dtecte, elle apparatra ici. Si\n"
+"vous remarquez que la carte configure n'est pas celle qui se trouve\n"
+"effectivement sur votre systme, vous pouvez cliquer sur le bouton pour en\n"
+"choisir une autre."
#: ../../help.pm:1
#, c-format
@@ -1412,19 +1464,14 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"DrakX will first detect any IDE devices present in your computer. It will\n"
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1437,25 +1484,19 @@ msgid ""
"configure the driver."
msgstr ""
"DrakX dtecte maintenant tous les priphriques IDE prsents sur votre\n"
-"systme. galement, DrakX recherchera les priphriques SCSI. Finalement,\n"
-"selon les composantes dtectes, DrakX installera tous les pilotes\n"
-"ncessaires son fonctionnement.\n"
+"systme. DrakX recherchera aussi les priphriques SCSI. Finalement, selon\n"
+"les composantes dtectes, DrakX installera tous les pilotes ncessaires \n"
+"son fonctionnement.\n"
"\n"
"Compte tenu de la vaste gamme de priphriques disponibles sur le march,\n"
-"dans certain cas la dtection de matriel ne fonctionnera pas. Dans ce cas,\n"
-"DrakX vous demandera de confirmer si des composantes SCSI sont prsentes\n"
-"sur votre systme. Cliquez sur Oui si vous tes certain d'avoir un\n"
-"priphrique SCSI sur votre systme. DrakX vous prsentera alors une liste\n"
-"de carte SCSI disponibles. Slectionnez la vtre. videment, cliquez sur\n"
-"Non, si vous n'en avez pas. Si vous n'tes pas certain, cliquez sur\n"
-"Voir les informations sur le matriel, puis sur OK. Vrifiez la\n"
-"liste du matriel, puis cliquez sur OK pour retourner la question\n"
-"concernant les priphriques SCSI.\n"
-"\n"
-"Si vous devez spcifier votre carte SCSI manuellement, DrakX vous demandera\n"
-"de confirmer les options du priphrique. Vous devriez permettre DrakX de\n"
-"vrifier automatiquement votre carte pour les options ncessaires \n"
-"dterminer.\n"
+"dans certains cas la dtection de matriel ne fonctionnera pas. Si c'est le\n"
+"cas, vous devrez alors configurer votre matriel la main.\n"
+"\n"
+"Si vous devez configurer votre carte SCSI manuellement, DrakX vous\n"
+"demandera si vous souhaitez spcifier la main les options du\n"
+"priphrique. Laissez en fait DrakX chercher automatiquement les options\n"
+"ncessaires la configuration de votre carte, cela fonctionne\n"
+"gnralement.\n"
"\n"
"Il peut arriver que DrakX soit incapable de vrifier les options\n"
"ncessaires. Dans ce cas, vous devrez les dterminer manuellement."
@@ -1473,7 +1514,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1490,39 +1531,34 @@ msgid ""
"system you may change it by running PrinterDrake from the Mandrake Control\n"
"Center and clicking the expert button."
msgstr ""
-"Il faut choisir ici un systme d'impression pour votre ordinateur. D'autre\n"
-"OSs offrent un, Mandrake Linux en propose trois.\n"
+"Il faut choisir ici un systme d'impression pour votre ordinateur. D'autres\n"
+"OSs offrent un, Mandrake Linux en propose deux.\n"
"\n"
" * pdq - qui veut dire print, don't queue, (ou, impression sans\n"
"passer par la file d'attente) est un bon choix si votre imprimante est\n"
"branche directement sur votre poste et que vous voulez pouvoir arrter\n"
"l'impression directement en cas de problme et que vous n'avez pas\n"
"d'imprimantes rseau. Il prendra en charge de simples cas en rseau, mais\n"
-"les performances sont plutt mauvaise dans ces cas. Choisissez pdq si vous\n"
+"les performances sont plutt mauvaises dans ces cas. Choisissez pdq si vous\n"
"tes une premire exprience avec Linux. Vous pourrez toujours changer de\n"
-"systme plus tard avec PrinterDrake partir du Mandrake Control Center en\n"
-"cliquant sur Expert.\n"
+"systme plus tard avec PrinterDrake partir du Centre de contrle Mandrake\n"
+"en cliquant sur Expert.\n"
"\n"
" * CUPS - Common Unix Printing System, est fabuleux tant pour\n"
"imprimante local que pour imprimer l'autre bout du monde. C'est simple et\n"
"il peu agir comme serveur ou un client avec l'ancien systme d'impression\n"
"lpd. Il s'agit d'un outil trs puissant, mais les configurations de\n"
"bases sont aussi simple que pdq. Pour muler un serveur lpq, partez le\n"
-"deamon cups-lpq. Finalement, cups offre une interface simple pour imprimer\n"
-"et choisir les imprimantes.\n"
+"dmon (daemon) cups-lpq. Finalement, cups offre une interface simple\n"
+"pour imprimer et choisir les imprimantes.\n"
"\n"
-" * lprNG - line printer daemon New Generation. Ce systme permet\n"
-"essentiellement les mmes fonctions que les prcdents, avec la\n"
-"particularit de pouvoir interface avec un rseau Novell, travers le\n"
-"protocole IPX et le support pour l'impression directement de la ligne de\n"
-"commande. Donc, si vous devez imprimer dans un rseau Novell ou de la ligne\n"
-"de commande sans redirection, choisissez lprNG. Si non, CUPS est plus\n"
-"facile et plus efficace sur les rseaux."
+"Vous pourrez changer ultrieurement de systme d'impression en lanant\n"
+"PrinterDrake depuis le Mandrake Control Center."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
"automated. DrakX will analyze the disk boot sector and act according to\n"
@@ -1541,59 +1577,30 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Le CDROM d'installation de Mandrake Linux a un mode de rcupration\n"
-"prdfini. Vous pouvez y accder en dmarrant l'ordinateur sur le CDROM.\n"
-"Selon la version de votre BIOS, il faut lui spcifier de dmarrer sur\n"
-"le CDROM. Vous devriez revenir au disquette de dmarrage dans deux cas\n"
-"prcis:\n"
-"\n"
-" * Au moment d'installer le Programme d'amorce, DrakX va rcrire sur\n"
-"le secteur (MBR) contenant le programme d'amorce (boot loader) afin de vous\n"
-"permettre de dmarrer avec Linux ou Windows (en prenant pour acquis que\n"
-"vous avez deux systmes d'exploitation installs. Si vous rinstallez\n"
-"Windows, celui-ci va rcrire sur le MBR et il vous sera dsormais\n"
-"impossible de dmarrer Linux.\n"
-"\n"
-" * Si un problme survient et qu'il vous est impossible de dmarrer\n"
-"GNU/Linux partir du disque dur, cette disquette deviendra votre seul\n"
-"moyen de dmarrer votre systme Linux. Elle contient un bon nombre d'outils\n"
-"pour rcuprer un systme dfectueux, peu importe la source du problme.\n"
-"\n"
-"En cliquant sur cette tape, on vous demandera d'insrer une disquette. La\n"
-"disquette insre sera compltement efface et DrakX se chargera de la\n"
-"formater et d'y insrer les fichiers ncessaires."
+"(\"On Floppy\")."
+msgstr ""
+"LILO et grub sont deux programmes d'amorce pour GNU/Linux. Cette tape est\n"
+"normalement compltement automatique. En fait, DrakX analyse le secteur de\n"
+"dmarrage (master boot record) et agit en fonction de ce qu'il peut y lire\n"
+":\n"
+"\n"
+" * Si un secteur de dmarrage Windows est dtect, il sera remplac par\n"
+"grub/LILO. Donc, vous serez capable de dmarrer GNU/Linux et tout autre\n"
+"systme d'exploitation.\n"
+"\n"
+" * si grub ou LILO est dtect, il sera remplac par la nouvelle version;\n"
+"\n"
+"En cas de doute, DrakX affiche diffrentes options.\n"
+"\n"
+"Priphrique d'amorage : dans la plupart des cas vous ne devrez pas\n"
+"changer la configuration propose (Premier secteur du lecteur (MBR)),\n"
+"mais si vous prfrez, le chargeur peut tre install sur le deuxime\n"
+"disque (/dev/hdb), ou mme sur une disquette (Sur disquette)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options that will be available at boot time will be displayed.\n"
@@ -1610,14 +1617,14 @@ msgid ""
"bootloader menu, but you will need a boot disk in order to boot those other\n"
"operating systems!"
msgstr ""
-"Aprs avoir configurer les paramtres gnraux de LILO ou grub la liste des\n"
-"options de dmarrage sera rendu disponible au dmarrage.\n"
+"Aprs avoir configur les paramtres gnraux de LILO ou grub la liste des\n"
+"options de dmarrage sera rendue disponible au dmarrage.\n"
"\n"
-"Si un autre systme d'exploitation est dtect, il sera automatiquement\n"
-"ajout au menu dmarrage. Vous pouvez ici raffine votre configuration.\n"
-"Choisissez une entre, cliquez Modifier pour l'diter ou la retirer;\n"
-"sur Ajouter crer une nouvelle entre, finalement Terminer vous\n"
-"permet de pass la prochaine tape.\n"
+"Si d'autres systmes d'exploitation sont dtects, il seront\n"
+"automatiquement ajouts au menu dmarrage. Vous pouvez ici affiner votre\n"
+"configuration. Cliquez sur Ajouter pour crer une nouvelle entre;\n"
+"Choisissez une entre, cliquez Modifier pour l'diter, ou Supprimer\n"
+"pour l'enlever. OK validera vos changements.\n"
"\n"
"Il est possible que vous vouliez limiter l'accs ce systme\n"
"d'exploitation. Il vous suffit de retirer l'entre dans les options de\n"
@@ -1626,7 +1633,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"This dialog allows to finely tune your bootloader:\n"
"\n"
@@ -1655,56 +1662,38 @@ msgid ""
"Clicking the \"Advanced\" button in this dialog will offer advanced options\n"
"that are reserved for the expert user."
msgstr ""
-"LILO et grub sont deux programmes d'amorce pour GNU/Linux. Cette tape est\n"
-"normalement compltement automatique. En fait, DrakX analyse le secteur de\n"
-"dmarrage (master boot record) et agit en fonction de ce qu'il peut y lire\n"
-":\n"
+"Ce dialogue permet de contrler finement le chargeur de dmarrage :\n"
"\n"
-" * Si un secteur de dmarrage Windows est dtect, il va tre remplacer par\n"
-"LILO/GRUB. Donc, vous serez capable de dmarrer GNU/Linux et tout autre\n"
-"systme d'exploitation.\n"
-"\n"
-" * si GRUB ou LILO est dtect, il sera remplac par la nouvelle version;\n"
-"\n"
-"En cas de doute, DrakX affiche diffrentes options.\n"
-"\n"
-" * Programme d'amorage utiliser vous propose trois choix:\n"
+" * Programme d'amorage utiliser vous propose trois choix :\n"
"\n"
-" * GRUB: si vous prfrer GRUB (menu texte).\n"
+" * GRUB : si vous prfrez GRUB (menu texte).\n"
"\n"
-" * LILO en mode graphique: si vous prfrez l'interface graphique.\n"
+" * LILO en mode texte : si vous prfrez la version texte de LILO.\n"
"\n"
-" * LILO en mode texte: si vous prfrez la version texte de LILO.\n"
+" * LILO en mode graphique : si vous prfrez l'interface graphique.\n"
"\n"
-" * Priphriques de dmarrage: dans la plupart des cas, vous n'aurez\n"
+" * Priphriques de dmarrage: dans la plupart des cas, vous n'aurez\n"
"pas changer le disque par dfaut (/dev/hda, mais si vous le dsirez,\n"
"le programme d'amorce peut tre install sur un second disque,\n"
"/dev/hdb, ou mme sur une disquette, /dev/fd0.\n"
"\n"
-" * Dlais avant l'activation du choix par dfaut: au redmarrage de\n"
+" * Dlais avant l'activation du choix par dfaut: au redmarrage de\n"
"l'ordinateur, il s'agit du temps accord l'utilisateur pour dmarrer un\n"
"autre systme d'exploitation.\n"
"\n"
"!! Prenez garde, si vous dcidez de ne pas installer de programme d'amorce\n"
-"(en cliquant sur Annuler), vous devez vous assurez d'avoir une mthode\n"
-"pour dmarrer le systme. Aussi, assurez vous de bien savoir ce que vous\n"
-"faites si vous modifiez les options.!!\n"
+"(en cliquant sur Passer), vous devez vous assurer d'avoir une mthode\n"
+"pour dmarrer le systme. Aussi, assurez-vous de bien savoir ce que vous\n"
+"faites si vous modifiez les options. !!\n"
"\n"
"En cliquant sur Avance, vous aurez accs plusieurs autres options de\n"
"configuration. Sachez que celles-ci sont rserves aux experts en la\n"
-"matire.\n"
-"\n"
-"Si vous avez d'autres systmes d'exploitation installs sur votre\n"
-"ordinateur, ils seront automatiquement dtects et ajout vos menus de\n"
-"dmarrage. cette tape, vous pouvez dcider de prciser ces options. En\n"
-"double-cliquant sur une entre existante vous pourrez la paramtrer votre\n"
-"guise, ou l'enlever. Ajouter permet de crer de nouvelles entres, et\n"
-"terminer vous conduit la prochaine tape d'installation."
+"matire."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"Root\" is the system\n"
@@ -1741,7 +1730,7 @@ msgid ""
"have \"No password\", if your computer won't be connected to the Internet,\n"
"and if you trust anybody having access to it."
msgstr ""
-"Vous avez prendre ici une dcision cruciale pour la scurit de votre\n"
+"Vous devez prendre ici une dcision cruciale pour la scurit de votre\n"
"systme. L'utilisateur root est l'administrateur du systme qui a tous\n"
"les droits d'accs aux fichiers de configuration, etc. Il est donc\n"
"impratif de choisir un mot de passe difficile deviner (pensez aux\n"
@@ -1769,18 +1758,17 @@ msgstr ""
"de ces protocoles, il faut le slectionner. Si vous n'en avez aucune ide,\n"
"demandez votre administrateur de rseau.\n"
"\n"
-"Si votre ordinateur n'est pas connect sur un rseau administr, vous devez\n"
-"choisir Fichiers Locaux pour l'authentification.\n"
-"\n"
-"En mode expert, on vous demanderas si vous vous connecterez sur un serveur\n"
-"d'authentification tel que NIS ou LDAP.\n"
+"Si vous souhaitez que l'accs cette machine soit contrl par un serveur\n"
+"d'authentification, cliquez sur le bouton Avanc頻.\n"
"\n"
-"Si votre rseau utilises soit LDAP, NIS, ou un PDC Windows, choisissez-le\n"
+"Si votre rseau utilise soit LDAP, NIS, ou un PDC Windows, choisissez-le\n"
"comme protocole d'authentification. En cas de doute, demandez votre\n"
"administrateur rseau.\n"
"\n"
-"Si votre poste n'est pas sur un rseau, choisissez Fichiers Locales\n"
-"pour l'authentification."
+"Si vous avez des problmes vous souvenir de vos mots de passe, vous\n"
+"pouvez choisir Pas de mot de passe, si votre ordinateur ne sera pas\n"
+"connect Internet, et si vous avez confiance en tous ceux qui auront\n"
+"accs cette machine."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
@@ -1790,13 +1778,13 @@ msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Slectionnez le bon port srie. Par exemple: l'quivalent du port COM1\n"
-"sur Windows, se nomme ttyS0 sous GNU/Linux."
+"Slectionnez le bon port. Par exemple: l'quivalent du port COM1 sur\n"
+"Windows, se nomme ttyS0 sous GNU/Linux."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Usually, DrakX has no problems detecting the number of buttons on your\n"
"mouse. If it does, it assumes you have a two-button mouse and will\n"
@@ -1825,22 +1813,30 @@ msgid ""
msgstr ""
"DrakX dtecte gnralement le nombre de boutons de votre souris. Sinon, il\n"
"prend pour acquis que vous avez une souris deux boutons et configurera\n"
-"l'mulation du troisime bouton. galement, DrakX saura automatiquement si\n"
+"l'mulation du troisime bouton. De plus, DrakX saura automatiquement si\n"
"vous avez une souris PS/2, srie ou USB.\n"
"\n"
"Si vous dsirez installer une souris diffrente, veuillez la slectionner \n"
"partir de la liste qui vous est propose.\n"
"\n"
"Si vous slectionnez une souris diffrente de celle choisie par dfaut,\n"
-"DrakX vous prsentera un cran de test. Utilisez les boutons et la roue\n"
+"DrakX vous prsentera un cran de test. Utilisez les boutons et la molette\n"
"pour vous assurer que tout fonctionne correctement. Si votre souris ne\n"
-"fonctionne pas normalement, appuyer sur la barre d'espacement ou [Entre]\n"
-"ou encore Annuler, puis, slectionner une autre souris."
+"fonctionne pas normalement, appuyez sur la barre d'espacement ou la touche\n"
+"[Entre] pour annuler le test et retourner la liste de choix de la\n"
+"souris.\n"
+"\n"
+"Les souris roulette ne sont pas dtectes parfois. Vous devrez alors\n"
+"slectionner manuellement une souris dans la liste. Assurez vous de choisir\n"
+"celle qui correspond votre modle et au bon port de connexion. Aprs\n"
+"avoir press le bouton OK, une image de souris apparat. Vous devez\n"
+"alors faire tourner la molette afin de l'activer correctement. Testez alors\n"
+"que tous les mouvements et boutons fonctionnent correctement."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Your choice of preferred language will affect the language of the\n"
"documentation, the installer and the system in general. Select first the\n"
@@ -1853,9 +1849,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1864,26 +1865,37 @@ msgid ""
msgstr ""
"La premire tape consiste choisir votre langue.\n"
"\n"
-"Veuillez choisir votre langue de communication. Celle-ci sera utilise\n"
-"durant le processus d'installation, ainsi que durant les mises jour de\n"
-"votre systme.\n"
-"\n"
-"En cliquant sur Avanc頻, le programme vous proposera galement d'autres\n"
-"langues pouvant tre installes sur votre station de travail. En\n"
-"choisissant d'autres langues, le programme vous installera toute la\n"
-"documentation et les applications ncessaires l'utilisation de cette\n"
-"autre langue. Par exemple, si vous prvoyez d'accueillir des utilisateurs\n"
-"d'Espagne sur votre serveur, choisissez l'anglais comme langue principale,\n"
-"et, dans la section avance, cliquez sur l'toile grise correspondant \n"
-"Spanish|Spain.\n"
-"\n"
-"Sachez que plusieurs langues peuvent tre installes. Une fois votre\n"
-"slection complte termine, cliquez sur OK pour continuer."
+"Le choix de la langue sera appliqu la documentation, l'installation et\n"
+"le systme en gnral. Commencez par choisir la rgion o vous vous situez,\n"
+"puis la langue que vous parlez.\n"
+"\n"
+"En cliquant sur Avanc頻, le programme vous proposera galement des\n"
+"langues complmentaires pouvant tre installes sur votre station de\n"
+"travail. En choisissant des langues supplmentaires, le programme vous\n"
+"installera toute la documentation et les applications ncessaires \n"
+"l'utilisation de ces langues. Par exemple, si vous prvoyez d'accueillir\n"
+"des utilisateurs d'Espagne sur votre machine, choisissez le franais comme\n"
+"langue principale dans l'arborescence, et Espaol, dans la section\n"
+"avance.\n"
+"\n"
+"Remarquez que vous n'tes pas limit une langue supplmentaire. Vous\n"
+"pouvez en choisir plusieurs, ou mme les installer toutes en choisissant\n"
+"Toutes les langues. Choisir le support pour une langue signifie ajouter\n"
+"les traductions, les polices, correcteurs orthographiques, etc. La case\n"
+"Utiliser Unicode par dfaut force le systme utiliser l'encodage\n"
+"unicode (UTF-8). Mais c'est une fonctionnalit exprimentale. Toutefois, si\n"
+"vous slectionnez des langages qui ncessitent des encodages incompatibles,\n"
+"le support unicode sera install de toutes faons.\n"
+"\n"
+"Pour passer d'une langue l'autre, vous pouvez lancer l'utilitaire\n"
+"/usr/sbin/localedrake en tant que root pour changer la langue\n"
+"utilise dans tout le systme ; connectez-vous en simple utilisateur pour\n"
+"ne changer que la langue de cet utilisateur."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Depending on the default language you chose in Section , DrakX will\n"
"automatically select a particular type of keyboard configuration. However,\n"
@@ -1901,16 +1913,14 @@ msgid ""
"dialog will allow you to choose the key binding that will switch the\n"
"keyboard between the Latin and non-Latin layouts."
msgstr ""
-"Normalement, DrakX slectionne le clavier appropri en fonction de la\n"
-"langue choisie et vous ne devriez pas voir cette tape. Cela dit, il est\n"
-"possible que vous ayez un clavier ne correspondant pas exactement votre\n"
-"langue d'utilisation. Par exemple, si vous habitez le Qubec et parlez le\n"
-"franais et l'anglais, vous pouvez vouloir avoir votre clavier anglais pour\n"
-"les tches d'administration systme et votre clavier franais pour crire\n"
-"de la posie. Dans ces cas, il vous faudra revenir cette tape\n"
-"d'installation et slectionner un autre clavier partir de la liste.\n"
-"\n"
-"Vous n'avez qu'a choisir la disposition de clavier qui vous convient.\n"
+"Selon la langue principale que vous avez choisie l'tape , DrakX\n"
+"slectionne le clavier appropri. Cela dit, il est possible que vous ayez\n"
+"un clavier ne correspondant pas exactement votre langue d'utilisation.\n"
+"Par exemple, si vous habitez le Qubec et parlez le franais et l'anglais,\n"
+"vous pouvez vouloir avoir votre clavier anglais pour les tches\n"
+"d'administration systme et votre clavier franais pour crire de la\n"
+"posie. Dans ces cas, il vous faudra revenir cette tape d'installation\n"
+"et slectionner un autre clavier partir de la liste.\n"
"\n"
"Cliquez sur Davantage pour voir toutes les options proposes.\n"
"\n"
@@ -1918,6 +1928,8 @@ msgstr ""
"demandera au prochain cran de choisir la combinaison de cls permettant\n"
"d'alterner entre ceux-ci."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -1942,36 +1954,45 @@ msgid ""
"running version \"8.1\" or later. Performing an Upgrade on versions prior\n"
"to Mandrake Linux version \"8.1\" is not recommended."
msgstr ""
-"Cette tape apparat seulement si une vieille partition GNU/Linux a t\n"
-"trouve sur votre machine.\n"
+"Cette tape ne s'affiche que si une partition GNU/Linux a t dtecte sur\n"
+"votre disque dur.\n"
"\n"
-"Il s'agit maintenant de savoir si vous voulez installer un nouveau systme\n"
-"ou bien mettre jour un systme Mandrake Linux existant:\n"
+"DrakX doit maintenant savoir quel type d'installation vous dsirez\n"
+"raliser. Deux types d'installations sont proposs : Par dfaut (\n"
+"Recommande), qui limite le nombre de questions l'utilisateur au\n"
+"minimum ou Expert qui vous permet de slectionner individuellement\n"
+"chacune des composantes installer. Il vous est galement propos de faire\n"
+"une Installation ou une Mise jour d'un systme Mandrake Linux\n"
+"dj install :\n"
"\n"
-"- Installation: ce choix permet d'effacer compltement l'ancien "
-"systme.\n"
-" Si vous souhaitez changer le partitionnement ou les systmes de fichiers,\n"
-" vous devriez utiliser cette option. Cependant, selon votre schma de\n"
-" partitionnement, vous pouvez conserver certaines de vos donnes.\n"
+" * Installation : Remplace l'ancien systme. En fait, selon ce que\n"
+"votre machine comporte, vous pourrez garder intactes certaines des\n"
+"anciennes partitions (Linux ou autres) ;\n"
"\n"
-"- Mise--jour: cette classe d'installation vous permet de mettre \n"
-" niveau vos paquetages actuellement installs sur votre systme\n"
-" Mandrake Linux. Vos partitions et donnes utilisateur ne sont pas\n"
-" modifies. La plupart des autres tapes de configuration restent\n"
-" disponibles, comme pour une installation normale.\n"
+" * Mise jour : cette classe d'installation permet de mettre jour\n"
+"seulement les paquetages qui composent votre systme Mandrake Linux. Elle\n"
+"conserve les partitions existantes, ainsi que la configuration des\n"
+"utilisateurs. La plupart des autres tapes d'une installation classique\n"
+"sont accessibles ;\n"
"\n"
-"L'option de mise jour devrait fonctionner correctement sur un\n"
-"systme Mandrake Linux version 8.1 ou plus rcent. Il n'est pas\n"
-"recommand de faire une mise jour sur un systme plus ancien."
+"La mise jour devrait fonctionner correctement pour les systme Mandrake\n"
+"Linux partir de la version 8.1. Essayer de lancer une mise jour sur\n"
+"les versions antrieures 8.1 n'est pas recommand."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
-"Pays: vrifiez le choix du pays. Si vous n'tes pas dans ce pays,\n"
-"cliquez sur le bouton et choisissez-en un autre."
+"Pays: vrifiez la section du pays. Si vous ne vous trouvez pas dans\n"
+"ce pays, cliquez sur le bouton Configurer et choisissez le bon. Si\n"
+"votre pays ne se trouve pas dans la premire liste, cliquez sur Plus\n"
+"pour avoir la liste complte."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
@@ -2008,39 +2029,36 @@ msgid ""
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
-"Plus d'une partition Windows ont t dtect sur votre disque dur. SVP,\n"
-"veuillez choisir celle que vous voulez pour votre nouvelle installation de\n"
-"Mandrake Linux.\n"
+"Plus d'une partition Windows ont t dtectes sur votre disque dur. SVP,\n"
+"veuillez choisir celle que vous choisissez pour votre nouvelle installation\n"
+"de Mandrake Linux.\n"
"\n"
-"Chaque partition est identifi comme suit: Nom linux, Nom Windows,\n"
-"Capacit頻.\n"
+"Chaque partition est identifie comme suit: \"Nom linux\", \"Nom Windows\",\n"
+"\"Capacit\".\n"
"\n"
-"Le Nom est structur ainsi: type de disque dur, numro du disque\n"
-"dur, numro de partition. Par exemple, hda1.\n"
+"Le \"Nom\" est structur ainsi : \"type de disque dur\", \"numro du disque\n"
+"dur\", \"numro de partition\". Par exemple, hda1.\n"
"\n"
-"Le Type de disque dur correspond hd si votre disque est IDE. Pour un\n"
-"disque SCSI, vous lirez sd.\n"
+"Le \"Type de disque dur\" correspond hd si votre disque est IDE. Pour un\n"
+"disque SCSI, vous lirez \"sd\".\n"
"\n"
-"Le numro du disque est toujours liste aprs le hd ou fd. Pour les\n"
-"disque IDE:\n"
+"Le numro du disque est toujours list aprs le \"hd\" ou \"fd\". Pour les\n"
+"disques IDE :\n"
"\n"
-" * a signifie disque primaire matre sur le premier contrleur IDE;\n"
+" * \"a\" signifie \"disque primaire matre sur le premier contrleur IDE\";\n"
"\n"
-" * b signifie le disque primaire esclave sur le premier contrleur\n"
-"IDE;\n"
+" * \"b\" signifie \"disque primaire esclave sur le premier contrleur\n"
+"IDE\";\n"
"\n"
-" * c indique le disque primaire matre sur le second contrleur\n"
-"IDE;\n"
+" * \"c\" indique \"disque primaire matre sur le second contrleur IDE\";\n"
"\n"
-" * d signifie le disque primaire esclave sur le second contrleur\n"
-"IDE;\n"
+" * \"d\" signifie \"disque primaire esclave sur le second contrleur IDE\";\n"
"\n"
-"Avec les disques SCSI, le a indique le plus petit SCSI ID, et ainsi de\n"
+"Avec les disques SCSI, le \"a\" indique le plus petit SCSI ID, et ainsi de\n"
"suite.\n"
"\n"
-"Le nom Windows c'est la lettre assigne votre disque, (le premier "
-"disque\n"
-"ou partition C:)"
+"\"Windows name\" c'est la lettre assigne votre disque, (le premier\n"
+"disque ou partition \"C:\")"
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
@@ -2121,10 +2139,11 @@ msgid ""
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-" cette tape, vous devez slectionner quelle partition sera utilis pour\n"
-"votre systme Mandrake Linux. Si vous disque est dj partitionn, soit par\n"
-"une autre installation GNU/Linux ou par un autre outil de partitionnement,\n"
-"vous pourrez les utiliser. Si non,, Les partitions devront tre crs.\n"
+" cette tape, vous devez slectionner quelle partition sera utilise pour\n"
+"votre systme Mandrake Linux. Si votre disque est dj partitionn, soit\n"
+"par une autre installation GNU/Linux ou par un autre outil de\n"
+"partitionnement, vous pourrez les utiliser. Sinon, les partitions devront\n"
+"tre cres.\n"
"\n"
"Pour crer une partition, vous devez d'abord slectionner le disque \n"
"utiliser. Vous pouvez le slectionner en cliquant sur hda pour le\n"
@@ -2132,56 +2151,55 @@ msgstr ""
"SCSI, et ainsi de suite.\n"
"\n"
"Pour partitionner, le disque dur slectionn, vous pouvez utiliser les\n"
-"options suivantes:\n"
+"options suivantes :\n"
"\n"
-" * Tout effacer: cette option effacera toutes les partitions sur le\n"
+" * Tout effacer: cette option effacera toutes les partitions sur le\n"
"disque slectionn;\n"
"\n"
-" * Attribution Automatique: cette option permet de crer un systme "
-"de\n"
-"ficher Ext2 and Swap dans l'espace libre sur votre disque;\n"
+" * Attribution Automatique: cette option permet de crer un systme de\n"
+"ficher ext3 et Swap dans l'espace libre sur votre disque;\n"
"\n"
-" * Plus d'options: permet d'accder des fonctions additionnelles\n"
-":\n"
+"Plus d'options: permet d'accder des fonctionnalits additionnelles :\n"
"\n"
-" * Sauvegarder la table de partition: sauves la table de partition\n"
-"sur un disque amovibles. Cette option s'avre particulirement pratique\n"
-"pour rcurer des partition endommages. Il est fortement recommand de\n"
-"procder ainsi;\n"
+" * Sauvegarder la table de partition: sauve la table de partition sur\n"
+"un disque amovibles. Cette option s'avre particulirement pratique pour\n"
+"rparer des partitions endommages. Il est fortement recommand de procder\n"
+"ainsi;\n"
"\n"
-" * Restaurer la table de partition: permet de restaurer une table "
-"de\n"
+" * Restaurer la table de partition: permet de restaurer une table de\n"
"partition sauve au pralable sur une disquette.\n"
"\n"
-" * Rcuprer une partition: si votre table de partition est\n"
-"endommage, vous pouvez essayer de la rcuprer avec ces options. Soyez\n"
-"prudent et sachez que a ne fonctionne pas tous les coups.\n"
+" * Rcuprer une partition: si votre table de partition est endommage,\n"
+"vous pouvez essayer de la rcuprer avec ces options. Soyez prudent et\n"
+"sachez que cela ne fonctionne pas coup sr.\n"
"\n"
-" * Recharger la table de partition: carte les changements et "
-"charge\n"
-"la table de partition initiale;\n"
+" * Recharger la table de partition: carte les changements et charge la\n"
+"table de partition initiale;\n"
"\n"
-" * Chargement automatique des mdias amovibles: en cochant cette\n"
-"case, les cdrom et disquettes (et autres support) seront charges\n"
+" * Chargement automatique des mdias amovibles: en cochant cette case,\n"
+"les CD-ROM et disquettes (et autres support) seront chargs\n"
"automatiquement.\n"
"\n"
-" * Assistant: utilisez cette option si vous dsirez un assistant pour\n"
-"partitionner votre disque. Cette option est particulirement recommande si\n"
-"vous tes nouveau en matire de partition.\n"
+" * Assistant: utilisez cette option si vous souhaitez utiliser un\n"
+"assistant pour partitionner votre disque. Cette option est particulirement\n"
+"recommande si vous faites vos premiers pas avec les partitions.\n"
"\n"
-" * Dfaire: utilisez cette option pour annuler vos changements;\n"
+" * Dfaire: utilisez cette option pour annuler vos changements;\n"
"\n"
-" * Changez de mode normal/expert: permet des actions additionnelles "
-"sur\n"
-"les partitions (type, options, format) et donne plus d'informations;\n"
+" * Changez de mode normal/expert: permet des actions additionnelles\n"
+"sur les partitions (type, options, format) et donne plus d'informations;\n"
"\n"
-" * Terminer: une fois le partitionnement termin, ce bouton vous\n"
+" * Terminer: une fois le partitionnement termin, ce bouton vous\n"
"permettra de sauvegarder vos changements sur le disque.\n"
"\n"
-"Notez: vous pouvez modifier toutes les options en utilisant le clavier.\n"
+"Lorsque vous dfinissez la taille d'une partition, vous pouvez choisir\n"
+"prcisment la taille de celle-ci en utilisant les Flches de votre\n"
+"clavier.\n"
+"\n"
+"Note: vous pouvez atteindre toutes les options en utilisant le clavier.\n"
"Naviguer avec les flches et [Tab].\n"
"\n"
-"Une fois la partition slectionne, vous pouvez utiliser:\n"
+"Une fois la partition slectionne, vous pouvez utiliser :\n"
"\n"
" * Ctrl-c pour crer un nouvelle partition (lorsqu'une partition vide est\n"
"slectionne;\n"
@@ -2194,23 +2212,21 @@ msgstr ""
"sur le systme de fichier ext2FS dans Manuel de rfrence.\n"
"\n"
"Si vous installez sur un poste PPC, vous devrez crer une petite partition\n"
-"HFS bootstrap d'au moins 1 Mo qui sera utilise par le bootloader \n"
-"yaboot. Si vous optez pour une partition plus grande, disons 50Mo, vous\n"
-"trouverez utile d'y placer des noyaux et des images ramdisk accessibles\n"
-"en cas de problme."
+"HFS bootstrap d'au moins 1 Mo qui sera utilise par le chargeur de\n"
+"dmarrage (bootloader) yaboot. Si vous optez pour une partition plus\n"
+"grande, disons 50Mo, vous trouverez utile d'y placer des noyaux et des\n"
+"images ramdisk accessibles en cas de problme."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"At this point, DrakX will allow you to choose the security level desired\n"
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -2220,47 +2236,45 @@ msgstr ""
"directement sur Internet par exemple) et selon le niveau de sensibilit de\n"
"l'information contenu dans le systme (des numros de carte de crdit par\n"
"exemple). Sachez que, de manire gnrale, plus la scurit d'un systme\n"
-"est leve, plus il est complexe oprer. Rfrez-vous au chapitre\n"
-"msec du Manuel de rfrence pour obtenir plus d'informations sur\n"
-"les niveaux de scurit.\n"
+"est leve, plus il est complexe utiliser.\n"
"\n"
"Si vous ne savez pas quel niveau choisir, gardez la slection par dfaut."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
"Au moment o vous tes en train d'installer Mandrake Linux, il est possible\n"
"que certains paquetages aient t mis jour depuis la sortie du produit.\n"
"Des bogues ont pu tre corrigs, et des problmes de scurit rsolus. Pour\n"
"vous permettre de bnficier de ces mises jour, il vous est maintenant\n"
-"propos de les tl-charger sur Internet. Choisissez Oui si vous avez\n"
+"propos de les tlcharger depuis Internet. Choisissez Oui si vous avez\n"
"une connexion Internet, ou Non si vous prfrez installer les mises \n"
"jour plus tard.\n"
"\n"
-"En choisissant Oui, la liste des sites depuis lesquels les mises \n"
-"jours peuvent tre tl-charges est affiche. Choisissez le site le plus\n"
-"proche. Puis un arbre de choix des paquetages apparat: vrifiez la\n"
-"slection, puis cliquez sur Installer pour tl-charger et installer\n"
-"les mises jour slectionnes, ou Annuler pour abandonner."
+"En choisissant Oui, la liste des sites depuis lesquels les mises jour\n"
+"peuvent tre tlcharges est affiche. Choisissez le site le plus proche.\n"
+"Puis un arbre de choix des paquetages apparat : vrifiez la slection,\n"
+"puis cliquez sur Installer pour tl-charger et installer les mises \n"
+"jour slectionnes, ou Annuler pour abandonner."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a file system).\n"
@@ -2287,26 +2301,27 @@ msgid ""
"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
"for bad blocks on the disk."
msgstr ""
-"Les partitions ayant t nouvellement dfinies doivent tre format (ce qui\n"
-"signifie la cration d'un systme de fichiers.\n"
+"Les partitions ayant t nouvellement dfinies doivent tre formates (ce\n"
+"qui implique la cration d'un systme de fichiers).\n"
"\n"
-" cette tape, vous pouvez reformater des partitions existantes pour\n"
-"effacer les donns prsentes. Vous devrez alors les slectionner galement.\n"
+"Lors de cette tape, vous pouvez reformater des partitions existantes pour\n"
+"effacer les donnes prsentes. Vous devrez alors les slectionner\n"
+"galement.\n"
"\n"
"Sachez qu'il n'est pas ncessaire de reformater toutes les partitions\n"
-"existantes. Vous devez formater les contenant le systme d'exploitation\n"
-"(comme /, /usr ou /var, mais il n'est pas ncessaire de\n"
-"formater les partitions de donnes, notamment /home..\n"
+"existantes. Vous devez formater les partitions contenant le systme\n"
+"d'exploitation (comme /, /usr ou /var, mais il n'est pas\n"
+"ncessaire de formater les partitions de donnes, notamment /home...\n"
"\n"
-"Restez prudent. Une fois les partition slectionne reformate, il sera\n"
-"impossible de rcuprer des donns.\n"
+"Soyez prudent. Une fois que les partitions slectionnes seront\n"
+"reformates, il sera impossible de rcuprer des donnes.\n"
"\n"
-"Cliquez sur OK lorsque vous tes prt formater les partitions.\n"
+"Cliquez sur OK lorsque vous tes prt formater les partitions.\n"
"\n"
"Cliquez sur Annuler pour ajouter ou enlever une partition formater.\n"
"\n"
"Cliquer sur Avancer si vous dsirez slectionner des partitions pour\n"
-"une vrifications des mauvais secteurs (Bad Blocks)."
+"une vrification des secteurs dfectueux (Bad Blocks)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
@@ -2319,7 +2334,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2350,14 +2365,14 @@ msgstr ""
"est prsent).\n"
"\n"
"Le bouton Avance (en mode Expert uniquement) permet deux autres\n"
-"options:\n"
+"options :\n"
"\n"
-" * Gnrer une disquette d'auto-install: Pour crer une disquette\n"
+" * Gnrer une disquette d'auto-install: Pour crer une disquette\n"
"d'installation qui permettra de reproduire l'installation que vous venez de\n"
"raliser sans l'aide d'un administrateur.\n"
"\n"
" Notez que les deux options suivantes apparaissent aprs avoir cliqu sur\n"
-"le bouton:\n"
+"le bouton :\n"
"\n"
" * Replay. C'est une installation partiellement automatique o il\n"
"est possible de personnaliser le partitionnement du disque (exclusivement).\n"
@@ -2365,13 +2380,13 @@ msgstr ""
" * Automatique. Compltement automatique, cette installation\n"
"reformate le disque au complet.\n"
"\n"
-" Cette fonction est particulirement pratique pour l'installation\n"
+" Cette fonctionnalit est particulirement pratique pour l'installation\n"
"de multiples systmes. Voir la sectionAuto install de notre site Web.\n"
"\n"
" * Sauvegarder les paquetages slectionns (*) sauve la slection des\n"
"paquetages installs. Puis, lorsque vous ferez une autre installation,\n"
-"insrer la disquette dans le lecteur et accder au menu d'aide en tapant\n"
-"[f1], et entrez la commande suivante: linux defcfg=\"floppy\".\n"
+"insrez la disquette dans le lecteur et accdez au menu d'aide en tapant\n"
+"[f1], et entrez la commande suivante : linux defcfg=\"floppy\".\n"
"\n"
"(*) Vous avez besoin d'une disquette formate avec FAT (pour la crer sous\n"
"Linux, tapez mformat a:)"
@@ -2379,7 +2394,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"At this point, you need to decide where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -2410,7 +2425,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2435,13 +2450,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"Cette tape vous permet de dterminer prcisment l'emplacement de votre\n"
"installation de Mandrake Linux. Si votre disque est vide ou utilis par un\n"
@@ -2449,53 +2464,42 @@ msgstr ""
"Partitionner un disque signifie de le diviser prcisment afin de crer un\n"
"espace pour votre installation.\n"
"\n"
-"Comme les effets du partitionage sont irrversibles (l'ensemble du disque\n"
-"est effac), le partitionnement est gnralement intimidant et stressant\n"
-"pour un utilisateur inexpriment. Heureusement, une interface a t prvue\n"
-" cet effet. Avant de commencer, rvisez vos manuels et surtout, prenez\n"
-"votre temps.\n"
-"\n"
-"Si vous tes en mode expert, l'application DiskDrake, l'outil de\n"
-"partitionnement de Mandrake Linux, vous permettra de dterminer prcisment\n"
-"l'emplacement de chacune de vos partitions. partir de l'interface\n"
-"d'installation, vous pouvez lancer les assistants en cliquant sur\n"
-"Assistant.\n"
-"\n"
-"Si des partitions ont dj t dfinies, peu importe qu'elles proviennent\n"
-"d'une autre installation ou d'un autre outil de partitionnement, il vous\n"
-"suffit de simplement choisir sur quelle partition vous voulez installer\n"
-"Mandrake.\n"
+"Comme les effets du partitionnement sont irrversibles (l'ensemble du\n"
+"disque est effac), le partitionnement est gnralement intimidant et\n"
+"stressant pour un utilisateur inexpriment. Heureusement, un assistant a\n"
+"t prvu cet effet. Avant de commencer, rvisez vos manuels et surtout,\n"
+"prenez votre temps.\n"
"\n"
-"Si vos partitions ne sont pas dfinies, vous devrez les crer en utilisant\n"
-"l'assistant. Selon la configuration de votre disque, plusieurs options sont\n"
-"disponibles:\n"
+"Selon la configuration de votre disque, plusieurs options sont disponibles\n"
+":\n"
"\n"
-" * Utilisez l'espace disponible: cette option tentera simplement de\n"
+" * Utilisez l'espace disponible : cette option tentera simplement de\n"
"partitionner automatiquement l'espace inutilis sur votre disque. Il n'y\n"
"aura pas d'autre question.\n"
"\n"
-" * Utiliser les partitions existantes: l' assistant a dtect une ou\n"
+" * Utiliser les partitions existantes : l' assistant a dtect une ou\n"
"plusieurs partitions existants sur votre disque. Si vous voulez les\n"
-"utiliser, choisissez cette option.\n"
-"\n"
-" * Utilisez l'espace libre sur une partition Windows: si Microsoft\n"
-"Windows est install sur votre disque et prend l'ensemble de l'espace vous\n"
-"devez crer une place pour votre installation Mandrake. Pour ce faire, vous\n"
-"pouvez tout effacer (voir effacer tout le disque ou Mode expert) ou\n"
-"vous pouvez redimensionner l'espace utilis par Windows. Le\n"
-"redimensionnement peut tre effectu sans pertes de donnes, condition\n"
-"que vous ayez pralablement dfragment la partition Windows. Une\n"
-"sauvegarde de Vos donnes ne fera pas de mal non plus. Cette seconde option\n"
-"peut tre accomplie sans perte de donnes. Cette solution est recommande\n"
-"pour faire cohabiter Linux et Windows sur le mme ordinateur.\n"
+"utiliser, choisissez cette option. Il vous sera alors demand de choisir\n"
+"les points de montage associs chacune des partitions. Les anciens points\n"
+"de montage sont slectionns par dfaut, et vous devriez gnralement les\n"
+"garder.\n"
+"\n"
+" * Utilisez l'espace libre sur une partition Windows : si Microsoft\n"
+"Windows est install sur votre disque et en prend toute la place vous devez\n"
+"faire de la place pour votre installation Linux. Pour ce faire, vous pouvez\n"
+"tout effacer (voir effacer tout le disque) ou vous pouvez\n"
+"redimensionner la partition FAT Windows. Le redimensionnement peut tre\n"
+"effectu sans pertes de donnes, condition que vous ayez pralablement\n"
+"dfragment la partition Windows, et qu'elle utilise le format FAT. Une\n"
+"sauvegarde de vos donnes ne fera pas de mal non plus. Cette solution est\n"
+"recommande pour faire cohabiter Linux et Windows sur le mme ordinateur.\n"
"\n"
" Avant de choisir cette option, il faut comprendre qu'aprs cette\n"
"procdure l'espace disponible pour Windows sera rduit. Vous aurez moins\n"
"d'espace pour installer des logiciels ou sauvegarder de l'information avec\n"
"Windows.\n"
"\n"
-" * Effacer tout le disque: si vous voulez effacer toutes les donnes "
-"et\n"
+" * Effacer tout le disque: si vous voulez effacer toutes les donnes et\n"
"les applications installes sur votre systme et les remplacer par votre\n"
"nouveau systme Mandrake Linux, choisissez cette option. Soyez prudent, car\n"
"ce choix est irrversible et permanent. Il vous sera impossible de\n"
@@ -2504,72 +2508,19 @@ msgstr ""
" !! En choisissant cette option, l'ensemble du contenu de votre disque\n"
"sera dtruit. !!\n"
"\n"
-" * Supprimer Microsoft Windows: ce choix effacera tout simplement ce\n"
+" * Supprimer Microsoft Windows: ce choix effacera tout simplement ce\n"
"que contient le disque et recommencera zro. Toutes les donnes et les\n"
"programmes prsents sur le disque seront effacs.\n"
"\n"
" !! En choisissant cette option, l'ensemble de votre disque sera effac\n"
"!!\n"
"\n"
-" * Mode expert: permet de partitionner manuellement votre disque. "
-"Soyez\n"
-"prudent, parce que bien que plus puissante, cette option est dangereuse.\n"
-"Vous pouvez facilement perdre l'ensemble du contenu d'un disque. Donc, ne\n"
-"choisissez pas cette option si vous ne savez pas exactement ce que vous\n"
-"devez faire. Pour en savoir plus sur DiskDrake, rfrez vous Grer ses\n"
-"partitions du the Guide de l'utilisateur"
-
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
-#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Le CDROM d'installation de Mandrake Linux a un mode de rcupration\n"
-"prdfini. Vous pouvez y accder en dmarrant l'ordinateur sur le CDROM.\n"
-"Selon la version de votre BIOS, il faut lui spcifier de dmarrer sur\n"
-"le CDROM. Vous devriez revenir au disquette de dmarrage dans deux cas\n"
-"prcis:\n"
-"\n"
-" * Au moment d'installer le Programme d'amorce, DrakX va rcrire sur\n"
-"le secteur (MBR) contenant le programme d'amorce (boot loader) afin de vous\n"
-"permettre de dmarrer avec Linux ou Windows (en prenant pour acquis que\n"
-"vous avez deux systmes d'exploitation installs. Si vous rinstallez\n"
-"Windows, celui-ci va rcrire sur le MBR et il vous sera dsormais\n"
-"impossible de dmarrer Linux.\n"
-"\n"
-" * Si un problme survient et qu'il vous est impossible de dmarrer\n"
-"GNU/Linux partir du disque dur, cette disquette deviendra votre seul\n"
-"moyen de dmarrer votre systme Linux. Elle contient un bon nombre d'outils\n"
-"pour rcuprer un systme dfectueux, peu importe la source du problme.\n"
-"\n"
-"En cliquant sur cette tape, on vous demandera d'insrer une disquette. La\n"
-"disquette insre sera compltement efface et DrakX se chargera de la\n"
-"formater et d'y insrer les fichiers ncessaires."
+" * Partitionnement personnalis頻 : permet de partitionner manuellement\n"
+"votre disque. Soyez prudent, car bien que plus puissante, cette option est\n"
+"dangereuse. Vous pouvez facilement perdre l'ensemble du contenu d'un\n"
+"disque. Donc, ne choisissez pas cette option si vous ne savez pas\n"
+"exactement ce que vous devez faire. Pour en savoir plus sur DiskDrake,\n"
+"rfrez vous Grer ses partitions du Guide de dmarrage."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
@@ -2582,12 +2533,15 @@ msgid ""
"act as a server, or if you were not successful in getting the display\n"
"configured."
msgstr ""
-"Finalement, il vous sera demand si vous souhaitez obtenir l'interface\n"
-"graphique ds le dmarrage ou non. Notez que cette question sera pose mme\n"
-"si vous choisissez de ne pas tester la configuration. Il est videmment\n"
-"souhaitable de rpondre Non si cette machine est un serveur sur\n"
-"laquelle personne n'est cense travailler en mode graphique."
+"Options\n"
+"\n"
+" Vous pourrez finalement choisir ici de dmarrer l'interface graphique au\n"
+"lancement de la machine. Il est prfrable de choisir Non si vous tes\n"
+"en train d'installer un serveur, ou si vous n'avez pas russi configurer\n"
+"l'cran correctement."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -2595,10 +2549,12 @@ msgid ""
"without 3D acceleration, you are then proposed to choose the server that\n"
"best suits your needs."
msgstr ""
-"Si plusieurs serveurs d'affichage sont disponibles pour votre carte,\n"
-"avec ou sans acclration 3D, vous devez choisir celui qui convient\n"
-"le mieux vos besoins."
+"Dans le cas o diffrents serveurs seraient disponible pour votre carte,\n"
+"avec ou sans acclration 3D, il vous est alors propos de choisir le\n"
+"serveur qui vous conviendra le mieux."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -2611,12 +2567,14 @@ msgid ""
msgstr ""
"Rsolution\n"
"\n"
-" Vous pouvez choisir ici les rsolutions et profondeurs de couleur parmi\n"
-"celles qui sont disponibles pour votre matriel. Choisissez celles qui\n"
-"correspondent le mieux vos besoins (vous pourrez changer ceci\n"
-"aprs l'installation). Le dessin d'cran vous schmatise la configuration "
-"choisie."
+" Vous pouvez choisir ici la rsolution et nombre de couleur parmi celles\n"
+"disponibles pour votre matriel. Choisissez la configuration optimale pour\n"
+"votre utilisation (vous pourrez nanmoins modifier cela aprs\n"
+"l'installation). Un chantillon de la configuration choisie apparat dans\n"
+"le moniteur stylis."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -2628,9 +2586,13 @@ msgid ""
msgstr ""
"Moniteur\n"
"\n"
-" Votre moniteur peut normalement tre dtect automatiquement.\n"
-"Si ce n'est pas le cas, choisissez-en un dans la liste."
+" Le programme d'installation dtecte et configure automatiquement les\n"
+"moniteurs connects votre unit centrale. Si ce n'est pas le cas, vous\n"
+"pouvez choisir dans cette liste le moniteur que vous utilisez\n"
+"effectivement."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -2686,60 +2648,62 @@ msgid ""
"\"No\" if your machine is to act as a server, or if you were not successful\n"
"in getting the display configured."
msgstr ""
-"X (pour X Window system) est le coeur de l'interface graphique de GNU/Linux\n"
-"sur lequel reposent tous les environnements graphiques (KDE, GNOME,\n"
-"AfterStep, WindowMaker, etc.) fournis avec Mandrake Linux.\n"
-"\n"
-"Une liste de diffrents paramtres vous sera prsente pour vous\n"
-"permettre de spcifier la configuration optimale.\n"
+"X (pour le systme X Window) est le coeur de votre interface graphique sous\n"
+"GNU/Linux. Tous les environnements graphiques (KDE, GNOME, WindowMaker et.)\n"
+"prsents sur Mandrake Linux dpendent de X.\n"
"\n"
-"Carte graphique\n"
+"Il vous sera prsent la liste de divers paramtres changer pour obtenir\n"
+"un affichage optimal : Carte graphique\n"
"\n"
-" La carte graphique peut normalement tre dtecte automatiquement.\n"
-"Si ce n'est pas le cas, vous pouvez la choisir dans la liste.\n"
+" Le programme d'installation dtecte et configure automatiquement les\n"
+"cartes graphiques prsentes sur votre machine. Si ce n'est pas le cas, vous\n"
+"pouvez choisir dans cette liste la carte que vous utilisez effectivement.\n"
"\n"
-" Si plusieurs serveurs d'affichage sont disponibles pour votre carte,\n"
-"avec ou sans acclration 3D, vous devez choisir celui qui convient\n"
-"le mieux vos besoins.\n"
+" Dans le cas o diffrents serveurs seraient disponible pour votre carte,\n"
+"avec ou sans acclration 3D, il vous est alors propos de choisir le\n"
+"serveur qui vous conviendra le mieux.\n"
"\n"
"\n"
"\n"
"Moniteur\n"
"\n"
-" Votre moniteur peut normalement tre dtect automatiquement.\n"
-"Si ce n'est pas le cas, choisissez-en un dans la liste.\n"
+" Le programme d'installation dtecte et configure automatiquement les\n"
+"moniteurs connects votre unit centrale. Si ce n'est pas le cas, vous\n"
+"pouvez choisir dans cette liste le moniteur que vous utilisez\n"
+"effectivement.\n"
"\n"
"\n"
"\n"
"Rsolution\n"
"\n"
-" Vous pouvez choisir ici les rsolutions et profondeurs de couleur parmi\n"
-"celles qui sont disponibles pour votre matriel. Choisissez celles qui\n"
-"correspondent le mieux vos besoins (vous pourrez changer ceci\n"
-"aprs l'installation). Le dessin d'cran vous schmatise la configuration "
-"choisie.\n"
+" Vous pouvez choisir ici la rsolution et nombre de couleur parmi celles\n"
+"disponibles pour votre matriel. Choisissez la configuration optimale pour\n"
+"votre utilisation (vous pourrez nanmoins modifier cela aprs\n"
+"l'installation). Un chantillon de la configuration choisie apparat dans\n"
+"le moniteur stylis.\n"
"\n"
"\n"
"\n"
"Test\n"
"\n"
-" Le systme va essayer de lancer un cran graphique la rsolution\n"
-"choisie. Si vous pouvez voir le message pendant le test, cliquez sur \"Yes"
-"\",\n"
-"puis vous serez men l'tape suivante. Si vous ne pouvez pas voir le\n"
-"message, cela signifie que l'autodtection s'est mal droule, le test\n"
-"s'arrtera aprs 12 secondes, et vous retournerez au menu. Changez\n"
-"alors les paramtres jusqu' obtenir un affichage correct.\n"
+" le systme va ici essayer d'ouvrir un cran graphique la rsolution\n"
+"choisie. Si vous pouvez voir le message pendant le test, et rpondez\n"
+"Oui, alors DrakX passera l'tape suivante. Si vous ne pouvez pas voir\n"
+"de message, cela signifie que vos paramtres sont incompatibles, et le test\n"
+"terminera automatiquement aprs 12 secondes. Changez la configuration\n"
+"jusqu' obtenir un affichage correct lors du test.\n"
"\n"
"\n"
"\n"
"Options\n"
"\n"
-" Vous pouvez dcider si votre machine doit dmarrer automatiquement\n"
-"en mode graphique. videmment, vous devrez cocher \"non\" si votre\n"
-"machine doit fonctionner en serveur sans cran, ou si vous n'avez pas\n"
-"pu obtenir un rglage satisfaisant pour l'affichage graphique."
+" Vous pourrez finalement choisir ici de dmarrer l'interface graphique au\n"
+"lancement de la machine. Il est prfrable de choisir Non si vous tes\n"
+"en train d'installer un serveur, ou si vous n'avez pas russi configurer\n"
+"l'cran correctement."
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
@@ -2755,17 +2719,18 @@ msgid ""
msgstr ""
"Carte graphique\n"
"\n"
-" La carte graphique peut normalement tre dtecte automatiquement.\n"
-"Si ce n'est pas le cas, vous pouvez la choisir dans la liste.\n"
+" Le programme d'installation dtecte et configure automatiquement les\n"
+"cartes graphiques prsentes sur votre machine. Si ce n'est pas le cas, vous\n"
+"pouvez choisir dans cette liste la carte que vous utilisez effectivement.\n"
"\n"
-" Si plusieurs serveurs d'affichage sont disponibles pour votre carte,\n"
-"avec ou sans acclration 3D, vous devez choisir celui qui convient\n"
-"le mieux vos besoins."
+" Dans le cas o diffrents serveurs seraient disponible pour votre carte,\n"
+"avec ou sans acclration 3D, il vous est alors propos de choisir le\n"
+"serveur qui vous conviendra le mieux."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
"local time according to the time zone you selected. If the clock on your\n"
@@ -2792,15 +2757,16 @@ msgstr ""
"alors prsente, choisissez un serveur gographiquement proche de vous.\n"
"Vous devez avoir une connexion Internet pour que cela fonctionne bien\n"
"entendu. Cela installera en fait sur votre machine un serveur de temps\n"
-"local qui pourra optionnellement tre lui-mme utilis par d'autres\n"
-"machines de votre rseau local."
+"local qui pourra, en option, tre lui-mme utilis par d'autres machines de\n"
+"votre rseau local."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2824,26 +2790,27 @@ msgstr ""
"absolument ncessaire au dmarrage du systme.\n"
"\n"
"Vous pouvez obtenir une courte explication des services en les\n"
-"slectionnant spcifiquement. Cela dit, si vous n'tes pas certain de\n"
-"l'application d'un service, conservez les paramtres par dfaut\n"
+"slectionnant spcifiquement. Cela dit, si vous n'tes pas sr de\n"
+"l'application d'un service, conservez les paramtres par dfaut.\n"
"\n"
"!! cette tape, soyez particulirement attentif dans le cas d'un systme\n"
"destin agir comme serveur. Dans ce cas, vous voudrez probablement\n"
"permettre exclusivement les services ncessaires. !!"
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
msgstr ""
-"Imprimante: cliquer sur le bouton Pas d'imprimante ouvrira\n"
-"l'assistant de configuration d'imprimante. Consultez le chapitre\n"
-"correspondant du Guide de dmarrage pour plus d'informations\n"
-"sur la configuration d'imprimantes. L'interface prsente ici est\n"
-"similaire celle rencontre pendant l'installation."
+"Imprimante: en cliquant sur Configurer, l'outil de configuration\n"
+"d'impression sera dmarr. Consultez le chapitre correspondant du Guide\n"
+"de dmarrage pour plus de renseignements. L'interface qui y est\n"
+"documente est similaire celle rencontre lors de l'installation."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
@@ -2869,32 +2836,29 @@ msgid ""
"for details about the configuration, or simply wait until your system is\n"
"installed and use the program described there to configure your connection."
msgstr ""
-"Si vous dsirez connecter votre systme un rseau ou Internet,\n"
-"cliquez sur OK. L'autodtection des priphriques rseau et modems sera\n"
-"alors lance. Si cette dtection choue, dcochez la case Utiliser\n"
-"l'autodtection. Vous pouvez aussi choisir de ne pas configurer le\n"
+"Si vous dsirez connecter votre systme un rseau ou Internet, cliquez\n"
+"sur OK. L'auto-dtection des priphriques rseau et modem sera alors\n"
+"lance. Si cette dtection choue, dcochez la case Utiliser\n"
+"l'auto-dtection. Vous pouvez aussi choisir de ne pas configurer le\n"
"rseau, ou de le faire plus tard. Dans ce cas, cliquez simplement sur\n"
"Annuler.\n"
"\n"
-"Les types de connexion supportes sont: modem tlphonique, modem ISDN,\n"
-"connexion ADSL, modem cble ou simplement LAN (rseau ethernet).\n"
+"Les types de connexion supportes sont : modem tlphonique, modem ISDN,\n"
+"connexion ADSL, modem cble ou simplement LAN (rseau Ethernet).\n"
"\n"
-"Nous ne dtaillerons pas ici chacune des configurations\n"
-"possible. Assurez-vous seulement que vous avez toutes les informations\n"
-"de votre fournisseur de service Internet porte de main.\n"
+"Nous ne dtaillerons pas ici chacune des configurations possibles.\n"
+"Assurez-vous seulement que vous avez toutes les informations de votre\n"
+"fournisseur de service Internet porte de main.\n"
"\n"
-"Vous pouvez consulter le chapitre du Guide de l'utilisateur concernant\n"
-"les connexions Internet pour plus de dtails propos des configurations\n"
+"Vous pouvez consulter le chapitre du Guide de dmarrage concernant les\n"
+"connexions Internet pour plus de dtails propos des configurations\n"
"spcifiques de chaque type de connexion. Vous pouvez galement configurer\n"
-"votre connexion Internet une fois l'installation termine.\n"
-"\n"
-"Si vous dsirez configurer votre rseau plus tard ou si vous avez termin\n"
-"l'installation de votre rseau, cliquez sur Annuler."
+"votre connexion Internet une fois l'installation termine."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"If you told the installer that you wanted to individually select packages,\n"
"it will present a tree containing all packages classified by groups and\n"
@@ -2936,8 +2900,8 @@ msgstr ""
"l'arbre, vous pouvez slectionner des groupes, des sous-groupes ou des\n"
"paquetages individuels.\n"
"\n"
-"Ds que vous slectionnez un paquetage dans l'arbre, une descriptions\n"
-"apparat droite. Une fois votre slection complte, cliquez sur\n"
+"Ds que vous slectionnez un paquetage dans l'arbre, une description\n"
+"apparat droite. Une fois votre slection termine, cliquez sur\n"
"Installation pour lancer le processus. Soyez patient, car en fonction\n"
"du type d'installation choisi ou du nombre de paquetages slectionns, le\n"
"temps requis peut tre substantiellement diffrent. Une estimation du temps\n"
@@ -2969,7 +2933,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"It is now time to specify which programs you wish to install on your\n"
"system. There are thousands of packages available for Mandrake Linux, and\n"
@@ -3027,64 +2991,53 @@ msgstr ""
"paquetages installer, et qu'il n'est pas ncessaire de tous les connatre\n"
"par coeur.\n"
"\n"
-"Si vous tes en train de faire une installation normale partir d'un\n"
-"CDROM, il vous sera d'abord demand de spcifier quel CD vous avez (en mode\n"
-"Expert). Vrifier les tiquettes et cliquez sur les botes leur tant\n"
-"associes. Cliquez sur OK, lorsque vous tes prt continuer.\n"
-"\n"
"Les paquetages sont regroups selon la nature de l'installation. Les\n"
-"groupes sont diviss en quatre sections principales:\n"
+"groupes sont diviss en quatre sections principales :\n"
"\n"
-" * Station de travail: si vous comptez utiliser votre machine ainsi,\n"
+" * Station de travail: si vous comptez utiliser votre machine ainsi,\n"
"slectionner un ou plusieurs groupes y correspondant.\n"
"\n"
-" * Environnement graphique: ce groupe vous permettra de dterminer "
-"quel\n"
-"environnement graphique vous voulez avoir sur votre systme. videmment, il\n"
-"vous en faut au moins un pour utiliser votre station en mode graphique.\n"
-"\n"
-" * Dveloppement: si votre systme sera utilis pour la programmation,\n"
-"choisissez les groupes dsirs.\n"
+" * Dveloppement: si votre systme doit tre utilis pour la\n"
+"programmation, choisissez les groupes dsirs.\n"
"\n"
-" * Serveur: finalement, si vous systme doit agir en tant que serveur,\n"
+" * Serveur: finalement, si votre systme doit agir en tant que serveur,\n"
"vous pourrez slectionner les services que vous voulez installer.\n"
"\n"
-" * Environnement graphique: ce groupe vous permettra de dterminer "
-"quel\n"
+" * Environnement graphique: ce groupe vous permettra de dterminer quel\n"
"environnement graphique vous voulez avoir sur votre systme. videmment, il\n"
"vous en faut au moins un pour utiliser votre station en mode graphique.\n"
"\n"
"En plaant votre souris au dessus d'un nom de groupe, vous verrez\n"
-"apparatre une courte description de ce groupe. Si vous d slectionnez\n"
+"apparatre une courte description de ce groupe. Si vous d-slectionnez\n"
"tous les groupes lors d'une installation standard (par opposition une\n"
"mise jour), un dialogue apparatra proposant diffrentes options pour une\n"
-"installation minimale:\n"
+"installation minimale :\n"
"\n"
-" * Avec X: installe le moins de paquetages possible pour avoir un\n"
+" * Avec X : installe le moins de paquetages possible pour avoir un\n"
"environnement de travail graphique ;\n"
"\n"
-" * Avec la documentation de base: installe le systme de base plus\n"
+" * Avec la documentation de base : installe le systme de base plus\n"
"certains utilitaires de base et leur documentation. Cette installation est\n"
"utilisable comme base pour monter un serveur ;\n"
"\n"
-" * Installation vraiment minimale: installera le strict minimum\n"
+" * Installation vraiment minimale : installera le strict minimum\n"
"ncessaire pour obtenir un systme GNU/Linux fonctionnel, en ligne de\n"
-"commande. Cette installation prend peu prs 65Mo.\n"
+"commande. Cette installation prends peu prs 65Mo.\n"
"\n"
"Vous pouvez finalement cocher l'option Slection individuelle des\n"
"paquetages. Cette option est utiliser si vous connaissez exactement le\n"
"paquetage dsir ou si vous voulez avoir le contrle total de votre\n"
"installation.\n"
"\n"
-"Si vous avez dmarr l'installation en mode \"mise jour\", vous pouvez\n"
-"\"d-slectionner\" tous les groupes afin d'viter l'installation de\n"
+"Si vous avez dmarr l'installation en mode mise jour, vous pouvez\n"
+"d-slectionner tous les groupes afin d'viter l'installation de\n"
"nouveaux programmes. Cette option est trs utile pour restaurer un systme\n"
"dfectueux."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
"knows if a selected package is located on another CD-ROM so it will eject\n"
@@ -3098,7 +3051,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Here are Listed the existing Linux partitions detected on your hard drive.\n"
"You can keep the choices made by the wizard, since they are good for most\n"
@@ -3131,44 +3084,44 @@ msgid ""
"\"second lowest SCSI ID\", etc."
msgstr ""
"La liste prsente plus haut identifie les partitions GNU/Linux dtectes\n"
-"sur votre systme. Vous pouvez accepter les choix proposs par l'assistant\n"
-"qui s'avre bon dans la grande majorit des cars. Si vous fates un\n"
-"changement, vous devez au moins avoir une partition root (/). root\n"
-"partition (/). Prenez garder de vous rserver suffisamment d'espace\n"
-"pour installer toutes les applications qui vous intresse. Vous devrez\n"
-"galement crer une partition /home. Ceci s'avre exclusivement\n"
+"sur votre systme. Vous pouvez accepter les choix proposs par l'assistant,\n"
+"qui s'avrent bon dans la grande majorit des cas. Si vous faites un\n"
+"changement, vous devez au moins avoir une partition root (\"/\"). root\n"
+"partition (/). Prenez garde de vous rserver suffisamment d'espace pour\n"
+"installer toutes les applications qui vous intressent. Vous devrez\n"
+"galement crer une partition /home. Ceci s'avre exclusivement\n"
"possible lorsque vous avez dj au moins une partition GNU/Linux de\n"
-"configurer.\n"
+"configure.\n"
"\n"
-"Chaque partition est liste comme suit: Nom, Capacit頻.\n"
+"Chaque partition est liste comme suit: \"Nom\", \"Capacit\".\n"
"\n"
-"Le Nom est structur ainsi: type de disque dur, numro du disque\n"
-"dur, numro de partition. Par exemple, hda1.\n"
+"Le \"Nom\" est structur ainsi : \"type de disque dur\", \"numro du disque\n"
+"dur\", \"numro de partition\". Par exemple, hda1.\n"
"\n"
-"Le Type de disque dur correspond hd si votre disque est IDE. Pour un\n"
-"disque SCSI, vous lirez sd.\n"
+"Le \"Type de disque dur\" correspond hd si votre disque est IDE. Pour un\n"
+"disque SCSI, vous lirez \"sd\".\n"
"\n"
-"Le numro du disque est toujours liste aprs le hd ou fd. Pour les\n"
-"disque IDE:\n"
+"Le numro du disque est toujours list aprs le \"hd\" ou \"fd\". Pour les\n"
+"disques IDE :\n"
"\n"
-" * a signifie disque primaire matre sur le premier contrleur IDE;\n"
+" * \"a\" signifie \"disque primaire matre sur le premier contrleur IDE\";\n"
"\n"
-" * b signifie le disque primaire esclave sur le premier contrleur\n"
-"IDE;\n"
+" * \"b\" signifie le \"disque primaire esclave sur le premier contrleur\n"
+"IDE\";\n"
"\n"
-" * c indique le disque primaire matre sur le second contrleur\n"
-"IDE;\n"
+" * \"c\" indique le \"disque primaire matre sur le second contrleur\n"
+"IDE\";\n"
"\n"
-" * d signifie le disque primaire esclave sur le second contrleur\n"
-"IDE;\n"
+" * \"d\" signifie le \"disque primaire esclave sur le second contrleur\n"
+"IDE\";\n"
"\n"
-"Avec les disques SCSI, le a indique le plus petit SCSI ID, et b le\n"
+"Avec les disques SCSI, le \"a\" indique le plus petit SCSI ID, et b le\n"
"deuxime plus petit ID, etc."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"GNU/Linux is a multi-user system, meaning each user can have their own\n"
"preferences, their own files and so on. You can read the ``Starter Guide''\n"
@@ -3208,18 +3161,18 @@ msgid ""
"->\". If you are not interested in this feature, uncheck the \"Do you want\n"
"to use this feature?\" box."
msgstr ""
-"GNU/Linux est un systme multi-utilisateurs, ce qui signifie gnralement\n"
-"que chaque utilisateur peut avoir des prfrences diffrences, ses propres\n"
-"fichiers, etc. Pour plus d'informations, consultez le manuel d'utilisation.\n"
-"Contrairement root qui a tous les droits, les utilisateurs que vous\n"
-"ajouterez ici n'auront que des permissions pour agir sur leurs propres\n"
-"fichiers exclusivement. L'utilisateur/administrateur devrait galement se\n"
-"crer un compte normal. C'est travers cet utilisateur que celui-ci\n"
-"devrait se connecter pour accomplir ses tches quotidiennes. Car, bien\n"
-"qu'il soit pratique d'avoir tous les accs, cette situation peut galement\n"
-"engendrer des situations dsastreuses si un fichier est dtruit par\n"
-"inadvertance. Un utilisateur normal n'ayant pas accs aux fichiers\n"
-"sensibles, ne peut causer de dommages majeurs.\n"
+"GNU/Linux est un systme multiutilisateurs, ce qui signifie gnralement\n"
+"que chaque utilisateur peut avoir des prfrences diffrentes, ses propres\n"
+"fichiers, etc. Pour plus d'informations, consultez le Guide de\n"
+"dmarrage. Contrairement root qui a tous les droits, les\n"
+"utilisateurs que vous ajouterez ici n'auront que des permissions pour agir\n"
+"sur leurs propres fichiers exclusivement. L'utilisateur/ administrateur\n"
+"devrait galement se crer un compte normal. C'est travers cet\n"
+"utilisateur que celui-ci devrait se connecter pour accomplir ses tches\n"
+"quotidiennes. Car, bien qu'il soit pratique d'avoir tous les accs, cette\n"
+"situation peut galement engendrer des situations dsastreuses si un\n"
+"fichier est dtruit par inadvertance. Un utilisateur normal n'ayant pas\n"
+"accs aux fichiers sensibles, ne peut causer de dommages majeurs.\n"
"\n"
"Il faut d'abord entrer le vrai nom de la personne. videmment, vous pouvez\n"
"y inscrire n'importe quoi. DrakX prendra le premier mot insr et le\n"
@@ -3229,18 +3182,26 @@ msgstr ""
"root, mais ce n'est pas une raison pour rentrer 123456. Aprs tout,\n"
"ceci mettrait vos fichiers en pril.\n"
"\n"
-"Si vous cliquez Accepter, il vous sera possible d'ajouter d'autres\n"
-"utilisateurs. Crez un utilisateur diffrent pour chaque personne devant\n"
-"utiliser votre ordinateur. Une fois chaque utilisateur dfini, cliquez sur\n"
-"Terminer.\n"
+"Aprs avoir cliqu sur Accepter l'utilisateur, il vous sera possible\n"
+"d'ajouter d'autres utilisateurs. Crez un utilisateur diffrent pour chaque\n"
+"personne devant utiliser votre ordinateur. Une fois chaque utilisateur\n"
+"dfini, cliquez sur Suivant ->.\n"
"\n"
"En cliquant sur Avanc頻, vous pourrez slectionner un shell\n"
-"diffrent pour cet utilisateur (bash est assign par dfaut)."
+"diffrent pour cet utilisateur (bash est assign par dfaut).\n"
+"\n"
+"Lorsque vous avez fini d'installer tous les utilisateurs, il vous est\n"
+"propos de choisir un utilisateur qui sera automatiquement connect lors du\n"
+"dmarrage de l'ordinateur. Si cela vous intresse (et que la scurit\n"
+"locale n'est pas trop un problme), choisissez l'utilisateur et le\n"
+"gestionnaire de fentres, puis cliquez sur Suivant ->. Si cela ne vous\n"
+"intresse pas, dcochez la case Voulez-vous utiliser cette\n"
+"fonctionnalit?."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Before continuing, you should carefully read the terms of the license. It\n"
"covers the entire Mandrake Linux distribution. If you do agree with all the\n"
@@ -3249,10 +3210,9 @@ msgid ""
msgstr ""
"Avant d'aller plus loin, il est fortement recommand de lire attentivement\n"
"les termes et conditions d'utilisations de la licence. Celle-ci rgit\n"
-"l'ensemble de la distribution Mandrake Linux. Si, pour une raison ou une\n"
-"autre, vous n'acceptez pas ces conditions, cliquez sur Refuser.\n"
-"L'installation sera alors immdiatement interrompue. Pour continuer,\n"
-"cliquez sur Accepter."
+"l'ensemble de la distribution Mandrake Linux. Si vous en acceptez tous les\n"
+"termes, cochez la case Accepter, sinon, teignez simplement votre\n"
+"ordinateur."
#: ../../install2.pm:1
#, c-format
@@ -3705,7 +3665,7 @@ msgstr ""
"\n"
"Veuillez lire attentivement le prsent document. En cas de dsaccord \n"
"avec l'un de ses termes vous n'tes pas autoris installer les CD-Rom\n"
-"suivants. Dans ce cas, Cliquez sur Refuser pour continuer \n"
+"suivants. Dans ce cas, cliquez sur Refuser pour continuer \n"
"l'installation sans ces mdias.\n"
"\n"
"Certains composants logiciels contenus dans les prochains CD-Rom \n"
@@ -4079,7 +4039,7 @@ msgstr "Installation minimale"
#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Updating package selection"
-msgstr "Mise--jour de la slection des paquetages"
+msgstr "Mise jour de la slection des paquetages"
#: ../../install_steps_gtk.pm:1
#, c-format
@@ -4483,6 +4443,12 @@ msgstr "Services"
msgid "System"
msgstr "Systme"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "%s (Port %s)"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
@@ -4621,14 +4587,14 @@ msgid "Which is your timezone?"
msgstr "Quelle est votre fuseau horaire?"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Would you like to try again?"
-msgstr "Dsirez-vous configurer l'impression?"
+msgstr "Dsirez-vous essayer nouveau ?"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Unable to contact mirror %s"
-msgstr "Ne peut ddoubler (fork): %s"
+msgstr "Impossible d'accder au mirroir %s"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4662,14 +4628,14 @@ msgid ""
"\n"
"Do you want to install the updates ?"
msgstr ""
-"Vous avez maintenant la possibilit de tlcharger les mises--jour\n"
+"Vous avez maintenant la possibilit de tlcharger les mises jour\n"
"cres depuis la sortie de cette distribution. Il peut y avoir des "
"correctifs de\n"
" scurit ou des rsolutions de bogues.\n"
"\n"
"Vous devez avoir une connexion internet pour les tlcharger,\n"
"\n"
-"Souhaitez-vous installer les mises--jour?"
+"Souhaitez-vous installer les mises jour?"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4935,6 +4901,11 @@ msgid "Please choose your type of mouse."
msgstr "Veuillez choisir le type de votre souris."
#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Clef de chiffrement"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr "Mettre jour %s"
@@ -4947,7 +4918,7 @@ msgstr "Dsirez-vous faire une installation ou une mise jour?"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Install/Upgrade"
-msgstr "Installation/Mise--jour"
+msgstr "Installation/Mise jour"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -7353,7 +7324,7 @@ msgid ""
"and includes support for pop-up menus on the console."
msgstr ""
"GPM permet d'utiliser la souris dans des applications fonctionnant en mode "
-"texte dans la console (comme par exemple Midnight Commander) . Il permet "
+"texte dans la console (comme par exemple Midnight Commander). Il permet "
"galement d'utiliser le copier-coller et inclut le support des menus "
"contextuels sur la console."
@@ -7654,7 +7625,7 @@ msgstr "Fin de l'installation"
#: ../../steps.pm:1
#, c-format
msgid "Install updates"
-msgstr "Installer les mises--jour"
+msgstr "Installer les mises jour"
#: ../../steps.pm:1
#, c-format
@@ -8797,7 +8768,7 @@ msgstr "Cette partition ne peut pas tre redimensionne"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Computing FAT filesystem bounds"
-msgstr "Calcul des limites du systme de fichiers FAT ..."
+msgstr "Calcul des limites du systme de fichiers FAT..."
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -9086,7 +9057,7 @@ msgstr "Nom d'utilisateur"
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
-"Veuillez entrez vos nom d'utilisateur, mot de passe et nom de domaine pour "
+"Veuillez entrer vos nom d'utilisateur, mot de passe et nom de domaine pour "
"accder ce serveur"
#: ../../diskdrake/smbnfs_gtk.pm:1
@@ -9130,9 +9101,9 @@ msgid "SCSI controllers"
msgstr "Contrleurs SCSI"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Firewire controllers"
-msgstr "Contrleurs USB"
+msgstr "Contrleurs Firewire"
#: ../../harddrake/data.pm:1
#, c-format
@@ -9349,7 +9320,7 @@ msgstr "Pas de pilote open-source"
#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Please Wait... Applying the configuration"
-msgstr "Veuillez patienter... mise en place de la configuration"
+msgstr "Veuillez patienter... Mise en place de la configuration"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -9909,11 +9880,6 @@ msgstr "Configuration du rseau"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "Aucune carte rseau n'a t identifie"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr "Veuillez choisir la carte rseau qui sera connecte Internet"
@@ -10568,9 +10534,9 @@ msgid "Start at boot"
msgstr "Lancer au dmarrage"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Assign host name from DHCP address"
-msgstr "Vous devez entrer un nom d'hte ou une adresse IP.\n"
+msgstr "Affecter le nom d'hte partir de l'adresse DHCP"
#: ../../network/network.pm:1
#, c-format
@@ -10583,9 +10549,9 @@ msgid "Track network card id (useful for laptops)"
msgstr "Suivre l'id. de la carte rseau (utile pour les portables)"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "DHCP host name"
-msgstr "Nom d'hte:"
+msgstr "Nom d'hteDHCP"
#: ../../network/network.pm:1 ../../standalone/drakconnect:1
#: ../../standalone/drakgw:1
@@ -10944,7 +10910,7 @@ msgstr ", priphrique HP JetDirect multifonction"
#: ../../printer/main.pm:1
#, c-format
msgid ", multi-function device on USB"
-msgstr ", priphrique USBBmultifonction"
+msgstr ", priphrique USB multifonction"
#: ../../printer/main.pm:1
#, c-format
@@ -11019,7 +10985,7 @@ msgstr "Imprimante locale"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuring applications..."
-msgstr "Configuration des applications...."
+msgstr "Configuration des applications..."
#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
#, c-format
@@ -11222,19 +11188,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"Les imprimantes suivantes sont configures. Double-cliquez sur l'une d'entre "
-"elles pour modifier ses paramtres, en faire l'imprimante par dfaut, "
-"consulter les informations son propos ou pour rendre une imprimante d'un "
-"serveur CUPS distant utilisable par Star Office/OpenOffice.org/GIMP."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "Systme d'impression: "
@@ -11246,7 +11199,7 @@ msgstr "Vrification du logiciel install..."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing Foomatic..."
-msgstr "Installation de Foomatic ..."
+msgstr "Installation de Foomatic..."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11883,6 +11836,11 @@ msgid "Option %s must be an integer number!"
msgstr "L'option %s doit tre un nombre entier!"
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Slection du modle de l'imprimante"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -12076,10 +12034,11 @@ msgid ""
"%s"
msgstr ""
"Le nom de modle rsultant de l'autodtection a t compare la base de "
-"donnes d'imprimantes pour trouver la meilleure correspondance.Ce choix peut "
-"tre mauvais, particulirement si votre modle d'imprimanten'apparat pas "
-"dans la base de donnes. Vrifiez ce choix, puis cliquez surLe modle est "
-"correct, ou le cas chant sur Slectionner manuellement le modle.\n"
+"donnes d'imprimantes pour trouver la meilleure correspondance. Ce choix "
+"peut tre mauvais, particulirement si votre modle d'imprimanten'apparat "
+"pas dans la base de donnes. Vrifiez ce choix, puis cliquez surLe modle "
+"est correct, ou le cas chant sur Slectionner manuellement le "
+"modle.\n"
"\n"
"Votre imprimante a t dtecte comme tant:\n"
"\n"
@@ -12591,8 +12550,8 @@ msgid ""
msgstr ""
"La configuration de cette imprimante sera effectue automatiquement. Si "
"votre imprimante n'a pas t correctement dtecte ou si vous prfrez "
-"effectuer une configuration personnalise, activez Configuration Manuelle "
-" ."
+"effectuer une configuration personnalise, activez Configuration Manuelle "
+"."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -13943,8 +13902,8 @@ msgstr "Bienvenue aux pirates"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
"Le principe du logiciel libre est l'origine de MandrakeSoft et de son "
"succs. Ce systme d'exploitation est le fruit du travail collaboratif et "
@@ -13953,7 +13912,7 @@ msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "Bienvenue dans le monde Open Source"
#: ../../share/advertising/01-thanks.pl:1
@@ -13964,8 +13923,8 @@ msgstr "Merci d'avoir choisi Mandrake Linux 9.1"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
"Pour mieux connatre la communaut Open Source et y contribuer, partagez vos "
"connaissances et participez au dveloppement d'outils en accdant aux forums "
@@ -13973,223 +13932,159 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr "Souhaitez-vous en savoir plus sur la communaut Open Source?"
-
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Rejoignez le monde du logiciel libre!"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
-"Mandrake Linux 9.1 vous fournit les meilleures applications du moment. Vous "
-"pourrez parcourir le Web et visualiser des animations via Mozilla ou "
-"Konqueror, lire vos courriels et grer vos informations personnelles avec "
-"Evolution ou Kmail"
+"Souhaitez-vous en savoir plus sur la communaut Open Source? Rejoignez le "
+"monde du logiciel libre!"
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
-msgstr "Tirez le meilleur parti de votre messagerie et d'Internet!"
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
"Utilisez les dernires applications pour grer vos fichiers audio, ditez "
"vos images ou collections de photos et visualisez vos vidos."
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr "Poussez le multimdia ses limites!"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
-"Grce Mandrake Linux 9.1, profitez au maximum des capacits multimdia de "
-"votre ordinateur."
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"Mandrake Linux 9.1 vous fournit les meilleurs jeux Open Source en arcade, "
-"action, rflexion, stratgie, ..."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "Jeux"
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-"Vous pourrez contrler entirement vos priphriques et administrer votre "
-"machine"
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr ""
-"Mandrake Linux 9.1 intgre un puissant logiciel de configuration centralis"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Configuration du Serveur de Terminaux Mandrake"
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
"Nous vous proposons 11 interfaces utilisateurs entirement paramtrables "
"dont KDE 3, Gnome 2, WindowMaker, ..."
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "Personnalisez vos environnements de travail!"
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-"Vous bnficiez de la puissance du compilateur GNU GCC 3 ainsi que des "
-"meilleurs environnements Open Source"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "Mandrake Linux 9.1 est une plate-forme de choix pour le dveloppement"
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr "Simplifiez vos dveloppements!"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"En quelques clics, Mandrake Linux 9.1 transforme votre ordinateur en un "
"puissant serveur: serveur Web, courriel, pare-feu, routeur, partage de "
"fichiers et d'imprimantes..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr "La puissance de Linux au profit des serveurs"
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr "Ce produit est disponible sur MandrakeStore"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-"Bien plus qu'un firewall, ce produit polyvalent rpondra tous vos besoins "
-"de scurit"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr ""
-"La gamme de produit MandrakeSecurity comprend entre autres le Multi Network "
-"Firewall (M.N.F.)"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr "La scurit optimale sous Linux!"
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"Accdez l'ensemble de nos solutions Linux, profitez des offres exclusives "
"sur nos produits et goodies via notre site de vente en ligne l'adresse "
"suivante"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr "MandrakeStore: la boutique en ligne officielle de MandrakeSoft"
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
+#: ../../share/advertising/09-mdksecure.pl:1
+#, fuzzy, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"De nouveaux acteurs viennent apporter leurs contributions pour dvelopper "
"des solutions professionnelles compatibles Mandrake Linux. Retrouvez la "
"liste de nos partenaires sur MandrakeStore, onglet nomm logiciels tiers"
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr "Les partenaires stratgiques de MandrakeSoft"
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-"Que vous choisissiez de vous former vous-mme via la plate-forme de "
-"formation en ligne MandrakeCampus ou via notre rseau de partenaires, le "
-"catalogue Linux-Campus vous prparera la certification L.P.I. (Linux "
-"Professional Institute) reconnue professionnellement"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr "Devenez ingnieur certifi Linux"
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "La scurit optimale sous Linux!"
+
+#: ../../share/advertising/11-mnf.pl:1
+#, c-format
+msgid "This product is available on the MandrakeStore Web site."
+msgstr "Ce produit est disponible sur MandrakeStore"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-"Linux-Campus est le programme de formation labor par MandrakeSoft pour "
-"rpondre la fois aux besoins des utilisateurs finaux et ceux des experts "
-"(administrateurs rseaux et systmes)"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-"Dcouvrez le catalogue de formation Linux-Campus et devenez Expert sous "
-"Linux!"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -14199,21 +14094,21 @@ msgstr ""
"En tant qu'expert, vous pourrez partager vos connaissances et proposer du "
"support d'autres utilisateurs sur:"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
"Bnficiez de l'aide de la communaut et de MandrakeSoft pour obtenir un "
"support de qualit"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr "Devenez un Expert Mandrake"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
@@ -14225,38 +14120,16 @@ msgstr ""
"par l'intermdiaire d'un interlocuteur unique et vous permettra d'obtenir "
"toute l'expertise du support Entreprise de MandrakeSoft"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr "Un support spcifique aux entreprises"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert Corporate"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-"MandrakeClub et Mandrake Corporate Club ont t crs pour les entreprises "
-"et les utilisateurs de Mandrake Linux qui souhaitent soutenir directement "
-"leur distribution Linux prfre tout en bnficiant de privilges spciaux. "
-"Si vous aimez nos produits, si votre socit utilise nos produits pour "
-"gagner en comptitivit, si vous voulez soutenir le dveloppement de "
-"Mandrake Linux, rejoignez MandrakeClub!"
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr "Dcouvrez MandrakeClub et Mandrake Corporate Club"
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -14308,7 +14181,7 @@ msgstr "Impossible d'accder la disquette!"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Please insert floppy disk:"
-msgstr "Veuillez insrez une disquette dans le lecteur"
+msgstr "Veuillez insrer une disquette dans le lecteur"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -16078,7 +15951,7 @@ msgstr ""
#: ../../standalone/drakbackup:1
#, c-format
msgid "Please check if you want to use the non-rewinding device."
-msgstr "Vrifiez que vous voulez utilisez un priphrique non-rembobinable"
+msgstr "Vrifiez que vous voulez utiliser un priphrique non-rembobinable"
#: ../../standalone/drakbackup:1
#, c-format
@@ -16898,6 +16771,12 @@ msgstr "Assistant de premire connexion"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr ""
+"Mandrake Linux 9.1 intgre un puissant logiciel de configuration centralis"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr "Outil de signalement de bogue Mandrake"
@@ -17868,6 +17747,29 @@ msgid "Interface %s (using module %s)"
msgstr "Interface %s (utilisant le module %s)"
#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Service Xinetd"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+"Veuillez entrer le nom de l'interface par laquelle vous etes connect "
+"Internet.\n"
+"\n"
+"Exemples:\n"
+"\t\tppp+ pour une connection ADSL ou un modem,\n"
+"\t\teth0 ou eth1 pour connection par cable,\n"
+"\t\tippp+ pour une connection RNIS.\n"
+
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -17975,7 +17877,7 @@ msgstr "Le partage de la connexion internet est activ"
#: ../../standalone/drakgw:1
#, c-format
msgid "Sorry, we support only 2.4 kernels."
-msgstr "Dsol, nous ne prenons en charge que les noyaux (kernel) 2.4 ."
+msgstr "Dsol, nous ne prenons en charge que les noyaux (kernel) 2.4."
#: ../../standalone/drakhelp:1
#, c-format
@@ -18249,7 +18151,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -18454,6 +18356,11 @@ msgid "choose image file"
msgstr "choisissez un fichier image"
#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "choisissez un fichier image"
+
+#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
msgstr "Crer une image de dmarrage"
@@ -18932,11 +18839,21 @@ msgid "network printer port"
msgstr "port de l'imprimante rseau"
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the name of the CPU"
+msgstr "le nom du vendeur de ce priphrique"
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Name"
msgstr "Nom"
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "le numro du processeur"
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Number of buttons"
msgstr "Nombre de bouttons"
@@ -19106,7 +19023,7 @@ msgstr "Ce champs dcrit le priphrique"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -19606,7 +19523,7 @@ msgstr "Connexion Internet en cours..."
#: ../../standalone/net_monitor:1
#, c-format
msgid "Disconnecting from the Internet "
-msgstr "Dconnexion d'Internet en cours ..."
+msgstr "Dconnexion d'Internet en cours..."
#: ../../standalone/net_monitor:1
#, c-format
@@ -20090,12 +20007,10 @@ msgid "Apache, Pro-ftpd"
msgstr "Apache et Pro-ftpd"
#: ../../share/compssUsers:999
-#, fuzzy
msgid "Mail"
-msgstr "Mali"
+msgstr "Courrier"
#: ../../share/compssUsers:999
-#, fuzzy
msgid "Postfix mail server"
msgstr "Serveur de courrier Postfix"
@@ -20142,6 +20057,10 @@ msgstr ""
"de fichiers, les discussions en ligne"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Jeux"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimdia - Graphisme"
@@ -20197,6 +20116,378 @@ msgstr "Gestion Financire"
msgid "Programs to manage your finances, such as gnucash"
msgstr "Programmes pour grer votre finance, comme gnucash"
+#~ msgid "no network card found"
+#~ msgstr "Aucune carte rseau n'a t identifie"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "and view animations with Mozilla and Konqueror, or read your mail and "
+#~ "handle your personal information with Evolution and Kmail"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 vous fournit les meilleures applications du moment. "
+#~ "Vous pourrez parcourir le Web et visualiser des animations via Mozilla ou "
+#~ "Konqueror, lire vos courriels et grer vos informations personnelles avec "
+#~ "Evolution ou Kmail"
+
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Tirez le meilleur parti de votre messagerie et d'Internet!"
+
+#~ msgid "Push multimedia to its limits!"
+#~ msgstr "Poussez le multimdia ses limites!"
+
+#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
+#~ msgstr ""
+#~ "Grce Mandrake Linux 9.1, profitez au maximum des capacits multimdia "
+#~ "de votre ordinateur."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 vous fournit les meilleurs jeux Open Source en arcade, "
+#~ "action, rflexion, stratgie, ..."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ "Vous pourrez contrler entirement vos priphriques et administrer votre "
+#~ "machine"
+
+#~ msgid "User interfaces"
+#~ msgstr "Personnalisez vos environnements de travail!"
+
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+#~ "Vous bnficiez de la puissance du compilateur GNU GCC 3 ainsi que des "
+#~ "meilleurs environnements Open Source"
+
+#~ msgid "Development simplified"
+#~ msgstr "Simplifiez vos dveloppements!"
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ "Bien plus qu'un firewall, ce produit polyvalent rpondra tous vos "
+#~ "besoins de scurit"
+
+#~ msgid ""
+#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
+#~ "N.F.)"
+#~ msgstr ""
+#~ "La gamme de produit MandrakeSecurity comprend entre autres le Multi "
+#~ "Network Firewall (M.N.F.)"
+
+#~ msgid "Strategic partners"
+#~ msgstr "Les partenaires stratgiques de MandrakeSoft"
+
+#~ msgid ""
+#~ "Whether you choose to teach yourself online or via our network of "
+#~ "training partners, the Linux-Campus catalogue prepares you for the "
+#~ "acknowledged LPI certification program (worldwide professional technical "
+#~ "certification)"
+#~ msgstr ""
+#~ "Que vous choisissiez de vous former vous-mme via la plate-forme de "
+#~ "formation en ligne MandrakeCampus ou via notre rseau de partenaires, le "
+#~ "catalogue Linux-Campus vous prparera la certification L.P.I. (Linux "
+#~ "Professional Institute) reconnue professionnellement"
+
+#~ msgid "Certify yourself on Linux"
+#~ msgstr "Devenez ingnieur certifi Linux"
+
+#~ msgid ""
+#~ "The training program has been created to respond to the needs of both end "
+#~ "users and experts (Network and System administrators)"
+#~ msgstr ""
+#~ "Linux-Campus est le programme de formation labor par MandrakeSoft pour "
+#~ "rpondre la fois aux besoins des utilisateurs finaux et ceux des "
+#~ "experts (administrateurs rseaux et systmes)"
+
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr ""
+#~ "Dcouvrez le catalogue de formation Linux-Campus et devenez Expert sous "
+#~ "Linux!"
+
+#~ msgid ""
+#~ "MandrakeClub and Mandrake Corporate Club were created for business and "
+#~ "private users of Mandrake Linux who would like to directly support their "
+#~ "favorite Linux distribution while also receiving special privileges. If "
+#~ "you enjoy our products, if your company benefits from our products to "
+#~ "gain a competititve edge, if you want to support Mandrake Linux "
+#~ "development, join MandrakeClub!"
+#~ msgstr ""
+#~ "MandrakeClub et Mandrake Corporate Club ont t crs pour les "
+#~ "entreprises et les utilisateurs de Mandrake Linux qui souhaitent soutenir "
+#~ "directement leur distribution Linux prfre tout en bnficiant de "
+#~ "privilges spciaux. Si vous aimez nos produits, si votre socit utilise "
+#~ "nos produits pour gagner en comptitivit, si vous voulez soutenir le "
+#~ "dveloppement de Mandrake Linux, rejoignez MandrakeClub!"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr "Dcouvrez MandrakeClub et Mandrake Corporate Club"
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#~ msgid ""
+#~ "As a review, DrakX will present a summary of various information it has\n"
+#~ "about your system. Depending on your installed hardware, you may have "
+#~ "some\n"
+#~ "or all of the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary.\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Country\": check the current country selection. If you are not in "
+#~ "this\n"
+#~ "country, click on the button and choose another one.\n"
+#~ "\n"
+#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+#~ "primary language you have chosen. But here, just as in your choice of a\n"
+#~ "keyboard, you may not be in a country to which the chosen language\n"
+#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
+#~ "configure the clock for the correct timezone.\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation.\n"
+#~ "\n"
+#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+#~ "click that button. This should be reserved to advanced users.\n"
+#~ "\n"
+#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+#~ "interface in \"800x600\" resolution. If that does not suits you, click "
+#~ "on\n"
+#~ "the button to reconfigure your graphical interface.\n"
+#~ "\n"
+#~ " * \"Network\": If you want to configure your Internet or local network\n"
+#~ "access now, you can by clicking on this button.\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. If you notice the sound card displayed is not the one "
+#~ "that\n"
+#~ "is actually present on your system, you can click on the button and "
+#~ "choose\n"
+#~ "another driver.\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. If you have a TV card and it is not detected, click on the button "
+#~ "to\n"
+#~ "try to configure it manually.\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with the card."
+#~ msgstr ""
+#~ "On vous prsente ici les diffrents paramtres de votre systme. Selon "
+#~ "le\n"
+#~ "matriel install, certaines entres seront prsentes et d'autres pas.\n"
+#~ "\n"
+#~ " * Souris: pour vrifier la configuration actuelle de la souris.\n"
+#~ "Cliquez sur le bouton pour modifier les options.\n"
+#~ "\n"
+#~ " * Clavier: vrifie la configuration choisie pour le clavier. "
+#~ "Cliquez\n"
+#~ "sur le bouton pour la modifier.\n"
+#~ "\n"
+#~ " * Fuseau horaire: DrakX, par dfaut, essaie de trouver le fuseau\n"
+#~ "horaire dans lequel vous tes. Encore une fois, il est possible que vous "
+#~ "ne\n"
+#~ "soyez pas dans le fuseau horaire qui vous convient. Donc, vous aurez\n"
+#~ "peut-tre cliquer sur le bouton fuseau horaire pour identifier\n"
+#~ "prcisment l'heure qui doit apparatre dans vos horloges.\n"
+#~ "\n"
+#~ " * Imprimante: en cliquant sur Pas d'imprimante, l'outil de\n"
+#~ "configuration sera dmarr.\n"
+#~ "\n"
+#~ " * Carte son: si une carte son a t dtecte, elle apparatra ici.\n"
+#~ "Aucune modification n'est possible cette tape.\n"
+#~ "\n"
+#~ " * Carte TV: si une carte d'entre/sortie vido (carte TV) a t\n"
+#~ "dtecte, elle apparatra ici. Aucune modification possible cette "
+#~ "tape.\n"
+#~ "\n"
+#~ " * Carte ISDN: si une carte ISDN est dtecte, elle apparatra ici.\n"
+#~ "Vous pouvez cliquer sur le bouton pour en modifier les paramtres."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#, fuzzy
+#~ msgid ""
+#~ "LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
+#~ "what it finds there:\n"
+#~ "\n"
+#~ " * if a Windows boot sector is found, it will replace it with a grub/"
+#~ "LILO\n"
+#~ "boot sector. This way you will be able to load either GNU/Linux or "
+#~ "another\n"
+#~ "OS.\n"
+#~ "\n"
+#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
+#~ "one.\n"
+#~ "\n"
+#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
+#~ "bootloader.\n"
+#~ "\n"
+#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
+#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
+#~ "disk\n"
+#~ "(\"On Floppy\").\n"
+#~ "\n"
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Le CDROM d'installation de Mandrake Linux a un mode de rcupration\n"
+#~ "prdfini. Vous pouvez y accder en dmarrant l'ordinateur sur le CDROM.\n"
+#~ "Selon la version de votre BIOS, il faut lui spcifier de dmarrer "
+#~ "sur\n"
+#~ "le CDROM. Vous devriez revenir au disquette de dmarrage dans deux cas\n"
+#~ "prcis:\n"
+#~ "\n"
+#~ " * Au moment d'installer le Programme d'amorce, DrakX va rcrire "
+#~ "sur\n"
+#~ "le secteur (MBR) contenant le programme d'amorce (boot loader) afin de "
+#~ "vous\n"
+#~ "permettre de dmarrer avec Linux ou Windows (en prenant pour acquis que\n"
+#~ "vous avez deux systmes d'exploitation installs. Si vous rinstallez\n"
+#~ "Windows, celui-ci va rcrire sur le MBR et il vous sera dsormais\n"
+#~ "impossible de dmarrer Linux.\n"
+#~ "\n"
+#~ " * Si un problme survient et qu'il vous est impossible de dmarrer\n"
+#~ "GNU/Linux partir du disque dur, cette disquette deviendra votre seul\n"
+#~ "moyen de dmarrer votre systme Linux. Elle contient un bon nombre "
+#~ "d'outils\n"
+#~ "pour rcuprer un systme dfectueux, peu importe la source du problme.\n"
+#~ "\n"
+#~ "En cliquant sur cette tape, on vous demandera d'insrer une disquette. "
+#~ "La\n"
+#~ "disquette insre sera compltement efface et DrakX se chargera de la\n"
+#~ "formater et d'y insrer les fichiers ncessaires."
+
+# DO NOT BOTHER TO MODIFY HERE, SEE:
+# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/fr/drakx-chapter.xml
+#, fuzzy
+#~ msgid ""
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Le CDROM d'installation de Mandrake Linux a un mode de rcupration\n"
+#~ "prdfini. Vous pouvez y accder en dmarrant l'ordinateur sur le CDROM.\n"
+#~ "Selon la version de votre BIOS, il faut lui spcifier de dmarrer "
+#~ "sur\n"
+#~ "le CDROM. Vous devriez revenir au disquette de dmarrage dans deux cas\n"
+#~ "prcis:\n"
+#~ "\n"
+#~ " * Au moment d'installer le Programme d'amorce, DrakX va rcrire "
+#~ "sur\n"
+#~ "le secteur (MBR) contenant le programme d'amorce (boot loader) afin de "
+#~ "vous\n"
+#~ "permettre de dmarrer avec Linux ou Windows (en prenant pour acquis que\n"
+#~ "vous avez deux systmes d'exploitation installs. Si vous rinstallez\n"
+#~ "Windows, celui-ci va rcrire sur le MBR et il vous sera dsormais\n"
+#~ "impossible de dmarrer Linux.\n"
+#~ "\n"
+#~ " * Si un problme survient et qu'il vous est impossible de dmarrer\n"
+#~ "GNU/Linux partir du disque dur, cette disquette deviendra votre seul\n"
+#~ "moyen de dmarrer votre systme Linux. Elle contient un bon nombre "
+#~ "d'outils\n"
+#~ "pour rcuprer un systme dfectueux, peu importe la source du problme.\n"
+#~ "\n"
+#~ "En cliquant sur cette tape, on vous demandera d'insrer une disquette. "
+#~ "La\n"
+#~ "disquette insre sera compltement efface et DrakX se chargera de la\n"
+#~ "formater et d'y insrer les fichiers ncessaires."
+
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "Les imprimantes suivantes sont configures. Double-cliquez sur l'une "
+#~ "d'entre elles pour modifier ses paramtres, en faire l'imprimante par "
+#~ "dfaut, consulter les informations son propos ou pour rendre une "
+#~ "imprimante d'un serveur CUPS distant utilisable par Star Office/"
+#~ "OpenOffice.org/GIMP."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
@@ -20277,7 +20568,7 @@ msgstr "Programmes pour grer votre finance, comme gnucash"
#~ "pas besoin de partition spcifique pour le rpertoire /boot."
#~ msgid "Upgrade"
-#~ msgstr "Mise--jour"
+#~ msgstr "Mise jour"
#~ msgid "192.168.100.0/255.255.255.0\n"
#~ msgstr "192.168.100.0/255.255.255.0\n"
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index e1af64a2f..831be03f4 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2000-08-24 12:00-0000\n"
"Last-Translator: Alastair McKinstry <mckinstry@computer.org>\n"
"Language-Team: Irish <ga@li.org>\n"
@@ -1018,50 +1018,65 @@ msgstr ""
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
#: ../../help.pm:1
@@ -1165,13 +1180,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1195,7 +1205,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1233,32 +1243,7 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+"(\"On Floppy\")."
msgstr ""
#: ../../help.pm:1
@@ -1400,9 +1385,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1459,7 +1449,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -1581,9 +1573,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -1594,14 +1584,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
#: ../../help.pm:1
@@ -1642,7 +1632,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -1700,7 +1690,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -1725,42 +1715,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
#: ../../help.pm:1
@@ -1892,7 +1853,8 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -1912,7 +1874,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -3096,6 +3058,12 @@ msgstr "Seirbish"
msgid "System"
msgstr "Md Coras"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "Poirt"
+
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
@@ -3510,6 +3478,11 @@ msgstr "Cn cinal luchg at agat?"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "N mar a chile na pasfhocail"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "Uasgrdaigh"
@@ -8074,11 +8047,6 @@ msgid "Configuring network"
msgstr "Cumraigh grasn"
#: ../../network/ethernet.pm:1
-#, c-format
-msgid "no network card found"
-msgstr "n fuaireathas crta grasn"
-
-#: ../../network/ethernet.pm:1
#, fuzzy, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
@@ -9282,15 +9250,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr ""
@@ -9802,6 +9761,11 @@ msgid "Option %s must be an integer number!"
msgstr ""
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Nasc Printir"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -11404,13 +11368,13 @@ msgstr ""
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
@@ -11421,190 +11385,150 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr ""
-
-#: ../../share/advertising/02-community.pl:1
-#, fuzzy, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Trialaigh an cumraocht"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
+msgid "Build the future of Linux!"
msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "Cluich"
-
-#: ../../share/advertising/06-mcc.pl:1
-#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Control Center"
-msgstr "Bainteach le hIdirlon"
-
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, fuzzy, c-format
-msgid "User interfaces"
-msgstr "Clradan Grasn"
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Cumraigh Idirlon"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "A customizable environment"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
-#, fuzzy, c-format
-msgid "Development simplified"
-msgstr "Forbairt"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "This product is available on MandrakeStore website"
+msgid ""
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
+msgid "Turn your computer into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies\", are available on our e-store:"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "Optimize your security"
+msgid "The official MandrakeSoft Store"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
-"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Strategic partners"
+msgid "Optimize your security by using Mandrake Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+msgid "This product is available on the MandrakeStore Web site."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
-#, c-format
-msgid "Certify yourself on Linux"
-msgstr ""
-
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -11612,51 +11536,35 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, fuzzy, c-format
msgid "Become a MandrakeExpert"
msgstr "Saineola"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, fuzzy, c-format
msgid "MandrakeExpert Corporate"
msgstr "Saineola"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -13848,6 +13756,11 @@ msgid "First Time Wizard"
msgstr "Ag irigh as Draodir\n"
#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Mandrake Control Center"
+msgstr "Bainteach le hIdirlon"
+
+#: ../../standalone/drakbug:1
#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -14709,6 +14622,22 @@ msgid "Interface %s (using module %s)"
msgstr ""
#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Freastala Printir"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -15044,7 +14973,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -15206,6 +15135,11 @@ msgstr "Roghnaigh gnomh"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
+msgid "choose image"
+msgstr "Roghnaigh gnomh"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
msgid "Configure bootsplash picture"
msgstr "Cumraigh seirbhis"
@@ -15643,12 +15577,22 @@ msgid "network printer port"
msgstr "Printir Grasn (lpd)"
#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the name of the CPU"
+msgstr ""
+
+#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Name"
msgstr "Ainm: "
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "2 cnaip"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
msgid "Number of buttons"
msgstr "2 cnaip"
@@ -15810,7 +15754,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -16783,6 +16727,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr ""
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Cluich"
+
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Multimedia - Graphics"
msgstr "Ilmhenach"
@@ -16842,6 +16790,21 @@ msgstr ""
msgid "Programs to manage your finances, such as gnucash"
msgstr ""
+#~ msgid "no network card found"
+#~ msgstr "n fuaireathas crta grasn"
+
+#, fuzzy
+#~ msgid "Get involved in the Free Software world"
+#~ msgstr "Trialaigh an cumraocht"
+
+#, fuzzy
+#~ msgid "User interfaces"
+#~ msgstr "Clradan Grasn"
+
+#, fuzzy
+#~ msgid "Development simplified"
+#~ msgstr "Forbairt"
+
#~ msgid "DrakFloppy Error: %s"
#~ msgstr "Earraidh DrakFloppy: %s"
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index db4a82aa8..89cecc15d 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2001-03-17 19:17+0100\n"
"Last-Translator: Jess Bravo lvarez (mdk) <jba@pobox.com>\n"
"Language-Team: Galician <trasno@ceu.fi.udc.es>\n"
@@ -1067,50 +1067,65 @@ msgstr ""
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
#: ../../help.pm:1
@@ -1214,13 +1229,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1244,7 +1254,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1282,32 +1292,7 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+"(\"On Floppy\")."
msgstr ""
#: ../../help.pm:1
@@ -1463,9 +1448,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1522,7 +1512,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -1644,9 +1636,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -1657,14 +1647,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
#: ../../help.pm:1
@@ -1705,7 +1695,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -1763,7 +1753,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -1788,13 +1778,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"Neste punto, ten que escoller onde quere instalar o sistema operativo\n"
"Mandrake Linux no disco duro. Se est baleiro, ou se hai outro sistema\n"
@@ -1864,35 +1854,6 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
@@ -2019,7 +1980,8 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2046,7 +2008,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -3293,6 +3255,12 @@ msgstr "dispositivo"
msgid "System"
msgstr "Mouse Systems"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "Porto"
+
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
@@ -3716,6 +3684,11 @@ msgstr "Escolla o seu tipo de rato."
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Os contrasinais non coinciden"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "Actualizacin"
@@ -8401,11 +8374,6 @@ msgstr "Configurando a rede"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "non se atopou ningunha tarxeta de rede"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr "Escolla o adaptador de rede que desexa usar para conectar Internet"
@@ -9667,17 +9635,6 @@ msgstr ""
"Pode engadir unha nova ou cambiar as que xa existen."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"Estas son as filas de impresin.\n"
-"Pode engadir unha nova ou cambiar as que xa existen."
-
-#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing system: "
msgstr ""
@@ -10199,6 +10156,11 @@ msgid "Option %s must be an integer number!"
msgstr ""
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Conexin da impresora"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -11832,13 +11794,13 @@ msgstr "Benvida s crackers"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
@@ -11849,190 +11811,150 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
+msgid ""
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
#: ../../share/advertising/02-community.pl:1
-#, fuzzy, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Resto do mundo"
-
-#: ../../share/advertising/03-internet.pl:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+msgid "Build the future of Linux!"
msgstr ""
-#: ../../share/advertising/03-internet.pl:1
-#, fuzzy, c-format
-msgid "Get the most from the Internet"
-msgstr "Conectar Internet"
-
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../share/advertising/05-games.pl:1
-#, c-format
-msgid "Games"
-msgstr "Xogos"
-
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Control Center"
-msgstr "Centro de control"
-
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, fuzzy, c-format
-msgid "User interfaces"
-msgstr "Interface de rede"
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Configuracin de Internet"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "A customizable environment"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
-#, fuzzy, c-format
-msgid "Development simplified"
-msgstr "Desenvolvemento"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "This product is available on MandrakeStore website"
+msgid ""
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
+msgid "Turn your computer into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies\", are available on our e-store:"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "Optimize your security"
+msgid "The official MandrakeSoft Store"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
-"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Strategic partners"
+msgid "Optimize your security by using Mandrake Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+msgid "This product is available on the MandrakeStore Web site."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
-#, c-format
-msgid "Certify yourself on Linux"
-msgstr ""
-
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -12040,51 +11962,35 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, fuzzy, c-format
msgid "Become a MandrakeExpert"
msgstr "Experto"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, fuzzy, c-format
msgid "MandrakeExpert Corporate"
msgstr "Experto"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -14276,6 +14182,11 @@ msgid "First Time Wizard"
msgstr ""
#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Mandrake Control Center"
+msgstr "Centro de control"
+
+#: ../../standalone/drakbug:1
#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -15158,6 +15069,22 @@ msgstr "Interface %s (usando o mdulo %s)"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Servidor de impresin"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -15505,7 +15432,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -15672,6 +15599,11 @@ msgstr "Escolla a accin"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
+msgid "choose image"
+msgstr "Escolla a accin"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
msgid "Configure bootsplash picture"
msgstr "Configurar servicios"
@@ -16109,12 +16041,22 @@ msgid "network printer port"
msgstr "Impresora de rede (TCP/Socket)"
#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the name of the CPU"
+msgstr ""
+
+#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Name"
msgstr "Nome: "
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "2 botns"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
msgid "Number of buttons"
msgstr "2 botns"
@@ -16276,7 +16218,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -17257,6 +17199,10 @@ msgstr ""
"e chat"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Xogos"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimedia - Grficos"
@@ -17312,6 +17258,35 @@ msgstr "Finanzas persoais"
msgid "Programs to manage your finances, such as gnucash"
msgstr "Programas para xestionar as sas finanzas, como o gnucash"
+#~ msgid "no network card found"
+#~ msgstr "non se atopou ningunha tarxeta de rede"
+
+#, fuzzy
+#~ msgid "Get involved in the Free Software world"
+#~ msgstr "Resto do mundo"
+
+#, fuzzy
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Conectar Internet"
+
+#, fuzzy
+#~ msgid "User interfaces"
+#~ msgstr "Interface de rede"
+
+#, fuzzy
+#~ msgid "Development simplified"
+#~ msgstr "Desenvolvemento"
+
+#, fuzzy
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "Estas son as filas de impresin.\n"
+#~ "Pode engadir unha nova ou cambiar as que xa existen."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/he.po b/perl-install/share/po/he.po
index 142e9f370..5c17f710d 100644
--- a/perl-install/share/po/he.po
+++ b/perl-install/share/po/he.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2003-02-05 21:16+0200\n"
"Last-Translator: matityahoo ram <linuxfun@email.com>\n"
"Language-Team: hebrew <he@li.org>\n"
@@ -1035,50 +1035,65 @@ msgstr ""
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
#: ../../help.pm:1
@@ -1182,13 +1197,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1212,7 +1222,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1250,32 +1260,7 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+"(\"On Floppy\")."
msgstr ""
#: ../../help.pm:1
@@ -1419,9 +1404,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1478,7 +1468,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -1600,9 +1592,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -1613,14 +1603,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
#: ../../help.pm:1
@@ -1661,7 +1651,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -1719,7 +1709,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -1744,42 +1734,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
#: ../../help.pm:1
@@ -1915,7 +1876,8 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -1935,7 +1897,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -3148,6 +3110,12 @@ msgstr "שירותים"
msgid "System"
msgstr "מערכת"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "מארח %s"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
@@ -3567,6 +3535,11 @@ msgid "Please choose your type of mouse."
msgstr ""
#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "מפתח הצפנה"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr ""
@@ -8202,11 +8175,6 @@ msgstr "מגדיר רשת"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "כרטיס רשת לא נמצא"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
@@ -9431,18 +9399,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"המדפסות הבאות מוגדרות. יש ללחוץ פעמיים על מדפסת כדי לשנות את הגדרותיה; כדי "
-"להפוך אותה למדפסת ברירת המחדל; או כדי לראות מידע עליה; או להפוך מדפסת בשרת "
-"CUPS מרוחק להיות זמינה לStar Office/OpenOffice.org/GIMP."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "מערכת ההדפסה:"
@@ -9984,6 +9940,11 @@ msgid "Option %s must be an integer number!"
msgstr "אפשרות %s חייבת להיות מספר שלם!"
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "בחירת מודל מדפסת"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -11593,13 +11554,13 @@ msgstr ""
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
@@ -11610,190 +11571,150 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
+msgid ""
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get involved in the Free Software world"
+msgid "Build the future of Linux!"
msgstr ""
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
-msgid "Get the most from the Internet"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-#: ../../share/advertising/05-games.pl:1
-#, c-format
-msgid "Games"
-msgstr ""
-
-#: ../../share/advertising/06-mcc.pl:1
-#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
-msgstr ""
-
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr ""
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "הגדרת מספר-ראשים"
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
+msgid "A customizable environment"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
-msgstr ""
-
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Development simplified"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr ""
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
-msgstr ""
-
-#: ../../share/advertising/09-server.pl:1
-#, c-format
-msgid "Turn your machine into a reliable server"
-msgstr ""
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
+msgid "Turn your computer into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies\", are available on our e-store:"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "Optimize your security"
+msgid "The official MandrakeSoft Store"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
-"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr ""
-
-#: ../../share/advertising/13-mdkcampus.pl:1
-#, c-format
-msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+msgid "Optimize your security by using Mandrake Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Certify yourself on Linux"
+msgid "This product is available on the MandrakeStore Web site."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -11801,51 +11722,35 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr ""
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -14046,6 +13951,11 @@ msgstr ""
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr ""
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -14912,6 +14822,22 @@ msgid "Interface %s (using module %s)"
msgstr ""
#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "התקן:"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -15247,7 +15173,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -15408,6 +15334,11 @@ msgid "choose image file"
msgstr "בחר/י קובץ תמונה"
#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "בחר/י קובץ תמונה"
+
+#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
msgstr ""
@@ -15846,11 +15777,21 @@ msgid "network printer port"
msgstr ""
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the name of the CPU"
+msgstr "שם היצרן של ההתקן"
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Name"
msgstr "שם"
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "מספר המעבד"
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Number of buttons"
msgstr "מספר כפתורים"
@@ -16013,7 +15954,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -16994,6 +16935,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr "סט כלים לדואל, חדשות, אתרים, העברת קבצים, ושיחות"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "מולטימדיה - גרפיקה"
@@ -17049,6 +16994,19 @@ msgstr "פיננסיה אישית"
msgid "Programs to manage your finances, such as gnucash"
msgstr ""
+#~ msgid "no network card found"
+#~ msgstr "כרטיס רשת לא נמצא"
+
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "המדפסות הבאות מוגדרות. יש ללחוץ פעמיים על מדפסת כדי לשנות את הגדרותיה; "
+#~ "כדי להפוך אותה למדפסת ברירת המחדל; או כדי לראות מידע עליה; או להפוך מדפסת "
+#~ "בשרת CUPS מרוחק להיות זמינה לStar Office/OpenOffice.org/GIMP."
+
#~ msgid "Launch Aurora at boot time"
#~ msgstr "יש לטעון את Aurora בזמן טעינת המערכת"
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index 067f121b2..087ebb502 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2002-03-22 05:58CET\n"
"Last-Translator: Vlatko Kosturjak <kost@iname.com>\n"
"Language-Team: Croatian <lokalizacija@linux.hr>\n"
@@ -1095,86 +1095,70 @@ msgstr ""
"biti e izgubljen i nee se moi povratiti!"
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
-msgstr ""
-"Ovdje su predstavljeni razliiti parametri za vae raunalo. Ovisno o\n"
-"instaliranom hardveru, vidjet ete ili ne slijedee stavke:\n"
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
"\n"
-" * \"Mi\": moete provjeriti trenutne postavke mia i promijeniti\n"
-"ih, ako treba, pritiskom na dugme;\n"
-"\n"
-" * \"Tipkovnica\": moete provjeriti trenutnu postavu tipkovnice i "
-"promijeniti\n"
-"je, ako treba, pritiskom na dugme;\n"
-"\n"
-" * \"Vremenska zona\": DrakX, podrazumijevano, pogaa vremensku zonu prema\n"
-"izabranom jeziku. Ali i ovdje, kao i kod izbora tipkovnice, moda niste u "
-"zemlji\n"
-"za koju bi izabrani jezik trebao odgovarati. Stoga, moda ete trabati "
-"stisnuti\n"
-"\"Vremenska zona\" dugme da bi namjestili sat prema vaoj vremenskoj zoni;\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
"\n"
-" * \"Pisa\": pritiskom na \"Nema pisaa\" dugme otvorit e se arobnjak za\n"
-"namjetanje pisaa;\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
"\n"
-" * \"Zvuna kartica\": ako je zvuna kartica naena, bit e ovdje "
-"prikazana.\n"
-"Nije je mogue mijenjati tijekom instalacije;\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
"\n"
-" * \"TV kartica\": ako je naena TV kartica, ovdje e biti prikazana. Nije "
-"je\n"
-"mogue mijenjati tijekom instalacije;\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
"\n"
-" * \"ISDN kartica\": ako je naena ISDN kartica, ovdje e biti prikazana. "
-"Moete\n"
-"mijenjati njene parametre pritiskom na dugme."
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
+msgstr ""
#: ../../help.pm:1
#, c-format
@@ -1358,13 +1342,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1414,7 +1393,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1469,7 +1448,7 @@ msgstr ""
"Inaem CUPS je najbolji jer je jednostavniji i bolje radi preko mree."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
"automated. DrakX will analyze the disk boot sector and act according to\n"
@@ -1488,62 +1467,8 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Mandrake Linux CD-ROM ima ugraeni mod za spaavanje. Moete mu pristupiti\n"
-"pokretanjem sustava sa CD-ROMa, pritiskanjem >>F1<< tipke pri podizanju "
-"sustava\n"
-"i upisivanjem >>rescue<< u komandnoj liniji. Ali ako se sustav ne moe "
-"podii\n"
-"sa CD-ROMa, trebali biste se vratiti ovom koraku za pomo u barem dvije "
-"situacije:\n"
-"\n"
-" * kada instalira bootloader, DrakX e prepisati boot sektor (MBR) vaeg\n"
-"primarnog diska (osim ako ve ne koristite neki drugi boot manager), da bi "
-"vam\n"
-"omoguio pokretanje ili Windowsa ili GNU/Linuxa (ako imate Windowse u "
-"raunalu).\n"
-"Ako trebate ponovno instalirati Windowse, Microsoftov proces instalacije e\n"
-"prepisati boot sektor, i neete moi pokrenuti GNU/Linux!\n"
-"\n"
-" * ako se pojavi problem i ne moete pokrenuti GNU/Linux sa tvrdog diska,\n"
-"ova disketa e biti jedini nain na koji moete pokrenuti GNU/Linux. Sadri\n"
-"dovoljan broj sustavskih alata za povrat sustava koji se sruio zbog "
-"nedostatka\n"
-"energije, nesretne greke pri tipkanju, pogreke pri upisivanju lozinke ili "
-"bilo\n"
-"kojeg drugog razloga.\n"
-"\n"
-"Kada kliknete na ovaj korak, pojavit e se zahtjev za ubacivanjem diskete u "
-"pogon.\n"
-"Disketa koju ubacujete mora biti prazna ili sadravati podatke koji vam "
-"nisu\n"
-"potrebni. Neete je morati formatirati, jer e je DrakX potpuno prepisati."
+"(\"On Floppy\")."
+msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
@@ -1811,9 +1736,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1895,7 +1825,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -2116,9 +2048,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -2139,14 +2069,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
"Dok instalirate Mandrake Linux, mogue je da su neki paketi ve nadograeni\n"
"od prvotne inaice. Neki bugovi su moda uklonjeni, i sigurnost poboljana.\n"
@@ -2224,7 +2154,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2319,7 +2249,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2344,13 +2274,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"U ovom trenutku, trebate izabrati gdje ete instalirati va\n"
"Mandrake Linux operativni sustav na vaem tvrdom disku. Ukoliko je prazan "
@@ -2426,64 +2356,6 @@ msgstr ""
"nemojte izabrati ovo rjeenje ukoliko ne znate to radite."
#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Mandrake Linux CD-ROM ima ugraeni mod za spaavanje. Moete mu pristupiti\n"
-"pokretanjem sustava sa CD-ROMa, pritiskanjem >>F1<< tipke pri podizanju "
-"sustava\n"
-"i upisivanjem >>rescue<< u komandnoj liniji. Ali ako se sustav ne moe "
-"podii\n"
-"sa CD-ROMa, trebali biste se vratiti ovom koraku za pomo u barem dvije "
-"situacije:\n"
-"\n"
-" * kada instalira bootloader, DrakX e prepisati boot sektor (MBR) vaeg\n"
-"primarnog diska (osim ako ve ne koristite neki drugi boot manager), da bi "
-"vam\n"
-"omoguio pokretanje ili Windowsa ili GNU/Linuxa (ako imate Windowse u "
-"raunalu).\n"
-"Ako trebate ponovno instalirati Windowse, Microsoftov proces instalacije e\n"
-"prepisati boot sektor, i neete moi pokrenuti GNU/Linux!\n"
-"\n"
-" * ako se pojavi problem i ne moete pokrenuti GNU/Linux sa tvrdog diska,\n"
-"ova disketa e biti jedini nain na koji moete pokrenuti GNU/Linux. Sadri\n"
-"dovoljan broj sustavskih alata za povrat sustava koji se sruio zbog "
-"nedostatka\n"
-"energije, nesretne greke pri tipkanju, pogreke pri upisivanju lozinke ili "
-"bilo\n"
-"kojeg drugog razloga.\n"
-"\n"
-"Kada kliknete na ovaj korak, pojavit e se zahtjev za ubacivanjem diskete u "
-"pogon.\n"
-"Disketa koju ubacujete mora biti prazna ili sadravati podatke koji vam "
-"nisu\n"
-"potrebni. Neete je morati formatirati, jer e je DrakX potpuno prepisati."
-
-#: ../../help.pm:1
#, c-format
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
@@ -2634,7 +2506,8 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2672,7 +2545,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -4297,6 +4170,12 @@ msgstr "Servisi"
msgid "System"
msgstr "Sustav"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "Port"
+
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
@@ -4736,6 +4615,11 @@ msgstr "Molim izaberite vau vrstu mia."
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Enkripcijski klju"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "Dogradnja"
@@ -9485,11 +9369,6 @@ msgstr "Podeavam mreu"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "ne mogu pronai niti jednu mrenu karticu"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
@@ -10778,19 +10657,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"Navedeni pisai su podeeni. Dvostruko kliknite na pisa da bi mu "
-"promijenilipostavke; da bi ga odredili za podrazumijevani pisa; da bi "
-"pogledali informacijeo njemu; ili da bi pisa sa udaljenog CUPS posluitelja "
-"uinili dostupnimStarOfficeu/OpenOffice.org/GIMPu."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "Ispisni sustav:"
@@ -11401,6 +11267,11 @@ msgid "Option %s must be an integer number!"
msgstr "Opcija %s mora biti cijeli broj!"
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Izabir modela pisaa"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -13159,15 +13030,15 @@ msgstr "Dobrodoli Crackeri"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
"Uspjeh MandrakeSofta se temelji na principima slobodnog softvera. Vanovi "
"operativni sustav je rezultat udruenog rada svjetske Linux zajednice"
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "Dobrodoli u Open Source svijet"
#: ../../share/advertising/01-thanks.pl:1
@@ -13178,8 +13049,8 @@ msgstr "Hvala vam to ste izabrali Mandrake Linux 9.1"
#: ../../share/advertising/02-community.pl:1
#, fuzzy, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
"Upoznajte Open Source zajednicu i postanite lanom. Uite, poduavajte "
"ipomaite drugima uestvovanjem u diskusijama u mnogim forumima koje "
@@ -13187,203 +13058,153 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
+msgid ""
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Pridruite se svijetu slobodnog softvera"
-
-#: ../../share/advertising/03-internet.pl:1
-#, fuzzy, c-format
-msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+msgid "Build the future of Linux!"
msgstr ""
-"Mandrake Linux 9.1 prua najbolji softver za pristupanje svemu to "
-"Internetima za ponuditi: surfajte webom i gledajte animacije sa Mozillom i "
-"Koquererom,razmjenjujte emailove i organizirajte vae osobne informacije sa "
-"Evolutionomi Kmailom, i jo mnogo toga"
-
-#: ../../share/advertising/03-internet.pl:1
-#, fuzzy, c-format
-msgid "Get the most from the Internet"
-msgstr "Spoji se na Internet"
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
"Mandrake Linux 8.2 vam omoguuje da potpuno ostvarite "
"multimedijalnipotencijal vaeg raunala! Koristite najnovije programe za "
"reprodukcijuglazbe i zvunih datoteka, ureujte i organizirajte slike i "
"fotografije,gledajte TV i video zapise, i jo mnogo toga"
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Push multimedia to its limits!"
+msgid ""
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
-
-#: ../../share/advertising/05-games.pl:1
-#, fuzzy, c-format
-msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-"Mandrake Linux 8.2 dolazi sa najboljim Open Source igrama - arkade, akcijske,"
-"kartanje, sport, strategije, ..."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
-msgid "Games"
-msgstr "Igre"
-
-#: ../../share/advertising/06-mcc.pl:1
-#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-"Mandrake Linux 8.2 Kontrolni Centar je mjesto gdje si potpuno "
-"moetepodrediti i podesiti va Mandrake sustav"
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Mandrake Kontrolni Centar"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Prebaci postavke pisaa"
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "Korisnika suelja"
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
-#, fuzzy, c-format
+#: ../../share/advertising/06-development.pl:1
+#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-"Mandrake Linux 8.2 je najbolja platforma za razvoj aplikacija. Otkrijte mo "
-"GNU gcc prevoditelja kao i najbolja Open Source okruja za razvojaplikacija."
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
-#, fuzzy, c-format
-msgid "Development simplified"
-msgstr "Razvoj"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, fuzzy, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"Uinite od svog raunala moni posluitelj sa samo nekoliko pritisaka na "
"miu:Web posluitelj, email, vatrozid, router, datoteni i ispisni "
"posluitelj, ..."
-#: ../../share/advertising/09-server.pl:1
-#, c-format
-msgid "Turn your machine into a reliable server"
-msgstr ""
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr ""
-
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
+msgid "Turn your computer into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr ""
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr ""
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, fuzzy, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"Potpun raspon Linux rjeenja, kao i posebne ponude proizvoda i 'goodiesa', "
"sudostupni online preko nae e-trgovine"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
+msgstr ""
+
+#: ../../share/advertising/10-security.pl:1
+#, c-format
+msgid "Optimize your security by using Mandrake Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Certify yourself on Linux"
+msgid "This product is available on the MandrakeStore Web site."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -13391,51 +13212,35 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, fuzzy, c-format
msgid "Become a MandrakeExpert"
msgstr "MandrakeExpert"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, fuzzy, c-format
msgid "MandrakeExpert Corporate"
msgstr "MandrakeExpert"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -15860,6 +15665,11 @@ msgstr "Dobro doli u arobnjak za prvi put"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr "Mandrake Kontrolni Centar"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -16790,6 +16600,22 @@ msgstr "Meusklop %s (koristi modul %s)"
#: ../../standalone/drakgw:1
#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Ispisni posluitelj"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
+#, fuzzy, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -17141,7 +16967,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -17317,6 +17143,11 @@ msgstr "Izaberite datoteku"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
+msgid "choose image"
+msgstr "Izaberite datoteku"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
msgid "Configure bootsplash picture"
msgstr "Podeavanje servisa"
@@ -17764,12 +17595,22 @@ msgid "network printer port"
msgstr ", TCP/IP host \"%s\", port %s"
#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the name of the CPU"
+msgstr ""
+
+#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Name"
msgstr "Ime: "
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "2 gumba"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
msgid "Number of buttons"
msgstr "2 gumba"
@@ -17931,7 +17772,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -18921,6 +18762,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr "Skup alata za mail, news, web, datoteni prijenos, i razgovor"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Igre"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimedija - Grafika"
@@ -18976,6 +18821,330 @@ msgstr "Osobne financije"
msgid "Programs to manage your finances, such as gnucash"
msgstr "Programi za ureivanje vaih financija, poput gnucash-a"
+#~ msgid "no network card found"
+#~ msgstr "ne mogu pronai niti jednu mrenu karticu"
+
+#~ msgid "Get involved in the Free Software world"
+#~ msgstr "Pridruite se svijetu slobodnog softvera"
+
+#, fuzzy
+#~ msgid ""
+#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "and view animations with Mozilla and Konqueror, or read your mail and "
+#~ "handle your personal information with Evolution and Kmail"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 prua najbolji softver za pristupanje svemu to "
+#~ "Internetima za ponuditi: surfajte webom i gledajte animacije sa Mozillom "
+#~ "i Koquererom,razmjenjujte emailove i organizirajte vae osobne "
+#~ "informacije sa Evolutionomi Kmailom, i jo mnogo toga"
+
+#, fuzzy
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Spoji se na Internet"
+
+#, fuzzy
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 8.2 dolazi sa najboljim Open Source igrama - arkade, "
+#~ "akcijske,kartanje, sport, strategije, ..."
+
+#, fuzzy
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ "Mandrake Linux 8.2 Kontrolni Centar je mjesto gdje si potpuno "
+#~ "moetepodrediti i podesiti va Mandrake sustav"
+
+#~ msgid "User interfaces"
+#~ msgstr "Korisnika suelja"
+
+#, fuzzy
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+#~ "Mandrake Linux 8.2 je najbolja platforma za razvoj aplikacija. Otkrijte "
+#~ "mo GNU gcc prevoditelja kao i najbolja Open Source okruja za "
+#~ "razvojaplikacija."
+
+#, fuzzy
+#~ msgid "Development simplified"
+#~ msgstr "Razvoj"
+
+#, fuzzy
+#~ msgid ""
+#~ "As a review, DrakX will present a summary of various information it has\n"
+#~ "about your system. Depending on your installed hardware, you may have "
+#~ "some\n"
+#~ "or all of the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary.\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Country\": check the current country selection. If you are not in "
+#~ "this\n"
+#~ "country, click on the button and choose another one.\n"
+#~ "\n"
+#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+#~ "primary language you have chosen. But here, just as in your choice of a\n"
+#~ "keyboard, you may not be in a country to which the chosen language\n"
+#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
+#~ "configure the clock for the correct timezone.\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation.\n"
+#~ "\n"
+#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+#~ "click that button. This should be reserved to advanced users.\n"
+#~ "\n"
+#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+#~ "interface in \"800x600\" resolution. If that does not suits you, click "
+#~ "on\n"
+#~ "the button to reconfigure your graphical interface.\n"
+#~ "\n"
+#~ " * \"Network\": If you want to configure your Internet or local network\n"
+#~ "access now, you can by clicking on this button.\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. If you notice the sound card displayed is not the one "
+#~ "that\n"
+#~ "is actually present on your system, you can click on the button and "
+#~ "choose\n"
+#~ "another driver.\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. If you have a TV card and it is not detected, click on the button "
+#~ "to\n"
+#~ "try to configure it manually.\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with the card."
+#~ msgstr ""
+#~ "Ovdje su predstavljeni razliiti parametri za vae raunalo. Ovisno o\n"
+#~ "instaliranom hardveru, vidjet ete ili ne slijedee stavke:\n"
+#~ "\n"
+#~ " * \"Mi\": moete provjeriti trenutne postavke mia i promijeniti\n"
+#~ "ih, ako treba, pritiskom na dugme;\n"
+#~ "\n"
+#~ " * \"Tipkovnica\": moete provjeriti trenutnu postavu tipkovnice i "
+#~ "promijeniti\n"
+#~ "je, ako treba, pritiskom na dugme;\n"
+#~ "\n"
+#~ " * \"Vremenska zona\": DrakX, podrazumijevano, pogaa vremensku zonu "
+#~ "prema\n"
+#~ "izabranom jeziku. Ali i ovdje, kao i kod izbora tipkovnice, moda niste u "
+#~ "zemlji\n"
+#~ "za koju bi izabrani jezik trebao odgovarati. Stoga, moda ete trabati "
+#~ "stisnuti\n"
+#~ "\"Vremenska zona\" dugme da bi namjestili sat prema vaoj vremenskoj "
+#~ "zoni;\n"
+#~ "\n"
+#~ " * \"Pisa\": pritiskom na \"Nema pisaa\" dugme otvorit e se arobnjak "
+#~ "za\n"
+#~ "namjetanje pisaa;\n"
+#~ "\n"
+#~ " * \"Zvuna kartica\": ako je zvuna kartica naena, bit e ovdje "
+#~ "prikazana.\n"
+#~ "Nije je mogue mijenjati tijekom instalacije;\n"
+#~ "\n"
+#~ " * \"TV kartica\": ako je naena TV kartica, ovdje e biti prikazana. "
+#~ "Nije je\n"
+#~ "mogue mijenjati tijekom instalacije;\n"
+#~ "\n"
+#~ " * \"ISDN kartica\": ako je naena ISDN kartica, ovdje e biti prikazana. "
+#~ "Moete\n"
+#~ "mijenjati njene parametre pritiskom na dugme."
+
+#, fuzzy
+#~ msgid ""
+#~ "LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
+#~ "what it finds there:\n"
+#~ "\n"
+#~ " * if a Windows boot sector is found, it will replace it with a grub/"
+#~ "LILO\n"
+#~ "boot sector. This way you will be able to load either GNU/Linux or "
+#~ "another\n"
+#~ "OS.\n"
+#~ "\n"
+#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
+#~ "one.\n"
+#~ "\n"
+#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
+#~ "bootloader.\n"
+#~ "\n"
+#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
+#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
+#~ "disk\n"
+#~ "(\"On Floppy\").\n"
+#~ "\n"
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Mandrake Linux CD-ROM ima ugraeni mod za spaavanje. Moete mu "
+#~ "pristupiti\n"
+#~ "pokretanjem sustava sa CD-ROMa, pritiskanjem >>F1<< tipke pri podizanju "
+#~ "sustava\n"
+#~ "i upisivanjem >>rescue<< u komandnoj liniji. Ali ako se sustav ne moe "
+#~ "podii\n"
+#~ "sa CD-ROMa, trebali biste se vratiti ovom koraku za pomo u barem dvije "
+#~ "situacije:\n"
+#~ "\n"
+#~ " * kada instalira bootloader, DrakX e prepisati boot sektor (MBR) vaeg\n"
+#~ "primarnog diska (osim ako ve ne koristite neki drugi boot manager), da "
+#~ "bi vam\n"
+#~ "omoguio pokretanje ili Windowsa ili GNU/Linuxa (ako imate Windowse u "
+#~ "raunalu).\n"
+#~ "Ako trebate ponovno instalirati Windowse, Microsoftov proces instalacije "
+#~ "e\n"
+#~ "prepisati boot sektor, i neete moi pokrenuti GNU/Linux!\n"
+#~ "\n"
+#~ " * ako se pojavi problem i ne moete pokrenuti GNU/Linux sa tvrdog "
+#~ "diska,\n"
+#~ "ova disketa e biti jedini nain na koji moete pokrenuti GNU/Linux. "
+#~ "Sadri\n"
+#~ "dovoljan broj sustavskih alata za povrat sustava koji se sruio zbog "
+#~ "nedostatka\n"
+#~ "energije, nesretne greke pri tipkanju, pogreke pri upisivanju lozinke "
+#~ "ili bilo\n"
+#~ "kojeg drugog razloga.\n"
+#~ "\n"
+#~ "Kada kliknete na ovaj korak, pojavit e se zahtjev za ubacivanjem diskete "
+#~ "u pogon.\n"
+#~ "Disketa koju ubacujete mora biti prazna ili sadravati podatke koji vam "
+#~ "nisu\n"
+#~ "potrebni. Neete je morati formatirati, jer e je DrakX potpuno prepisati."
+
+#, fuzzy
+#~ msgid ""
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Mandrake Linux CD-ROM ima ugraeni mod za spaavanje. Moete mu "
+#~ "pristupiti\n"
+#~ "pokretanjem sustava sa CD-ROMa, pritiskanjem >>F1<< tipke pri podizanju "
+#~ "sustava\n"
+#~ "i upisivanjem >>rescue<< u komandnoj liniji. Ali ako se sustav ne moe "
+#~ "podii\n"
+#~ "sa CD-ROMa, trebali biste se vratiti ovom koraku za pomo u barem dvije "
+#~ "situacije:\n"
+#~ "\n"
+#~ " * kada instalira bootloader, DrakX e prepisati boot sektor (MBR) vaeg\n"
+#~ "primarnog diska (osim ako ve ne koristite neki drugi boot manager), da "
+#~ "bi vam\n"
+#~ "omoguio pokretanje ili Windowsa ili GNU/Linuxa (ako imate Windowse u "
+#~ "raunalu).\n"
+#~ "Ako trebate ponovno instalirati Windowse, Microsoftov proces instalacije "
+#~ "e\n"
+#~ "prepisati boot sektor, i neete moi pokrenuti GNU/Linux!\n"
+#~ "\n"
+#~ " * ako se pojavi problem i ne moete pokrenuti GNU/Linux sa tvrdog "
+#~ "diska,\n"
+#~ "ova disketa e biti jedini nain na koji moete pokrenuti GNU/Linux. "
+#~ "Sadri\n"
+#~ "dovoljan broj sustavskih alata za povrat sustava koji se sruio zbog "
+#~ "nedostatka\n"
+#~ "energije, nesretne greke pri tipkanju, pogreke pri upisivanju lozinke "
+#~ "ili bilo\n"
+#~ "kojeg drugog razloga.\n"
+#~ "\n"
+#~ "Kada kliknete na ovaj korak, pojavit e se zahtjev za ubacivanjem diskete "
+#~ "u pogon.\n"
+#~ "Disketa koju ubacujete mora biti prazna ili sadravati podatke koji vam "
+#~ "nisu\n"
+#~ "potrebni. Neete je morati formatirati, jer e je DrakX potpuno prepisati."
+
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "Navedeni pisai su podeeni. Dvostruko kliknite na pisa da bi mu "
+#~ "promijenilipostavke; da bi ga odredili za podrazumijevani pisa; da bi "
+#~ "pogledali informacijeo njemu; ili da bi pisa sa udaljenog CUPS "
+#~ "posluitelja uinili dostupnimStarOfficeu/OpenOffice.org/GIMPu."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/hu.po b/perl-install/share/po/hu.po
index 562bc0f64..e5e61a69d 100644
--- a/perl-install/share/po/hu.po
+++ b/perl-install/share/po/hu.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
-"PO-Revision-Date: 2003-02-28 00:56+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
+"PO-Revision-Date: 2003-03-05 00:52+0100\n"
"Last-Translator: Arpad Biro <biro_arpad@yahoo.com>\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -1138,97 +1138,127 @@ msgstr ""
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
"Itt a gprl sszegyjttt adatokat lthatja. A teleptett hardvertl\n"
-"fggen a kvetkezk jelenhetnek meg:\n"
-"\n"
-" - \"Egr\": ellenrizze a jelenlegi egrbelltsokat; a mdostsukhoz\n"
-"kattintson a gombra.\n"
+"fggen a kvetkezkben felsorolt elemek jelenhetnek meg. A bejegyzsek a\n"
+"bellthat elemeket tartalmazzk azok aktulis belltsaival egytt.\n"
+"Mdosts a megfelel \"Bellts\" gombbal vgezhet.\n"
"\n"
-" - \"Billentyzet\": ellenrizze a jelenlegi billentyzet-kiosztst; a\n"
-"mdostshoz kattintson a gombra.\n"
+" - \"Billentyzet\": ellenrizze a jelenlegi billentyzet-kiosztst s\n"
+"szksg esetn mdostsa azt.\n"
"\n"
" - \"Orszg\": ellenrizze a jelenlegi orszgbelltst. Ha az nem\n"
-"megfelel, kattintson a gombra s vlasszon egy msik orszgot.\n"
+"megfelel, kattintson a \"Bellts\" gombra s vlasszon egy msik\n"
+"orszgot. Ha a kvnt orszg nem szerepel az elsknt megjelentett\n"
+"listban, akkor kattintson az \"Egyb\" gombra a teljes orszglista\n"
+"megjelentshez.\n"
"\n"
" - \"Idzna\": a telept alaprtelmezsben felknl egy ltala\n"
"megfelelnek tartott idzna-belltst, amelyet az n ltal kivlasztott\n"
-"elsdleges nyelv alapjn hatroz meg. Ugyangy, mint a billentyzet esetn,\n"
-"itt is elkpzelhet, hogy n nem abban az orszgban tartzkodik, amelyre\n"
-"a kivlasztott nyelv alapjn kvetkeztetni lehet. Ezrt szksg lehet\n"
-"arra, hogy az \"Idzna\" gombra kattintson - hogy az rt a megfelel\n"
-"idznhoz igaztsa.\n"
+"orszg alapjn hatroz meg. Ha az nem felel meg nnek, akkor mdostsa a\n"
+"\"Bellts\" gombbal.\n"
+"\n"
+" - \"Egr\": ellenrizze a jelenlegi egrbelltsokat; a mdostsukhoz\n"
+"kattintson a gombra.\n"
"\n"
-" - \"Nyomtat\": a \"Nincs nyomtat\" gombra kattintva elindul a\n"
+" - \"Nyomtat\": a \"Bellts\" gombra kattintva elindul a\n"
"nyomtatbelltsi varzsl. Nyomtatbelltssal kapcsolatos tovbbi\n"
"informcikat a felhasznli kziknyvbl lehet szerezni. Az ott\n"
"bemutatott fellet hasonl ahhoz, ami a teleptskor megjelenik.\n"
"\n"
-" - \"Rendszerbetlt\": ha szeretn mdostani a rendszerbetlt\n"
-"belltsait, kattintson a megfelel gombra. Elssorban a komolyabb\n"
-"ismeretekkel rendelkez felhasznlknak javasolt.\n"
-"\n"
-" - \"Grafikus fellet\": a telept alaprtelmezsben \"800x600\"-as\n"
-"felbontst llt be a grafikus fellethez. Ha ez nem felel meg nnek,\n"
-"kattintson a gombra a grafikus fellet belltsainak mdostshoz.\n"
-"\n"
-" - \"Hlzat\": ha be szeretn lltani az internet vagy a helyi hlzat\n"
-"elrst most, akkor kattintson a gombra.\n"
-"\n"
" - \"Hangkrtya\": ha a telept hangkrtyt szlel a gpben, az itt fog\n"
"megjelenni. Ha az itt megjelen hangkrtya nem azonos a gpben levvel,\n"
"akkor kattintson a gombra s vlasszon egy msik meghajtprogramot.\n"
"\n"
+" - \"Grafikus fellet\": a telept alaprtelmezsben \"800x600\"-as\n"
+"vagy \"1024x768\"-as felbontst llt be a grafikus fellethez. Ha ez nem\n"
+"felel meg nnek, kattintson a \"Bellts\" gombra a grafikus fellet\n"
+"belltsainak mdostshoz.\n"
+"\n"
" - \"Tvkrtya\": ha a telept tvkrtyt szlel a gpben, az itt\n"
"fog megjelenni. Ha a telept nem szleli a gpben lev tvkrtyt,\n"
-"akkor kattintson a gombra s lltsa be kzzel.\n"
+"akkor kattintson a \"Bellts\" gombra s lltsa be kzzel.\n"
"\n"
" - \"ISDN-krtya\": ha a telept ISDN-krtyt szlel a gpben, az itt fog\n"
-"megjelenni. Ha a gombra kattint, mdosthatja a krtya paramtereit."
+"megjelenni. Ha a \"Bellts\" gombra kattint, mdosthatja a krtya\n"
+"paramtereit.\n"
+"\n"
+" - \"Hlzat\": ha be szeretn lltani az internet vagy a helyi hlzat\n"
+"elrst most, akkor kattintson a gombra.\n"
+"\n"
+" - \"Biztonsgi szint\": lehetv teszi az egyik korbbi lpsben\n"
+"belltott biztonsgi szint mdostst.\n"
+"\n"
+" - \"Tzfal\": ha tervezi a gp internetre val kapcsolst, akkor rdemes\n"
+"egy tzfalat hasznlni az esetleges behatolsok ellen. A tzfalbelltssal\n"
+"kapcsolatban a kziknyvben tallhat rszletes informcit.\n"
+"\n"
+" - \"Rendszerbetlt\": ha szeretn mdostani a rendszerbetlt\n"
+"belltsait, kattintson a megfelel gombra. Elssorban a komolyabb\n"
+"ismeretekkel rendelkez felhasznlknak javasolt.\n"
+"\n"
+" - \"Szolgltatsok\": itt rszletesen bellthat, hogy mely\n"
+"szolgltatsok legyenek mkdtetve a gpen. Ha kiszolglknt szeretn\n"
+"zemeltetni a gpet, akkor rdemes tnzni ezt a rszt."
#: ../../help.pm:1
#, c-format
@@ -1416,13 +1446,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1439,14 +1464,8 @@ msgstr ""
"automatikusan feltelepti a megfelel meghajtprogramokat.\n"
"\n"
"Mivel a hardverfelderts nem mindig ismeri fel a gpben lev eszkzket,\n"
-"ezrt a telept r fog krdezni, van-e a gpben PCI SCSI-krtya.\n"
-"Ha az \"Igen\"-re kattint, akkor egy listbl kijellheti a SCSI-krtyt.\n"
-"Ha viszont biztos abban, hogy nincsen SCSI hardver a gpben, akkor\n"
-"a \"Nem\" gombra kattintson. Ha nem biztos a vlaszban, megtekintheti a\n"
-"megtallt hardverelemek listjt \"A hardverjellemzk megjelentse\"\n"
-"funkcit kivlasztva, majd a \"Kvetkez ->\" gombra kattintva. Vizsglja\n"
-"meg a listt, majd kattintson a \"Kvetkez ->\" gombra a SCSI-val\n"
-"kapcsolatos krdshez val visszatrshez.\n"
+"ezrt elkpzelhet, hogy a telept nem ismeri fel a merevlemezeket. Ha gy\n"
+"trtnik, akkor adja meg sajt kezleg a krdses eszkzk jellemzit.\n"
"\n"
"Ha kzzel kellett megadnia a PCI SCSI-krtya tpust, a telept\n"
"megkrdezi, hogy szeretn-e megadni a krtya jellemzit. ltalban nincs\n"
@@ -1467,7 +1486,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1532,32 +1551,7 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+"(\"On Floppy\")."
msgstr ""
"A LILO s a GRUB linuxos rendszerindt programok. Ez a fzis ltalban\n"
"teljesen automatikus. A telept elemzi a lemez betltszektort, s\n"
@@ -1576,36 +1570,7 @@ msgstr ""
"\"Rendszerindtsi eszkz\": a legtbb esetben nincs szksg az\n"
"alaprtelmezett rtk (\"A lemezmeghajt legels szektora (MBR)\")\n"
"mdostsra, de ha kvnja, a rendszerbetlt telepthet a msodik\n"
-"merevlemezre (\"/dev/hdb\"), vagy akr floppylemezre (\"Hajlkonylemez\").\n"
-"\n"
-"Az \"Indtlemez ksztse\" opci bejellsvel rendszerindtsra kpes\n"
-"helyrelltlemezt kszthet.\n"
-"\n"
-"A Mandrake Linux CD rendelkezik beptett helyrelltsi zemmddal. Ezen\n"
-"zemmd a kvetkezkppen rhet el: indtsa a rendszert a CD-rl, majd\n"
-"nyomja le az \"F1\" billentyt, s gpelje be a megjelen parancssorban\n"
-"azt, hogy \"rescue\". Ha viszont a gp nem kpes CD-rl val\n"
-"rendszerindtsra, akkor legalbb kt olyan eset van, amelyben szksg van\n"
-"egy rendszerindtsi floppy elksztsre:\n"
-"\n"
-" - A rendszerbetlt teleptsekor (hacsak n nem hasznl ms\n"
-"rendszerindt programot) a telept mdostja a f lemez\n"
-"betltszektort (boot sector; ms nven: MBR) annak rdekben, hogy\n"
-"tbbfle opercis rendszert is be lehessen tlteni (pldul: Linux\n"
-"s Windows - ha van a gpen Windows). Ha n jratelepti a Windowst, akkor\n"
-"a Microsoft-fle telept t fogja rni a betltszektort, s emiatt n nem\n"
-"lesz kpes Linuxt indtani.\n"
-"\n"
-" - Ha problma merl fel, s n nem tudja elindtani a Linux rendszert\n"
-"a merevlemezrl, akkor ezen floppy fogja jelenteni az egyetlen lehetsget\n"
-"arra, hogy elindtsa a rendszert. A floppy programokat tartalmaz a rendszer\n"
-"helyrelltshoz (arra az esetre, ha pldul ramkimarads trtnt, vagy\n"
-"a felhasznl elfelejtette a rendszergazdai jelszt).\n"
-"\n"
-"Ha kri ennek a lpsnek a vgrehajtst, akkor a telept megkri nt\n"
-"arra, hogy tegyen be egy floppyt a meghajtba. gyeljen arra, hogy a\n"
-"floppylemezen ne legyen megrzsre sznt adat. A lemezt nem szksges\n"
-"elzetesen formzni, mivel a telept fellrja a teljes lemez tartalmt."
+"merevlemezre (\"/dev/hdb\"), vagy akr floppylemezre (\"Hajlkonylemez\")."
#: ../../help.pm:1
#, c-format
@@ -1853,9 +1818,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1874,9 +1844,16 @@ msgstr ""
"kivlasztst kveten a Specilis rszben jellje be az \"Espanol\"\n"
"lehetsget.\n"
"\n"
-"Tbb nyelv is telepthet az alaprtelmezett nyelven fell. Ha kijellte\n"
-"az sszes kvnt nyelvet, kattintson a \"Kvetkez ->\" gombra a\n"
-"folytatshoz.\n"
+"Tetszleges szm nyelv telepthet az alaprtelmezett nyelven fell.\n"
+"Teleptheti akr az sszeset is - ehhez \"Az sszes nyelv\" opcit kell\n"
+"hasznlni. Egy nyelv tmogatsnak teleptse azt jelenti, hogy teleptsre\n"
+"kerlnek az adott nyelvhez kapcsold fordtsok, betkszletek,\n"
+"helyesrs-ellenrzk s egyebek. A \"Unicode hasznlata\n"
+"alaprtelmezsben\" opci hasznlatval elrhat, hogy a rendszer Unicode\n"
+"(UTF-8) kdolst hasznljon. Ez a funkci azonban mg fejleszts alatt ll,\n"
+"ezrt nem biztos, hogy minden esetben megfelelen fog mkdni. Ha n\n"
+"egymstl eltr kdolst ignyl nyelveket jell ki teleptsre, akkor a\n"
+"Unicode-tmogats mindenkppen teleptsre kerl.\n"
"\n"
"A rendszerre teleptett nyelvek kzti vltshoz a\n"
"\"/usr/sbin/localedrake\" program hasznlhat. Rendszergazdai\n"
@@ -1965,10 +1942,15 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
"\"Orszg\": ellenrizze a jelenlegi orszgbelltst. Ha az nem\n"
-"megfelel, kattintson a gombra s vlasszon egy msik orszgot."
+"megfelel, kattintson a \"Bellts\" gombra s vlasszon egy msik "
+"orszgot.\n"
+"Ha a kvnt orszg nem szerepel az elsknt megjelentett listban, akkor\n"
+"kattintson az \"Egyb\" gombra a teljes orszglista megjelentshez."
#: ../../help.pm:1
#, c-format
@@ -2197,9 +2179,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -2207,9 +2187,7 @@ msgstr ""
"hogy ha fontos adatok vannak trolva a gpen, vagy a gp kapcsoldni fog\n"
"az internetre, akkor rdemes magasabbra venni a biztonsgi szintet. "
"Magasabb\n"
-"szint esetn viszont ltalban nehzkesebb a gp hasznlata. A szintek\n"
-"jelentsvel kapcsolatban a kziknyv \"msec\" fejezetben tallhatk\n"
-"tovbbi informcik.\n"
+"szint esetn viszont ltalban nehzkesebb a gp hasznlata.\n"
"\n"
"Ha nem biztos benne, hogy mit volna rdemes vlasztani, vlassza az\n"
"alaprtelmezs szerinti lehetsget."
@@ -2220,27 +2198,27 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
"Lehetsges, hogy amikor n a Mandrake Linux rendszert telepti, mr\n"
"frisstsre kerltek bizonyos csomagok a rendszer kiadsa ta.\n"
"Elkpzelhet, hogy bizonyos hibk ki lettek javtva, illetve\n"
"hogy meg lettek oldva bizonyos felmerlt biztonsgi problmk. Ezeket\n"
"a frisstseket n letltheti az interneten keresztl.\n"
-"Nyomja le az \"Igen\" gombot, ha van mkd internetkapcsolata. Ha viszont\n"
-"inkbb ksbb kvnja telepteni a frisstseket, akkor a \"Nem\" gombot\n"
-"nyomja le.\n"
+"Vlassza az \"Igen\" lehetsget, ha van mkd internetkapcsolata. Ha\n"
+"inkbb ksbb kvnja telepteni a frisstseket, akkor a \"Nem\"\n"
+"lehetsget vlassza.\n"
"\n"
-"Ha az \"Igen\" gombot nyomja le, akkor megjelenik egy lista azon helyekrl,\n"
-"amelyekrl a frisstsek letlthetk. Vlasszon kzlk egy nhz kzel "
-"levt.\n"
+"Ha az \"Igen\" lehetsget vlasztja, akkor megjelenik egy lista azon\n"
+"helyekrl, amelyekrl a frisstsek letlthetk. Vlasszon kzlk egy\n"
+"nhz kzel levt.\n"
"Ezt kveten egy csomagvlasztsi fa jelenik meg. Ha telepteni kvnja a\n"
"kijellt csomagokat, akkor nyomja le a \"Telepts\" gombot. Ha nem kvn\n"
"csomagokat telepteni, akkor a \"Mgsem\" gombot nyomja le."
@@ -2307,7 +2285,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2337,8 +2315,7 @@ msgstr ""
"gp elvgzi az indtsi hardverteszteket, megjelenik a rendszerbetlt\n"
"menje, amelybl kivlaszthat, melyik opercis rendszer induljon el.\n"
"\n"
-"A \"Specilis\" gomb (csak szakrti mdban) lenyomsra kt jabb gomb\n"
-"jelenik meg:\n"
+"A \"Specilis\" gomb lenyomsra kt jabb gomb jelenik meg:\n"
"\n"
" - \"Automatikus teleptfloppy ksztse\": olyan teleptfloppy\n"
"ksztse, amelynek hasznlatval emberi kzremkds nlkl vgezhet\n"
@@ -2401,7 +2378,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2426,13 +2403,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"Most kell megadni, hogy a Mandrake Linux teleptse a merevlemez melyik\n"
"rszre trtnjen. Ha a lemez mg teljesen res, vagy a korbban teleptett\n"
@@ -2460,7 +2437,7 @@ msgstr ""
"llapotnak megfelel csatolsi pontok vannak megadva; ltalban\n"
"rdemes vltozatlanul hagyni azokat.\n"
"\n"
-" - \"A Windows partcin tallhat szabad hely felhasznlsa\": ha a\n"
+" - \"A windowsos partcin tallhat szabad hely felhasznlsa\": ha a\n"
"Windows gy van felteleptve a lemezre, hogy elfoglalja az sszes\n"
"elrhet terletet, akkor annak egy rszt fel kell szabadtani a Linux\n"
"szmra. Ez trtnhet a Windows-partci trlsvel (lsd \"A teljes\n"
@@ -2501,63 +2478,6 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Az \"Indtlemez ksztse\" opci bejellsvel rendszerindtsra kpes\n"
-"helyrelltlemezt kszthet.\n"
-"\n"
-"A Mandrake Linux CD rendelkezik beptett helyrelltsi zemmddal. Ezen\n"
-"zemmd a kvetkezkppen rhet el: indtsa a rendszert a CD-rl, majd\n"
-"nyomja le az \"F1\" billentyt, s gpelje be a megjelen parancssorban\n"
-"azt, hogy \"rescue\". Ha viszont a gp nem kpes CD-rl val\n"
-"rendszerindtsra, akkor legalbb kt olyan eset van, amelyben szksg van\n"
-"egy rendszerindtsi floppy elksztsre:\n"
-"\n"
-" - A rendszerbetlt teleptsekor (hacsak n nem hasznl ms\n"
-"rendszerindt programot) a telept mdostja a f lemez\n"
-"betltszektort (boot sector; ms nven: MBR) annak rdekben, hogy\n"
-"tbbfle opercis rendszert is be lehessen tlteni (pldul: Linux\n"
-"s Windows - ha van a gpen Windows). Ha n jratelepti a Windowst, akkor\n"
-"a Microsoft-fle telept t fogja rni a betltszektort, s emiatt n nem\n"
-"lesz kpes Linuxt indtani.\n"
-"\n"
-" - Ha problma merl fel, s n nem tudja elindtani a Linux rendszert\n"
-"a merevlemezrl, akkor ezen floppy fogja jelenteni az egyetlen lehetsget\n"
-"arra, hogy elindtsa a rendszert. A floppy programokat tartalmaz a rendszer\n"
-"helyrelltshoz (arra az esetre, ha pldul ramkimarads trtnt, vagy\n"
-"a felhasznl elfelejtette a rendszergazdai jelszt).\n"
-"\n"
-"Ha kri ennek a lpsnek a vgrehajtst, akkor a telept megkri nt\n"
-"arra, hogy tegyen be egy floppyt a meghajtba. gyeljen arra, hogy a\n"
-"floppylemezen ne legyen megrzsre sznt adat. A lemezt nem szksges\n"
-"elzetesen formzni, mivel a telept fellrja a teljes lemez tartalmt."
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
@@ -2780,7 +2700,8 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2796,7 +2717,7 @@ msgid ""
"enabled on a server. In general, select only the services you really need.\n"
"!!"
msgstr ""
-"Ebben a lpsben lehet kijellni az automatikusan elindtand\n"
+"Ebben a prbeszdablakban lehet kijellni az automatikusan elindtand\n"
"szolgltatsokat.\n"
"\n"
"A telept megjelenti a jelenleg teleptett sszes szolgltats listjt.\n"
@@ -2815,15 +2736,15 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
msgstr ""
-"\"Nyomtat\": a \"Nincs nyomtat\" gombra kattintva elindul a\n"
-"nyomtatbelltsi varzsl. Nyomtatbelltssal kapcsolatos tovbbi\n"
-"informcikat a felhasznli kziknyvbl lehet szerezni. Az ott\n"
-"bemutatott fellet hasonl ahhoz, ami a teleptskor megjelenik."
+"\"Nyomtat\": a \"Bellts\" gombra kattintva elindul a nyomtatbelltsi\n"
+"varzsl. Nyomtatbelltssal kapcsolatos tovbbi informcikat a\n"
+"felhasznli kziknyvbl lehet szerezni. Az ott bemutatott fellet hasonl\n"
+"ahhoz, ami a teleptskor megjelenik."
#: ../../help.pm:1
#, c-format
@@ -3482,7 +3403,6 @@ msgstr ""
msgid "Computing the size of the Windows partition"
msgstr "A windowsos partci mretnek meghatrozsa"
-# msgstr "A Windows fjlrendszer bounds kiszmtsa"
#: ../../install_interactive.pm:1
#, c-format
msgid ""
@@ -3500,7 +3420,7 @@ msgstr "Melyik partcit szeretn tmretezni?"
#: ../../install_interactive.pm:1
#, c-format
msgid "Use the free space on the Windows partition"
-msgstr "A Windows partcin tallhat szabad hely felhasznlsa"
+msgstr "A windowsos partcin tallhat szabad hely felhasznlsa"
#: ../../install_interactive.pm:1
#, c-format
@@ -4464,6 +4384,12 @@ msgstr "Szolgltatsok"
msgid "System"
msgstr "Rendszer"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, c-format
+msgid "%s on %s"
+msgstr "%s ezen: %s"
+
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
@@ -4605,14 +4531,14 @@ msgid "Which is your timezone?"
msgstr "Melyik idznt vlasztja?"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Would you like to try again?"
-msgstr "Szeretn belltani a nyomtatkezelst?"
+msgstr "Szeretn jra megprblni?"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Unable to contact mirror %s"
-msgstr "Nem sikerlt ltrehozni j pldnyt: %s"
+msgstr "Nem sikerlt kapcsoldni ehhez a tkrkiszolglhoz: %s"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4910,6 +4836,11 @@ msgid "Please choose your type of mouse."
msgstr "Adja meg az egr tpust."
#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Titkostsi kulcs"
+
+#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr "Frissts: %s"
@@ -4983,9 +4914,9 @@ msgid ""
"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
"\"\n"
msgstr ""
-"Nhny fontos csomagot nem tudtam telepteni.\n"
-"Ez azt jelenti, hogy vagy a CD-meghajt, vagy a CD lemez\n"
-"hibs. A CD lemezt egy, mr felteleptett gpen a kvetkez\n"
+"Nhny fontos csomag teleptse nem sikerlt.\n"
+"Ez azt jelenti, hogy a CD-meghajt vagy a CD hibs.\n"
+"A CD-t egy, mr felteleptett gpen a kvetkez\n"
"parancs segtsgvel tesztelheti le:\n"
"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
@@ -5905,7 +5836,7 @@ msgstr "Panama"
#: ../../lang.pm:1
#, c-format
msgid "Oman"
-msgstr "Oman"
+msgstr "Omn"
#: ../../lang.pm:1
#, c-format
@@ -5965,7 +5896,7 @@ msgstr "Mozambik"
#: ../../lang.pm:1
#, c-format
msgid "Malaysia"
-msgstr "Malaysia"
+msgstr "Malajzia"
#: ../../lang.pm:1
#, c-format
@@ -6120,7 +6051,7 @@ msgstr "Kazahsztn"
#: ../../lang.pm:1
#, c-format
msgid "Cayman Islands"
-msgstr "Cayman-szigetek"
+msgstr "Kajmn-szigetek"
#: ../../lang.pm:1
#, c-format
@@ -6310,7 +6241,7 @@ msgstr "Gibraltr"
#: ../../lang.pm:1
#, c-format
msgid "Ghana"
-msgstr "Ghana"
+msgstr "Ghna"
#: ../../lang.pm:1
#, c-format
@@ -6420,7 +6351,7 @@ msgstr "Dnia"
#: ../../lang.pm:1
#, c-format
msgid "Djibouti"
-msgstr "Djibouti"
+msgstr "Dzsibuti"
#: ../../lang.pm:1
#, c-format
@@ -6445,7 +6376,7 @@ msgstr "Kuba"
#: ../../lang.pm:1
#, c-format
msgid "Colombia"
-msgstr "Colombia"
+msgstr "Kolumbia"
#: ../../lang.pm:1
#, c-format
@@ -6580,7 +6511,7 @@ msgstr "Burkina Faso"
#: ../../lang.pm:1
#, c-format
msgid "Bangladesh"
-msgstr "Bangladesh"
+msgstr "Banglades"
#: ../../lang.pm:1
#, c-format
@@ -7375,6 +7306,9 @@ msgid ""
"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
msgstr ""
+"\n"
+"Hasznlat: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
#: ../../standalone.pm:1
#, c-format
@@ -7383,6 +7317,9 @@ msgid ""
" XFdrake [--noauto] monitor\n"
" XFdrake resolution"
msgstr ""
+" [everything]\n"
+" XFdrake [--noauto] monitor\n"
+" XFdrake felbonts"
#: ../../standalone.pm:1
#, c-format
@@ -7390,6 +7327,8 @@ msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
msgstr ""
+"[--manual] [--device=eszkz] [--update-sane=sane_forrsknyvtr] [--update-"
+"usbtable] [--dynamic=eszkz]"
#: ../../standalone.pm:1
#, c-format
@@ -7402,11 +7341,19 @@ msgid ""
"description window\n"
" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
+"[OPCI]...\n"
+" --no-confirmation az els megerstsi krds kihagysa\n"
+" MandrakeUpdate-mdban\n"
+" --no-verify-rpm a csomagalrsok ellenrzsnek kihagysa\n"
+" --changelog-first a mdostsi napl megjelentse a fjllista\n"
+" eltt a lersablakban\n"
+" --merge-all-rpmnew az sszes megtallt .rpmnew illetve .rpmsave\n"
+" fjl sszefzsnek felajnlsa"
#: ../../standalone.pm:1
#, c-format
msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr ""
+msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
#: ../../standalone.pm:1
#, c-format
@@ -7421,11 +7368,20 @@ msgid ""
"--status : returns 1 if connected 0 otherwise, then exit.\n"
"--quiet : don't be interactive. To be used with (dis)connect."
msgstr ""
+"[OPCIK]\n"
+"Hlzati- s internetkapcsolat ltrehozsa s figyelse\n"
+"\n"
+"--defaultintf csatol: alaprtelmezsben ezen csatol megjelentse\n"
+"--connect: kapcsolds az internetre, ha nincs kapcsoldva\n"
+"--disconnect: lekapcsolds az internetrl, ha kapcsoldva van\n"
+"--force: (dis)connect funkci esetn a (le)kapcsolds kiknyszertse\n"
+"--status: ha kapcsoldva van, 1-es kddal lp ki, ha nem, akkor 0-ssal\n"
+"--quiet: interaktivits kikapcsolsa - (dis)connect esetre"
#: ../../standalone.pm:1
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr ""
+msgstr "[--file=fjl] [--word=sz] [--explain=regulris_kifejezs] [--alert]"
#: ../../standalone.pm:1
#, c-format
@@ -7449,6 +7405,20 @@ msgid ""
"--delclient : delete a client machine from MTS (requires MAC address, "
"IP, nbi image name)"
msgstr ""
+"[OPCIK]...\n"
+"A Mandrake terminlkiszolgl (MTS) belltsa\n"
+"--enable : az MTS bekapcsolsa\n"
+"--disable : az MTS kikapcsolsa\n"
+"--start : az MTS elindtsa\n"
+"--stop : az MTS lelltsa\n"
+"--adduser : ltez rendszerfelhasznl felvtele az MTS-be\n"
+" (felhasznlnevet ignyel)\n"
+"--deluser : ltez rendszerfelhasznl eltvoltsa az MTS-bl\n"
+" (felhasznlnevet ignyel)\n"
+"--addclient : kliensgp felvtele az MTS-be (MAC-cmet, IP-cmet\n"
+" s NBI kpmsnevet ignyel)\n"
+"--delclient : kliensgp eltvoltsa az MTS-bl (MAC-cmet, IP-cmet\n"
+" s NBI kpmsnevet ignyel)"
#: ../../standalone.pm:1
#, c-format
@@ -7466,6 +7436,19 @@ msgid ""
" : name_of_application like so for staroffice \n"
" : and gs for ghostscript for only this one."
msgstr ""
+"Betkszletek teleptse s lekrdezse\n"
+"--windows_import : betkszlet-importls az sszes elrhet windowsos\n"
+" partcirl\n"
+"--xls_fonts : a betkszletek listzsa (xlsfonts)\n"
+"--strong : a betkszletek szigor ellenrzse\n"
+"--install : betkszlet vagy betkszlet-knyvtr teleptse\n"
+"--uninstall : betkszlet vagy betkszlet-knyvtr eltvoltsa\n"
+"--replace : a mr ltez betkszletek fellrsa\n"
+"--application : 0: egyik alkalmazshoz se legyen teleptve tmogats;\n"
+" 1: az sszes elrhet alkalmazshoz legyen tmogats;\n"
+" alkalmazsnv: az adott alkalmazshoz legyen tmogats\n"
+" (pldul az 'so' alkalmazsnv a StarOffice programot\n"
+" jelli, a 'gs' pedig a Ghostscriptet)"
#: ../../standalone.pm:1
#, c-format
@@ -7477,6 +7460,12 @@ msgid ""
" --report - program should be one of mandrake tools\n"
" --incident - program should be one of mandrake tools"
msgstr ""
+"[OPCIK] [PROGRAMNV]\n"
+"\n"
+"OPCIK:\n"
+" --help - jelen segtsg megjelentse\n"
+" --report - paramter: programnv (a Mandrake-eszkzk egyike)\n"
+" --incident - paramter: programnv (a Mandrake-eszkzk egyike)"
#: ../../standalone.pm:1
#, c-format
@@ -7493,6 +7482,17 @@ msgid ""
"--help : show this message.\n"
"--version : show version number.\n"
msgstr ""
+"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
+"Mentsek ksztsre s azok visszatltsre szolgl alkalmazs\n"
+"\n"
+"--default : az alaprtelmezett knyvtrak elmentse\n"
+"--debug : az sszes nyomkvetsi zenet megjelentse\n"
+"--show-conf : a mentend fjlok illetve knyvtrak listzsa\n"
+"--config-info : a belltsi fjl opciinak magyarzata (az\n"
+" X grafikus rendszert nem hasznlk szmra)\n"
+"--daemon : a szolgltats belltsnak hasznlata\n"
+"--help : jelen segtsg megjelentse\n"
+"--version : verzi-informci megjelentse\n"
#: ../../standalone.pm:1
#, c-format
@@ -9770,11 +9770,6 @@ msgstr "Hlzat belltsa"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "nem talltam hlzati krtyt"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
@@ -10420,9 +10415,9 @@ msgid "Start at boot"
msgstr "Indts rendszerbetltsnl"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Assign host name from DHCP address"
-msgstr "Adja meg a gpnevet vagy az IP-cmet."
+msgstr "Gpnv a DHCP-cmbl"
#: ../../network/network.pm:1
#, c-format
@@ -10435,9 +10430,9 @@ msgid "Track network card id (useful for laptops)"
msgstr "A hlzati krtya azonostjnak kvetse (laptopoknl hasznos)"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "DHCP host name"
-msgstr "Gpnv"
+msgstr "DHCP gpnv"
#: ../../network/network.pm:1 ../../standalone/drakconnect:1
#: ../../standalone/drakgw:1
@@ -10810,7 +10805,7 @@ msgstr ", USB nyomtat"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid ", USB printer \\#%s"
-msgstr ", USB nyomtat: \\#%s"
+msgstr ", %s. USB nyomtat"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
@@ -11081,20 +11076,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"A kvetkez nyomtatk vannak belltva. Ha mdostani szeretn egy nyomtat "
-"belltsait, vagy alaprtelmezett kvn tenni egy nyomtatt, vagy le "
-"szeretn krdezni egy nyomtat adatait, vagy egy tvoli CUPS-kiszolgln "
-"lev nyomtatt elrhetv szeretne tenni a StarOffice/OpenOffice.org/GIMP "
-"program szmra, akkor kattintson dupln a megfelel nyomtatra."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "Nyomtatsi rendszer: "
@@ -11731,6 +11712,11 @@ msgstr "A(z) %s rtknek egsz szmnak kell lennie!"
#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Printer default settings"
+msgstr "Alaprtelmezett nyomtatbelltsok"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
"Printer default settings\n"
"\n"
@@ -12507,7 +12493,7 @@ msgstr "Helyi nyomtat"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "USB printer \\#%s"
-msgstr "USB nyomtat: \\#%s"
+msgstr "%s. USB nyomtat"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -13081,8 +13067,8 @@ msgid ""
"You can also decide here whether printers on remote machines should be "
"automatically made available on this machine."
msgstr ""
-"Meghatrozhatja, hogy a tvoli gpek nyomtati automatikusan elrhetv "
-"legyenek-e tve ezen a gpen."
+"Meghatrozhatja azt is, hogy a tvoli gpek nyomtati automatikusan "
+"elrhetv legyenek-e tve ezen a gpen."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -13131,6 +13117,9 @@ msgid ""
"\n"
"Set the user umask."
msgstr ""
+"Argumentumok: (umask)\n"
+"\n"
+"A felhasznlhoz tartoz umask-rtk belltsa."
#: ../../security/help.pm:1
#, c-format
@@ -13139,6 +13128,10 @@ msgid ""
"\n"
"Set the shell timeout. A value of zero means no timeout."
msgstr ""
+"Argumentumok: (val)\n"
+"\n"
+"A parancsrtelmez vrakozsi idejnek belltsa. A 0 rtk jelentse:\n"
+"vgtelen hosszsg vrakozsi idtartam."
#: ../../security/help.pm:1
#, c-format
@@ -13147,67 +13140,84 @@ msgid ""
"\n"
"Set shell commands history size. A value of -1 means unlimited."
msgstr ""
+"Argumentumok: (size)\n"
+"\n"
+"A parancsrtelmez parancstrtneti listjnak mretnek belltsa.\n"
+"A -1 rtk jelentse: korltlan."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check additions/removals of sgid files."
msgstr ""
+"Ha igenre van lltva: SGID fjlok ltrehozsnak/trlsnek ellenrzse."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check open ports."
-msgstr ""
+msgstr "Ha igenre van lltva: nyitott portok ellenrzse."
#: ../../security/help.pm:1
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
msgstr ""
+"Ha be van lltva: a jelents ezen email-cmre val kldse; msklnben a\n"
+"rendszergazdnak."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report check result by mail."
-msgstr ""
+msgstr "Ha igenre van lltva: az ellenrzs eredmnynek elkldse levlben."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check files/directories writable by everybody."
msgstr ""
+"Ha igenre van lltva: a mindenki ltal rhat fjlok/knyvtrak ellenrzse."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, reports check result to tty."
-msgstr ""
+msgstr "Ha igenre van lltva: az ellenrzs eredmnynek kirsa a konzolra."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, run some checks against the rpm database."
-msgstr ""
+msgstr "Ha igenre van lltva: ellenrzsek elvgzse az RPM-adatbzison."
+# prom. zemmd: az eszkz nem csak a neki szl csomagokat teszi be
+# a pufferbe, hanem a ms eszkzknek szlkat is
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""
+"Ha igenre van lltva: ellenrzs, hogy a hlzati eszkzk 'promiscuous'\n"
+"(minden csomagot megtart) zemmdban vannak-e."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, run chkrootkit checks."
-msgstr ""
+msgstr "Ha igenre van lltva: chkrootkit ellenrzsek elvgzse."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
msgstr ""
+"Ha igenre van lltva: a felhasznlk sajt knyvtraiban lev fjlok\n"
+"engedlyeinek ellenrzse."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
msgstr ""
+"Ha igenre van lltva: 'SUID root' fjlok ltrehozsnak/trlsnek "
+"ellenrzse."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report check result to syslog."
msgstr ""
+"Ha igenre van lltva: az ellenrzs eredmnynek rsa a rendszernaplba."
#: ../../security/help.pm:1
#, c-format
@@ -13215,26 +13225,32 @@ msgid ""
"if set to yes, check for empty passwords, for no password in /etc/shadow and "
"for users with the 0 id other than root."
msgstr ""
+"Ha igenre van lltva: res illetve a /etc/shadow fjlbl hinyz jelszavak\n"
+"keresse, tovbb ellenrzs, hogy ltezik-e a rendszergazdn kvl 0\n"
+"azonostj felhasznl."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, run the daily security checks."
-msgstr ""
+msgstr "Ha igenre van lltva: a napi biztonsgi ellenrzsek vgrehajtsa."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
msgstr ""
+"Ha igenre van lltva: az SUID/SGID fjlok ellenrzsszegnek ellenrzse."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check empty password in /etc/shadow."
msgstr ""
+"Ha igenre van lltva: ellenrzs, hogy ltezik-e res jelsz a /etc/shadow\n"
+"fjlban."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report unowned files."
-msgstr ""
+msgstr "Ha igenre van lltva: tulajdonos nlkli fjlok listzsa."
#: ../../security/help.pm:1
#, c-format
@@ -13243,6 +13259,9 @@ msgid ""
"\n"
"Set the root umask."
msgstr ""
+"Argumentumok: (umask)\n"
+"\n"
+"A rendszergazdhoz tartoz umask-rtk belltsa."
#: ../../security/help.pm:1
#, c-format
@@ -13252,6 +13271,10 @@ msgid ""
"Set the password minimum length and minimum number of digit and minimum "
"number of capitalized letters."
msgstr ""
+"Argumentumok: (length, ndigits=0, nupper=0)\n"
+"\n"
+"A minimlis jelszhossz s a szmjegyek illetve a nagybetk minimlis\n"
+"szmnak belltsa."
#: ../../security/help.pm:1
#, c-format
@@ -13260,6 +13283,10 @@ msgid ""
"\n"
"Set the password history length to prevent password reuse."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"A jelsztrtneti lista mretnek belltsa a jelszavak jrahasznlsnak\n"
+"megakadlyozsra."
#: ../../security/help.pm:1
#, c-format
@@ -13269,6 +13296,11 @@ msgid ""
"Set password aging to \\fImax\\fP days and delay to change to \\fIinactive"
"\\fP."
msgstr ""
+"Argumentumok: (max, inactive=-1)\n"
+"\n"
+"A jelsz lettartamnak belltsa \\fImax\\fP napra s a mdostsi "
+"haladk\n"
+"belltsa az \\fIinactive\\fP rtkre."
#: ../../security/help.pm:1
#, c-format
@@ -13277,6 +13309,9 @@ msgid ""
"\n"
"Add the name as an exception to the handling of password aging by msec."
msgstr ""
+"Argumentumok: (name)\n"
+"\n"
+"Az adott nv felvtele az msec-fle jelszelvls-kezels alli kivtelknt."
#: ../../security/help.pm:1
#, c-format
@@ -13285,6 +13320,9 @@ msgid ""
"\n"
" Enable/Disable sulogin(8) in single user level."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"Az sulogin(8) engedlyezse/letiltsa egyfelhasznls szinten."
#: ../../security/help.pm:1
#, c-format
@@ -13293,6 +13331,9 @@ msgid ""
"\n"
" Activate/Disable daily security check."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"A napi biztonsgi ellenrzs bekapcsolsa/kikapcsolsa."
#: ../../security/help.pm:1
#, c-format
@@ -13301,6 +13342,10 @@ msgid ""
"\n"
"Activate/Disable ethernet cards promiscuity check."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"Az Ethernet-krtyk 'promiscuous' (minden csomagot megtart) zemmdjnak\n"
+"ellenrzsnek bekapcsolsa/kikapcsolsa."
#: ../../security/help.pm:1
#, c-format
@@ -13309,6 +13354,9 @@ msgid ""
"\n"
"Use password to authenticate users."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"Jelsz hasznlata a felhasznlk azonostshoz."
#: ../../security/help.pm:1
#, c-format
@@ -13317,6 +13365,11 @@ msgid ""
"\n"
" Enabling su only from members of the wheel group or allow su from any user."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"Annak meghatrozsa, hogy az 'su' parancs hasznlata csak a 'wheel' nev\n"
+"csoport tagjainak szmra legyen lehetsges, vagy pedig brmely felhasznl\n"
+"szmra."
#: ../../security/help.pm:1
#, c-format
@@ -13325,6 +13378,9 @@ msgid ""
"\n"
"Enable/Disable msec hourly security check."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"Az msec rnknti biztonsgi ellenrzseinek bekapcsolsa/kikapcsolsa."
#: ../../security/help.pm:1
#, c-format
@@ -13333,6 +13389,9 @@ msgid ""
"\n"
"Enable/Disable the logging of IPv4 strange packets."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"A szoksostl eltr IPv4-csomagok naplzsnak bekapcsolsa/kikapcsolsa."
#: ../../security/help.pm:1
#, c-format
@@ -13341,6 +13400,9 @@ msgid ""
"\n"
"Enable/Disable libsafe if libsafe is found on the system."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"A libsafe bekapcsolsa/kikapcsolsa, amennyiben megtallhat a rendszeren."
#: ../../security/help.pm:1
#, c-format
@@ -13349,6 +13411,11 @@ msgid ""
"\n"
"Enable/Disable IP spoofing protection."
msgstr ""
+"Argumentumok: (arg, alert=1)\n"
+"\n"
+"Az 'IP spoofing' (ms gp IP-cmnek hasznlata forrscmknt) elleni "
+"vdelem\n"
+"bekapcsolsa/kikapcsolsa."
#: ../../security/help.pm:1
#, c-format
@@ -13358,6 +13425,11 @@ msgid ""
"Enable/Disable name resolution spoofing protection. If\n"
"\\fIalert\\fP is true, also reports to syslog."
msgstr ""
+"Argumentumok: (arg, alert=1)\n"
+"\n"
+"A 'DNS spoofing' (a nvfeloldsnak az eredetitl eltr rendszerrel val\n"
+"vgeztetse) elleni vdelem bekapcsolsa/kikapcsolsa. Ha az \\fIalert\\fP\n"
+"rtk igazra van lltva, akkor a rendszernaplba is r."
#: ../../security/help.pm:1
#, c-format
@@ -13368,6 +13440,13 @@ msgid ""
"expression describing what to log (see syslog.conf(5) for more details) and\n"
"dev the device to report the log."
msgstr ""
+"Argumentumok: (arg, expr='*.*', dev='tty12')\n"
+"\n"
+"A 12-es konzolra kldtt rendszernapl-jelentsek bekapcsolsa/"
+"kikapcsolsa.\n"
+"Az \\fIexpr\\fP kifejezs szabja meg, mit kell naplzni (informci a\n"
+"syslog.conf(5) lersban), a \\fIdev\\fP pedig az eszkzt, amelyre a napl\n"
+"rand."
#: ../../security/help.pm:1
#, c-format
@@ -13378,6 +13457,13 @@ msgid ""
"allow and /etc/at.allow\n"
"(see man at(1) and crontab(1))."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"A 'cron' s az 'at' hasznlatnak engedlyezse/letiltsa a felhasznlk\n"
+"szmra. Az engedlyezett felhasznlkat a /etc/cron.allow illetve a\n"
+"/etc/at.allow fjlokba kell berni (informci az at(1) illetve a crontab"
+"(1)\n"
+"lersban)."
#: ../../security/help.pm:1
#, c-format
@@ -13393,6 +13479,16 @@ msgid ""
"the file\n"
"during the installation of packages."
msgstr ""
+"Argumentumok: ()\n"
+"\n"
+"Ha a SERVER_LEVEL (vagy annak hinya esetn a SECURE_LEVEL) rtk 3-nl\n"
+"nagyobb a /etc/security/msec/security.conf fjlban, akkor a rendszer\n"
+"ltrehozza a /etc/security/msec/server szimbolikus linket a\n"
+"/etc/security/msec/server.<SERVER_LEVEL> fjlra. A /etc/security/msec/"
+"server\n"
+"a 'chkconfig --add' parancs szmra szksges annak eldntshez, hogy\n"
+"csomagteleptskor fel kell-e venni egy szolgltatst (az alapjn, hogy\n"
+"szerepel-e a fjlban)."
#: ../../security/help.pm:1
#, c-format
@@ -13405,6 +13501,14 @@ msgid ""
"services you need, use /etc/hosts.allow\n"
"(see hosts.allow(5))."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"Ha \\fIarg\\fP = ALL, akkor a tcp_wrappers ltal vezrelt sszes\n"
+"szolgltats engedlyezve lesz (informci a hosts.deny(5) lersban),\n"
+"ha \\fIarg\\fP = LOCAL, akkor csak a helyiek, ha pedig \\fIarg\\fP = NONE,\n"
+"akkor egyik sem. A szksges szolgltatsok engedlyezse a /etc/hosts."
+"allow\n"
+"fjl hasznlatval vgezhet (informci a hosts.allow(5) lersban)."
#: ../../security/help.pm:1
#, c-format
@@ -13414,6 +13518,10 @@ msgid ""
"The argument specifies if clients are authorized to connect\n"
"to the X server on the tcp port 6000 or not."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"Az argumentum megadja, hogy a klienseknek lehetsgk legyen-e kapcsoldni\n"
+"az X kiszolglhoz a 6000-es TCP porton vagy sem."
#: ../../security/help.pm:1
#, c-format
@@ -13424,6 +13532,12 @@ msgid ""
"on the client side: ALL (all connections are allowed), LOCAL (only\n"
"local connection) and NONE (no connection)."
msgstr ""
+"Argumentumok: (arg, listen_tcp=None)\n"
+"\n"
+"X-kapcsolatok engedlyezse/letiltsa. Az els argumentum megadja, hogy\n"
+"mi trtnjen a kliensoldalon: ALL rtk esetn minden kapcsolat\n"
+"engedlyezett, LOCAL esetn csak a helyiek, NONE esetn pedig semmilyen\n"
+"kapcsolat sem."
#: ../../security/help.pm:1
#, c-format
@@ -13433,6 +13547,10 @@ msgid ""
"Allow/Forbid the list of users on the system on display managers (kdm and "
"gdm)."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"A felhasznllista megjelentsnek engedlyezse/letiltsa a\n"
+"bejelentkezskezelkben (KDM s GDM)."
#: ../../security/help.pm:1
#, c-format
@@ -13441,6 +13559,9 @@ msgid ""
"\n"
"Allow/Forbid direct root login."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"Kzvetlen rendszergazdai bejelentkezs engedlyezse/letiltsa."
#: ../../security/help.pm:1
#, c-format
@@ -13449,6 +13570,9 @@ msgid ""
"\n"
"Allow/Forbid remote root login."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"Tvoli rendszergazdai bejelentkezs engedlyezse/letiltsa."
#: ../../security/help.pm:1
#, c-format
@@ -13457,6 +13581,9 @@ msgid ""
"\n"
"Allow/Forbid reboot by the console user."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"jraindts engedlyezse/letiltsa konzolfelhasznlk szmra."
#: ../../security/help.pm:1
#, c-format
@@ -13467,6 +13594,11 @@ msgid ""
"\\fP = NONE no issues are\n"
"allowed else only /etc/issue is allowed."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"Ha \\fIarg\\fP = ALL, akkor ltezhet /etc/issue s /etc/issue.net\n"
+"nev fjl is, ha \\fIarg\\fP = NONE, akkor egyik sem, egyb esetekben pedig\n"
+"csak a /etc/issue engedlyezett."
#: ../../security/help.pm:1
#, c-format
@@ -13475,6 +13607,9 @@ msgid ""
"\n"
"Allow/Forbid autologin."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"Automatikus bejelentkezs engedlyezse/letiltsa."
#: ../../security/help.pm:1
#, c-format
@@ -13483,6 +13618,9 @@ msgid ""
"\n"
" Accept/Refuse icmp echo."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"ICMP Echo elfogadsa/elutastsa."
#: ../../security/help.pm:1
#, c-format
@@ -13491,6 +13629,9 @@ msgid ""
"\n"
" Accept/Refuse broadcasted icmp echo."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"Broadcast-olt ICMP Echo elfogadsa/elutastsa."
#: ../../security/help.pm:1
#, c-format
@@ -13499,6 +13640,9 @@ msgid ""
"\n"
"Accept/Refuse bogus IPv4 error messages."
msgstr ""
+"Argumentumok: (arg)\n"
+"\n"
+"A hamis IPv4 hibazenetek elfogadsa/elutastsa."
#: ../../security/level.pm:1
#, c-format
@@ -13626,15 +13770,15 @@ msgstr "dvzlet a cracker-eknek"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
"A MandrakeSoft cg sikere a Szabad Szoftver elven alapul. Az n j opercis "
"rendszere a vilgmret Linux-kzssg egyttmkd munkjnak eredmnye."
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "dvzljk a Nylt Forrskd vilgban"
#: ../../share/advertising/01-thanks.pl:1
@@ -13645,8 +13789,8 @@ msgstr "Ksznjk, hogy a Mandrake Linux 9.1 rendszert vlasztotta"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
"Ossza meg ismereteit msokkal s jruljon hozz linuxos eszkzk "
"fejlesztshez - csatlakozzon a kzssgi (\"Community\") weblapjainkon "
@@ -13654,214 +13798,157 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr "Szeretne tbbet tudni a Nylt Forrskd kzssgrl?"
-
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Csatlakozzon a Szabad Szoftver vilghoz"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
-"A Mandrake Linux 9.1 rendszerben a legjobb programokat tallja. Bngsszen a "
-"weben s nzzen animcikat a Mozillval vagy a Konquerorral; olvassa "
-"leveleit s kezelje szemlyes informciit az Evolutionnel vagy a "
-"KMaillel; ..."
+"Szeretne tbbet tudni a Nylt Forrskd kzssgrl? Csatlakozzon a Szabad "
+"Szoftver vilghoz!"
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
-msgstr "Hasznlja fel az internet szolgltatsait"
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
"A Mandrake Linux 9.1 a legjabb programokat tartalmazza zene s videk "
"lejtszshoz valamint kpek szerkesztshez s kezelshez"
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr "Hasznlja ki a multimdia lehetsgeit!"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr "Fedezze fel a legjabb grafikai s multimdis eszkzket!"
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"A Mandrake Linux 9.1 a nylt forrskd jtkok legjobbjt nyjtja - "
-"gyessgi jtkok, akci, stratgia, ..."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "Jtkok"
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-"A Mandrake Linux 9.1 Vezrlkzponttal testreszabhat s bellthat az "
-"egsz rendszer"
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Mandrake Vezrlkzpont"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "A Mandrake Terminal Server belltsa"
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
"A Mandrake Linux 9.1 rendszerben 11 klnbz - teljesen testreszabhat - "
"felhasznli fellet kzl lehet vlasztani: KDE 3, GNOME 2, WindowMaker, ..."
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "Felhasznli felletek"
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-"Hasznlja fel a GNU GCC 3 fordt s a legjobb nylt forrskd "
-"fejlesztkrnyezetek erejt"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "A Mandrake Linux 9.1 a legjobb fejleszti krnyezet"
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr "Egyszer fejleszts"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"Alaktsa gpt linuxos kiszolglv nhny egrkattintssal: webkiszolgl, "
"email, tzfal, tvlaszt, fjlkiszolgl, nyomtatkiszolgl, ..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr "Alaktsa gpt egy megbzhat kiszolglv"
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr "A termk a MandrakeStore weblapon rhet el"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-"Ez a tzfaltermk olyan hlzati funkcikat valst meg, amelyek az sszes "
-"biztonsgi ignynek megfelelnek"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr ""
-"A MandrakeSecurity termkek kzt megtallhat a Multi Network Firewall nev "
-"tzfal (M.N.F.)"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr "Nvelje a gp biztonsgt"
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"Linuxos megoldsok teljes sklja, specilis termkajnlatok, valamint egyb "
"rucikkek elektronikus zletnkben:"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr "A hivatalos MandrakeSoft-ruhz"
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
+#: ../../share/advertising/09-mdksecure.pl:1
+#, fuzzy, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"A MandrakeSoft egyttmkdik tbb, a Mandrake Linuxszal kapcsolatos "
"professzionlis megoldsokat knl cggel. A partnerek listja elrhet a "
"MandrakeStore webhelyn."
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr "Stratgiai partnerek"
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-"Akr a weben keresztl tanul, akr az oktatsi partnereinken keresztl, a "
-"Linux-Campus oktatsi anyag felkszti nt az elismert vilgmret "
-"professzionlis LPI vizsgaprogramra"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr "Szerezzen linuxos kpestst"
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "Nvelje a gp biztonsgt"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
+#, c-format
+msgid "This product is available on the MandrakeStore Web site."
+msgstr "A termk a MandrakeStore weblapon rhet el"
+
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-"Az oktatsi programot a vgfelhasznlk s a szakrtk (hlzati- s "
-"rendszeradminisztrtorok) ignyei alapjn hoztuk ltre"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr "Fedezze fel a MandrakeSoft oktatsi anyagait: Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
+msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -13872,21 +13959,21 @@ msgstr ""
"hogy megoszthassa ismereteit s elismert szakrtknt segtsget nyjthasson "
"msoknak a tmogatsi weboldalakon keresztl:"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
"Talljon megoldst a felmerl problmira a MandrakeSoft webes tmogatsi "
"rendszervel"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr "Legyen Mandrake-szakrt (MandrakeExpert)"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
@@ -13894,39 +13981,16 @@ msgid ""
msgstr ""
"Az sszes bejelentst a MandrakeSoft ugyanazon szakembere fogja kezelni"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr "Webes tmogatsi rendszer vllalati ignyekhez"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "Mandrake-szakrt - vllalati"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-"A MandrakeClub s a Mandrake Corporate Club a Mandrake Linux azon magn- "
-"illetve zleti felhasznlinak rszre lett ltrehozva, akik tmogatni "
-"szeretnk a disztribci fejlesztst. A tagok specilis lehetsgekhez is "
-"hozzjutnak. Ha meg van elgedve termkeinkkel, vagy a cge sikeresen "
-"hasznlja a rendszert zleti clokra, vagy egyszeren csak tmogatni "
-"szeretn a Mandrake Linux fejlesztst, csatlakozzon a MandrakeClubhoz!"
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
-"Fedezze fel a MandrakeClub s a Mandrake Corporate Club szolgltatsokat"
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -13944,6 +14008,8 @@ msgstr ""
#, c-format
msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
+"A /etc/hosts.allow s a /etc/hosts.deny mr be van lltva - nem lett "
+"mdostva"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -13988,16 +14054,17 @@ msgstr "Bellts mentse"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Dynamic IP Address Pool:"
-msgstr ""
+msgstr "Dinamikus IP-cm-kszlet:"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Most of these values were extracted\n"
"from your running system.\n"
"You can modify as needed."
msgstr ""
-"Az rtkek nagy rsze az aktulis rendszerbl szrmazik.\n"
+"Az rtkek nagy rsze az aktulis\n"
+"rendszerbl szrmazik.\n"
"Szksg esetn mdosthatja azokat."
#: ../../standalone/drakTermServ:1
@@ -14008,47 +14075,47 @@ msgstr "A dhcpd kiszolgl belltsa"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "IP Range End:"
-msgstr ""
+msgstr "Az IP-cmtartomny vge:"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "IP Range Start:"
-msgstr ""
+msgstr "Az IP-cmtartomny kezdete:"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "Name Servers:"
-msgstr "Samba-kiszolgl"
+msgstr "Nvkiszolglk:"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "Domain Name:"
-msgstr "Tartomnynv"
+msgstr "Tartomnynv:"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Broadcast Address:"
-msgstr ""
+msgstr "Broadcast-cm:"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Subnet Mask:"
-msgstr ""
+msgstr "Alhlzati maszk:"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Routers:"
-msgstr ""
+msgstr "tvlasztk:"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "Netmask:"
-msgstr "Hlzati maszk"
+msgstr "Hlzati maszk:"
#: ../../standalone/drakTermServ:1
#, c-format
msgid "Subnet:"
-msgstr ""
+msgstr "Alhlzat:"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -14056,6 +14123,9 @@ msgid ""
"Need to restart the Display Manager for full changes to take effect. \n"
"(service dm restart - at the console)"
msgstr ""
+"A mdostsok rvnybe lpshez jra kell indtani a "
+"bejelentkezskezelt. \n"
+"(service dm restart - a konzolon kiadva)"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -14063,14 +14133,14 @@ msgid "dhcpd Config..."
msgstr "dhcpd belltsa..."
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "Delete Client"
-msgstr "<-- Kliens trlse"
+msgstr "Kliens trlse"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "<-- Edit Client"
-msgstr "<-- Kliens trlse"
+msgstr "<-- Kliens szerkesztse"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -14078,14 +14148,14 @@ msgid "Add Client -->"
msgstr "Kliens felvtele -->"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "Allow Thin Clients"
-msgstr "Kliensek felvtele/trlse"
+msgstr "Vkony kliensek engedlyezse"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "Thin Client"
-msgstr "DHCP-kliens"
+msgstr "Vkony kliens"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -14093,9 +14163,9 @@ msgid "No net boot images created!"
msgstr "Hlzati indtsi fjlok nem lettek ltrehozva."
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "type: %s"
-msgstr "Tpus: "
+msgstr "tpus: %s"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -14114,6 +14184,10 @@ msgid ""
" the one in the Terminal Server database.\n"
"Delete/re-add the user to the Terminal Server to enable login."
msgstr ""
+"!!! jelentse: a rendszeradatbzisbeli jelsz nem azonos a\n"
+"terminlkiszolgl adatbzisban levvel.\n"
+"Tvoltsa el a felhasznlt, majd vegye fel jra a terminlkiszolglhoz,\n"
+"ha szeretn lehetv tenni a belpst."
#: ../../standalone/drakTermServ:1
#, c-format
@@ -14136,7 +14210,7 @@ msgid "Build All Kernels -->"
msgstr "Az sszes kernel elksztse -->"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid "No NIC selected!"
msgstr "Nincs kijellve NIC."
@@ -14301,6 +14375,137 @@ msgid ""
" \n"
"\n"
msgstr ""
+"drakTermServ - ttekints\n"
+"\n"
+" - Etherboot-kpes indtsi fjlok ltrehozsa:\n"
+" \t\tEgy kernel Etherboottal val indtshoz ltre kell hozni egy\n"
+" \t\tspecilis kernel-/initrd-kpmst. A feladat jelents rszt az\n"
+" \t\tmkinitrd-net vgzi el, a drakTermServ pedig grafikus felletet\n"
+" \t\tnyjt a kpmsfjlok kezelshez illetve belltshoz.\n"
+"\n"
+" - A /etc/dhcpd.conf fjl kezelse:\n"
+" \t\tAhhoz, hogy a kliensek hlzatrl indulhassanak, minden\n"
+" \t\tklienshez szksges egy dhcpd.conf-bejegyzs, amely IP-cmet s\n"
+" \t\thlzati indtsi kpmsokat rendel a gphez. A drakTermServ\n"
+" \t\tsegtsget nyjt ezen bejegyzsek elksztshez illetve\n"
+" \t\teltvoltshoz.\n"
+"\n"
+" \t\t(PCI-os krtyk esetn kihagyhat a kpms - az Etherboot krni\n"
+" \t\tfogja a megfelel kpmst. Figyelembe kell venni azt is, hogy\n"
+" \t\tamikor az Etherboot a kpmsokat keresi, olyan neveket vr,\n"
+" \t\tmint pldul 'boot-3c59x.nbi', nem pedig\n"
+" \t\t'boot-3c59x.2.4.19-16mdk.nbi'.)\n"
+"\n"
+" \t\tEgy lemez nlkli klienshez val dhcpd.conf-rszlet ltalban a\n"
+" \t\tkvetkezkppen nz ki:\n"
+"\n"
+" \t\thost curly {\n"
+" \t\t\thardware ethernet 00:20:af:2f:f7:9d;\n"
+" \t\t\tfixed-address 192.168.192.3;\n"
+" \t\t\t#type fat;\n"
+" \t\t\tfilename \"i386/boot/boot-3c509.2.4.18-"
+"6mdk.nbi\";\n"
+" \t\t}\n"
+"\n"
+" \t\tLehetsg van IP-cmtartomnyok hasznlatra (ahelyett, hogy\n"
+" \t\tminden klienshez egy-egy meghatrozott rtk lenne\n"
+" \t\thozzrendelve), viszont a rgztett cmkioszts hasznlata\n"
+" \t\telsegti a ClusterNFS ltal biztostott \"kliens-specifikus\n"
+" \t\tbelltsi fjlok\" lehetsg hasznlatt.\n"
+"\n"
+" \t\tMegjegyzs: A \"#type\" bejegyzst csak a drakTermServ\n"
+" \t\thasznlja. Egy kliens tpusa \"thin\" (vkony kliens) vagy\n"
+" \t\t\"fat\" (teljes rtk kliens) lehet. A vkony kliensek a\n"
+" \t\tlegtbb szoftvert a kiszolgli oldalon futtatjk (az xdmcp\n"
+" \t\tsegtsgvel), a teljes rtk kliensek pedig a kliensoldalon.\n"
+" \t\tLtezik egy specilis inittab a vkony kliensek szmra:\n"
+" \t\t\"/etc/inittab\\$\\$IP=kliens_ip\\$\\$\". Vkony kliensek\n"
+" \t\thasznlata esetn a kvetkez rendszerbelltsi fjlok\n"
+" \t\tmdostsra kerlnek az xdmcp hasznlatnak rdekben:\n"
+" \t\txdm-config, kdmrc, gdm.conf. Mivel az xdmcp hasznlatnak van\n"
+" \t\tbiztonsgi kockzata, ezrt a hosts.deny s a hosts.allow\n"
+" \t\tfjlok mdostsra kerlnek a helyi alhlzathoz val\n"
+" \t\thozzfrs korltozsa rdekben.\n"
+"\n"
+" \t\tMegjegyzs: Kliensek felvtele illetve mdostsa utn jra\n"
+" \t\tkell indtani a kiszolglt.\n"
+"\n"
+" - A /etc/exports fjl kezelse:\n"
+" \t\tA ClusterNFS lehetv teszi a gykr-fjlrendszernek a lemez\n"
+" \t\tnlkli kliensek szmra val exportlst. A drakTermServ\n"
+" \t\telvgzi a megfelel mdostst annak rdekben, hogy a lemez\n"
+" \t\tnlkli kliensek nvtelenl elrhessk a gykr-fjlrendszert.\n"
+"\n"
+" \t\tA ClusterNFS exports-bejegyzse ltalban a kvetkezkppen nz\n"
+" \t\tki:\n"
+"\n"
+" \t\t/ (ro,all_squash)\n"
+" \t\t/home ALHLZAT/MASZK(rw,root_squash)\n"
+"\n"
+" \t\tAz ALHLZAT/MASZK rtknek definilva kell lenni a hlzaton.\n"
+"\n"
+" - A /etc/shadow\\$\\$KLIENS\\$\\$ fjl kezelse:\n"
+" \t\tHogy a felhasznlk bejelentkezhessenek a rendszerbe egy lemez\n"
+" \t\tnlkli kliensrl, ahhoz t kell msolni a /etc/shadow fjlbeli\n"
+" \t\tbejegyzsket a /etc/shadow\\$\\$KLIENS\\$\\$ fjlba. A\n"
+" \t\tdrakTermServ ebbl a szempontbl is segtsget nyjt: a\n"
+" \t\tmegfelel rendszerfelhasznlkat felveszi ezen fjlba illetve\n"
+" \t\teltvoltja onnan.\n"
+"\n"
+" - Kliensenknti /etc/X11/XF86Config-4\\$\\$IP-CM\\$\\$:\n"
+" \t\tClusterNFS esetn az sszes lemez nlkli kliensnek lehetnek\n"
+" \t\tsajt belltsi fjljai a kiszolgl gykr-fjlrendszern. A\n"
+" \t\tjvben a drakTermServ kpes lesz majd ezen fjlok\n"
+" \t\telksztsben is segtsget nyjtani.\n"
+"\n"
+" - Kliensenknti rendszerbelltsi fjlok:\n"
+" \t\tClusterNFS esetn az sszes lemez nlkli kliensnek lehetnek\n"
+" \t\tsajt belltsi fjljai a kiszolgl gykr-fjlrendszern. A\n"
+" \t\tjvben a drakTermServ kpes lesz majd az effle fjlok\n"
+" \t\tkliensenknti elksztsben is segtsget nyjtani (pldul:\n"
+" \t\t/etc/modules.conf, /etc/sysconfig/mouse,\n"
+" \t\t/etc/sysconfig/keyboard).\n"
+"\n"
+" - /etc/xinetd.d/tftp:\n"
+" \t\tA drakTermServ mdostja ezen fjlt az mkinitrd-net ltal\n"
+" \t\tksztett kpmsokkal val mkdshez, tovbb mdostja a\n"
+" \t\t/etc/dhcpd.conf fjl bejegyzseit annak rdekben, hogy az\n"
+" \t\tindtsi kpmsok elrhetk legyenek a lemez nlkli kliensek\n"
+" \t\tszmra.\n"
+"\n"
+" \t\tA tftp belltsi fjlja ltalban a kvetkezkppen nz ki:\n"
+"\n"
+" \t\tservice tftp\n"
+" \t\t{\n"
+" \t\t\tdisable = no\n"
+" \t\t\tsocket_type = dgram\n"
+" \t\t\tprotocol = udp\n"
+" \t\t\twait = yes\n"
+" \t\t\tuser = root\n"
+" \t\t\tserver = /usr/sbin/in.tftpd\n"
+" \t\t\tserver_args = -s /var/lib/tftpboot\n"
+" \t\t}\n"
+"\n"
+" \t\tAz alaprtelmezett rtkeken a kvetkez mdostsok lesznek\n"
+" \t\tvgrehajtva: a \"disable\" jelz mdostsa \"no\" (\"nem\")\n"
+" \t\trtkre illetve a knyvtr tvonalnak mdostsa\n"
+" \t\t/var/lib/tftpboot rtkre (ahova az mkinitrd-net a kpmsait\n"
+" \t\thelyezi).\n"
+"\n"
+" - Etherboot floppyk illetve CD-k ltrehozsa:\n"
+" \t\tA lemez nlkli kliensgpeknek az indtsi folyamat\n"
+" \t\telindtshoz szksgk van NIC-beli ROM-kpmsokra vagy egy\n"
+" \t\tindtlemezre (floppy vagy CD). A drakTermServ segtsget nyjt\n"
+" \t\tezen kpmsok elksztsben - a kliensgp hlzati krtyja\n"
+" \t\talapjn.\n"
+"\n"
+" \t\tEgy alapvet plda egy indtsi lemez kzzel val elksztsre\n"
+" \t\t(3Com 3c509 krtya esetre):\n"
+"\n"
+" \t\tcat /usr/lib/etherboot/boot1a.bin \\\n"
+" \t\t\t/usr/lib/etherboot/lzrom/3c509.lzrom > /dev/fd0\n"
+"\n"
+"\n"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -14312,17 +14517,25 @@ msgid ""
"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
"\n"
msgstr ""
+"\n"
+"\n"
+" Ksznetnyilvnts:\n"
+"\t- LTSP Project http://www.ltsp.org\n"
+"\t- Michael Brown <mbrown\\@fensystems.co.uk>\n"
+"\n"
#: ../../standalone/drakTermServ:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
" Copyright (C) 2002 by MandrakeSoft \n"
"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
"\n"
msgstr ""
-" frisstsek: 2002, MandrakeSoft - Stew Benedict <sbenedict\\@mandrakesoft."
-"com>"
+"\n"
+" Copyright (C) 2002, MandrakeSoft \n"
+"\tStew Benedict sbenedict\\@mandrakesoft.com\n"
+"\n"
#: ../../standalone/drakTermServ:1
#, c-format
@@ -14571,7 +14784,7 @@ msgstr ""
"\t- rendszerfjlok\n"
"\t- felhasznli fjlok\n"
"\t- egyb fjlok\n"
-"\tvagy a teljes rendszer s az egyb adatok (pldul Windows partcik)\n"
+"\tvagy a teljes rendszer s az egyb adatok (pldul windowsos partcik)\n"
"\n"
" A DrakBackup a kvetkez helyekre kpes menteni:\n"
"\t- merevlemez\n"
@@ -16431,6 +16644,11 @@ msgstr "Mandrake Varzsl"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr "Mandrake Vezrlkzpont"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr "Mandrake hibabejelent program"
@@ -17397,6 +17615,28 @@ msgstr "\"%s\" csatol (a felhasznlt modul: %s)"
#: ../../standalone/drakgw:1
#, c-format
+msgid "Net Device"
+msgstr "Hlzati eszkz"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+"Adja meg az internetre csatlakoz hlzati csatol nevt.\n"
+"\n"
+"Pldk:\n"
+"\t\tppp+ - modem- vagy DSL-kapcsolat esetn\n"
+"\t\teth0 vagy eth1 - kbeles kapcsolat esetn\n"
+"\t\tippp+ - ISDN-kapcsolat esetn\n"
+
+#: ../../standalone/drakgw:1
+#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -17774,7 +18014,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -17785,8 +18025,8 @@ msgstr ""
"A kvetkez lpsben a szmtgpen belltsra kerl egy PXE-kiszolgl,\n"
"amely DHCP- s TFTP-szolgltatsokat lesz kpes nyjtani. Ez lehetv\n"
"teszi, hogy a gp teleptsi kiszolglknt funkcionljon a helyi hlzat\n"
-"ms gpei szmra, vagyis a tbbi gp telepthet lesz ezen gp\n"
-"segtsgvel.\n"
+"ms gpei szmra, vagyis a tbbi gp telepthet lesz ezen gpet\n"
+"hasznlva forrsknt.\n"
"\n"
"Mieltt tovbblpne, lltsa be a hlzat- illetve internetelrst\n"
"a DrakConnect programmal (ha ez mg nem trtnt meg).\n"
@@ -17987,6 +18227,11 @@ msgid "choose image file"
msgstr "vlasszon egy kpfjlt"
#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "vlasszon egy kpfjlt"
+
+#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
msgstr "Az indtsi kp belltsa"
@@ -18370,6 +18615,8 @@ msgid ""
"Once you've selected a device, you'll be able to see the device information "
"in fields displayed on the right frame (\"Information\")"
msgstr ""
+"Ha kijell egy eszkzt, akkor megjelennek az eszkz adatai a jobb oldali "
+"rszben (\"Informci\")"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18391,9 +18638,9 @@ msgid "Harddrake help"
msgstr "HardDrake segtsg"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "/_Fields description"
-msgstr "Lers"
+msgstr "/_Mezlersok"
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
@@ -18406,19 +18653,19 @@ msgid "/_Quit"
msgstr "/_Kilps"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "/Autodetect _jazz drives"
-msgstr "Automatikusan feldertve"
+msgstr "/_Jaz meghajtk automatikus feldertse"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "/Autodetect _modems"
-msgstr "Automatikusan feldertve"
+msgstr "/_Modemek automatikus feldertse"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "/Autodetect _printers"
-msgstr "Automatikusan feldertve"
+msgstr "/_Nyomtatk automatikus feldertse"
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
@@ -18428,12 +18675,12 @@ msgstr "/_Belltsok"
#: ../../standalone/harddrake2:1
#, c-format
msgid "the vendor name of the processor"
-msgstr "a processzor gyrtjnak neve"
+msgstr "A processzor gyrtjnak neve"
#: ../../standalone/harddrake2:1
#, c-format
msgid "the vendor name of the device"
-msgstr "az eszkz gyrtjnak neve"
+msgstr "Az eszkz gyrtjnak neve"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18443,17 +18690,17 @@ msgstr "Az egr ltal hasznlt busz tpusa"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Stepping of the cpu (sub model (generation) number)"
-msgstr ""
+msgstr "A CPU verzija (genercit jell al-modellszm)"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Model stepping"
-msgstr "terhelsbellts"
+msgstr "Verzi"
#: ../../standalone/harddrake2:1
#, c-format
msgid "the number of the processor"
-msgstr "a processzor szma"
+msgstr "A processzor szma"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18463,7 +18710,12 @@ msgstr "Processzorazonost"
#: ../../standalone/harddrake2:1
#, c-format
msgid "network printer port"
-msgstr "hlzati nyomtatport"
+msgstr "Hlzati nyomtatport"
+
+#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the name of the CPU"
+msgstr "A CPU neve"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18472,23 +18724,28 @@ msgstr "Nv"
#: ../../standalone/harddrake2:1
#, c-format
+msgid "the number of buttons the mouse has"
+msgstr "Az egr gombjainak szma"
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "Number of buttons"
msgstr "Gombok szma"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Official vendor name of the cpu"
-msgstr "az eszkz gyrtjnak neve"
+msgstr "A CPU gyrtjnak hivatalos neve"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Model name"
-msgstr "Modulnv"
+msgstr "Modellnv"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Generation of the cpu (eg: 8 for PentiumIII, ...)"
-msgstr ""
+msgstr "A CPU generciszma (pldul PentiumIII esetn ez 8)"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18498,12 +18755,12 @@ msgstr "Modell"
#: ../../standalone/harddrake2:1
#, c-format
msgid "hard disk model"
-msgstr "merevlemez-modell"
+msgstr "Merevlemez-modell"
#: ../../standalone/harddrake2:1
#, c-format
msgid "class of hardware device"
-msgstr "a hardvereszkz osztlya"
+msgstr "A hardvereszkz osztlya"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18513,22 +18770,22 @@ msgstr "Mdiaosztly"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Sub generation of the cpu"
-msgstr ""
+msgstr "A CPU algenercija"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Level"
-msgstr "szint"
+msgstr "Szint"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Format of floppies supported by the drive"
-msgstr ""
+msgstr "A meghajt ltal tmogatott lemezformtum"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Floppy format"
-msgstr "Formzs"
+msgstr "Floppyformtum"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18536,41 +18793,45 @@ msgid ""
"Some of the early i486DX-100 chips cannot reliably return to operating mode "
"after the \"halt\" instruction is used"
msgstr ""
+"A korai i486DX-100 processzorok kzl nem mindegyik kpes megbzhatan "
+"visszatrni mkdsi zemmdba a \"halt\" utasts vgrehajtsa utn"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Halt bug"
-msgstr ""
+msgstr "Halt-hiba"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Early pentiums were buggy and freezed when decoding the F00F bytecode"
msgstr ""
+"A korai Pentiumok hibsak voltak - az F00F bjtkd rtelmezsekor lefagytak"
#: ../../standalone/harddrake2:1
#, c-format
msgid "F00f bug"
-msgstr ""
+msgstr "F00F-hiba"
#: ../../standalone/harddrake2:1
#, c-format
msgid "yes means the arithmetic coprocessor has an exception vector attached"
msgstr ""
+"Ha igen, akkor az aritmetikai trsprocesszor rendelkezik kivtelvektorral"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Whether the FPU has an irq vector"
-msgstr ""
+msgstr "Van-e az FPU-nak IRQ-vektora"
#: ../../standalone/harddrake2:1
#, c-format
msgid "yes means the processor has an arithmetic coprocessor"
-msgstr ""
+msgstr "Ha igen, akkor a processzor rendelkezik aritmetikai trsprocesszorral"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Is FPU present"
-msgstr ""
+msgstr "Van-e FPU"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18579,26 +18840,28 @@ msgid ""
"processor which did not achieve the required precision when performing a "
"Floating point DIVision (FDIV)"
msgstr ""
+"A korai Intel Pentium processzorok lebegpontos egysge hibs - lebegpontos "
+"oszts esetn (fdiv) nem mindig a megfelel eredmnyt adtk"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Fdiv bug"
-msgstr ""
+msgstr "Fdiv-hiba"
#: ../../standalone/harddrake2:1
#, c-format
msgid "CPU flags reported by the kernel"
-msgstr ""
+msgstr "A kernel ltal kzlt CPU-tulajdonsgok"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Flags"
-msgstr ""
+msgstr "Jelzk (flag-ek)"
#: ../../standalone/harddrake2:1
#, c-format
msgid "the module of the GNU/Linux kernel that handles the device"
-msgstr "az eszkzt kezel linuxos kernelmodul"
+msgstr "Az eszkzt kezel linuxos kernelmodul"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18606,9 +18869,9 @@ msgid "Module"
msgstr "Modul"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "new dynamic device name generated by core kernel devfs"
-msgstr "a kernelbeli devfs ltal ellltott j dinamikus eszkznv"
+msgstr "A kernelbeli devfs ltal ellltott j dinamikus eszkznv"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18618,7 +18881,7 @@ msgstr "j devfs-eszkz"
#: ../../standalone/harddrake2:1
#, c-format
msgid "old static device name used in dev package"
-msgstr "a dev csomagban hasznlt rgi statikus eszkznv"
+msgstr "A dev csomagban hasznlt rgi statikus eszkznv"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18626,72 +18889,74 @@ msgid "Old device file"
msgstr "Rgi eszkzfjl"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "This field describes the device"
-msgstr "az eszkz lersa"
+msgstr "Ez a mez az eszkz lerst tartalmazza"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
+"A CPU rajele MHz-ben (Megahertz - ms tulajdonsgokkal egytt meghatrozza "
+"a CPU ltal msodpercenknt vgrehajtott utastsok szmt)"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Frequency (MHz)"
-msgstr ""
+msgstr "Frekvencia (MHz)"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Information level that can be obtained through the cpuid instruction"
-msgstr ""
+msgstr "A CPUID utastssal lekrdezhet informcik szintje"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Cpuid level"
-msgstr "Biztonsgi szint"
+msgstr "CPUID-szint"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Family of the cpu (eg: 6 for i686 class)"
-msgstr ""
+msgstr "A processzor csaldazonostja (pldul i686 esetn ez 6)"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Cpuid family"
-msgstr ""
+msgstr "A processzor csaldazonostja"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Whether this cpu has the Cyrix 6x86 Coma bug"
-msgstr ""
+msgstr "Tartalmazza-e a CPU a Cyrix 6x86 Coma hibt"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Coma bug"
-msgstr ""
+msgstr "Coma hiba"
#: ../../standalone/harddrake2:1
#, c-format
msgid "special capacities of the driver (burning ability and or DVD support)"
-msgstr ""
+msgstr "A meghajt specilis kpessgei (rsi kpessg s/vagy DVD-tmogats)"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Drive capacity"
-msgstr ""
+msgstr "A meghajt kpessgei"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Size of the (second level) cpu cache"
-msgstr ""
+msgstr "A processzor msodszint gyorstrnak mrete"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Cache size"
-msgstr "szeletmret"
+msgstr "Gyorstrmret"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18710,7 +18975,7 @@ msgid "Location on the bus"
msgstr "A buszon elfoglalt hely"
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"- PCI and USB devices: this lists the vendor, device, subvendor and "
"subdevice PCI/USB ids"
@@ -18730,11 +18995,14 @@ msgid ""
"initialize a timer counter. Its result is stored as bogomips as a way to "
"\"benchmark\" the cpu."
msgstr ""
+"Rendszerindtskor a Linux kernel inicializl egy idztsi szmllt egy "
+"szmllciklus segtsgvel. Ennek a mveletnek az eredmnye Bogomips "
+"rtkknt eltroldik, amely egyfajta CPU-sebessgi rtknek is felfoghat."
#: ../../standalone/harddrake2:1
#, c-format
msgid "Bogomips"
-msgstr ""
+msgstr "Bogomips"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18751,7 +19019,7 @@ msgstr "Csatorna"
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
msgstr ""
-"ez a fizikai busz, amelyre az eszkz csatlakoztatva van (PCI, USB, ...)"
+"Ez a fizikai busz, amelyre az eszkz csatlakoztatva van (PCI, USB, ...)"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18761,7 +19029,7 @@ msgstr "Busz"
#: ../../standalone/harddrake2:1
#, c-format
msgid "the list of alternative drivers for this sound card"
-msgstr "a hangkrtyhoz hasznlhat alternatv meghajtk"
+msgstr "A hangkrtyhoz hasznlhat alternatv meghajtk"
#: ../../standalone/harddrake2:1
#, c-format
@@ -18796,7 +19064,7 @@ msgstr ""
#: ../../standalone/livedrake:1
#, c-format
msgid "Change Cd-Rom"
-msgstr "Cserlje ki a CD lemezt"
+msgstr "Cserlje ki a CD-t"
#: ../../standalone/localedrake:1
#, c-format
@@ -19038,17 +19306,17 @@ msgid "Please choose your mouse type."
msgstr "Adja meg az egr tpust."
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Connect %s"
-msgstr "Csatlakozs"
+msgstr "Kapcsolds: %s"
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Disconnect %s"
-msgstr "A kapcsolat bontsa"
+msgstr "Lekapcsolds: %s"
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Warning, another internet connection has been detected, maybe using your "
"network"
@@ -19059,37 +19327,37 @@ msgstr ""
#: ../../standalone/net_monitor:1
#, c-format
msgid "received"
-msgstr ""
+msgstr "fogadott"
#: ../../standalone/net_monitor:1
#, c-format
msgid "transmitted"
-msgstr ""
+msgstr "tvitt"
#: ../../standalone/net_monitor:1
#, c-format
msgid "received: "
-msgstr ""
+msgstr "fogadva: "
#: ../../standalone/net_monitor:1
#, c-format
msgid "sent: "
-msgstr ""
+msgstr "elkldve: "
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Local measure"
-msgstr "Helyi fjlok"
+msgstr "Helyi mrs"
#: ../../standalone/net_monitor:1
#, c-format
msgid "average"
-msgstr ""
+msgstr "tlag"
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Color configuration"
-msgstr "figyelmeztets belltsa"
+msgstr "Sznbellts"
#: ../../standalone/net_monitor:1
#, c-format
@@ -19097,71 +19365,73 @@ msgid ""
"Connection failed.\n"
"Verify your configuration in the Mandrake Control Center."
msgstr ""
+"A kapcsolds nem sikerlt.\n"
+"Ellenrizze a belltsokat a Mandrake Vezrlkzpontban."
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Connection complete."
-msgstr "Csatlakozsi sebessg"
+msgstr "A kapcsolat ltrejtt."
#: ../../standalone/net_monitor:1
#, c-format
msgid "Disconnection from the Internet complete."
-msgstr ""
+msgstr "Az internetrl val lekapcsolds megtrtnt."
#: ../../standalone/net_monitor:1
#, c-format
msgid "Disconnection from the Internet failed."
-msgstr ""
+msgstr "Az internetrl val lekapcsolds nem sikerlt."
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Connecting to the Internet "
-msgstr "Csatlakozs az internethez"
+msgstr "Kapcsolds az internetre "
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Disconnecting from the Internet "
-msgstr "Csatlakozs az internethez"
+msgstr "Lekapcsolds az internetrl "
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Wait please, testing your connection..."
-msgstr "A kapcsolat ellenrzse..."
+msgstr "A kapcsolat tesztelse..."
#: ../../standalone/net_monitor:1
#, c-format
msgid "Logs"
-msgstr ""
+msgstr "Naplk"
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Connection Time: "
-msgstr "A csatlakozs tpusa: "
+msgstr "A kapcsolat idtartama: "
#: ../../standalone/net_monitor:1
#, c-format
msgid "Receiving Speed:"
-msgstr ""
+msgstr "Fogadsi sebessg:"
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Sending Speed:"
-msgstr "Fjlok kldse..."
+msgstr "Kldsi sebessg:"
#: ../../standalone/net_monitor:1
#, c-format
msgid "Statistics"
-msgstr ""
+msgstr "Statisztika"
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Profile "
-msgstr "Profil: "
+msgstr "Profil "
#: ../../standalone/net_monitor:1
-#, fuzzy, c-format
+#, c-format
msgid "Network Monitoring"
-msgstr "Hlzatbellts"
+msgstr "Hlzatfigyels"
#: ../../standalone/printerdrake:1
#, c-format
@@ -19171,94 +19441,94 @@ msgstr "A teleptett nyomtatk adatainak beolvassa..."
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Name/IP address of host:"
-msgstr ""
+msgstr "A gp neve/IP-cme:"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "This host is already in the list, it cannot be added again.\n"
-msgstr ""
+msgstr "Ez a gp mr szerepel a listban; nem vehet fel mg egyszer.\n"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Scannerdrake"
-msgstr "Lapolvas"
+msgstr "ScannerDrake"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "You must enter a host name or an IP address.\n"
-msgstr "Adja meg a gpnevet vagy az IP-cmet."
+msgstr "Meg kell adni egy gpnevet vagy egy IP-cmet.\n"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Choose the host on which the local scanners should be made available:"
-msgstr ""
+msgstr "Vlassza ki, melyik gpen legyenek elrhetk a helyi lapolvask:"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Sharing of local scanners"
-msgstr "Az elrhet nyomtatk"
+msgstr "A helyi lapolvask megosztsa"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "This machine"
-msgstr "(ezen a gpen)"
+msgstr "Ezen gp"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Remove selected host"
-msgstr "Kijelltek eltvoltsa"
+msgstr "A kijellt gp eltvoltsa"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Edit selected host"
-msgstr "detektlva: %s"
+msgstr "A kijellt gp szerkesztse"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Add host"
-msgstr "Felhasznl hozzadsa"
+msgstr "Gp felvtele"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "These are the machines from which the scanners should be used:"
-msgstr ""
+msgstr "A kvetkez gpek lapolvasinak hasznlata:"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Usage of remote scanners"
-msgstr "A szabad terlet felhasznlsa"
+msgstr "Tvoli lapolvask hasznlata"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "All remote machines"
-msgstr "(ezen a gpen)"
+msgstr "Az sszes tvoli gp"
#: ../../standalone/scannerdrake:1
#, c-format
msgid ""
"These are the machines on which the locally connected scanner(s) should be "
"available:"
-msgstr ""
+msgstr "A kvetkez gpek szmra elrhetk a helyi lapolvask:"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Use the scanners on hosts: "
-msgstr ""
+msgstr "A kvetkez gpeken lev lapolvask hasznlata: "
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Use scanners on remote computers"
-msgstr ""
+msgstr "Tvoli gpek lapolvasinak hasznlata"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Scanner sharing to hosts: "
-msgstr "Fjlmegoszts"
+msgstr "Lapolvask megosztsa a kvetkez gpek fel: "
#: ../../standalone/scannerdrake:1
#, c-format
msgid "The scanners on this machine are available to other computers"
-msgstr ""
+msgstr "A gp lapolvasi elrhetk ms gpek szmra"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -19266,6 +19536,8 @@ msgid ""
"You can also decide here whether scanners on remote machines should be made "
"available on this machine."
msgstr ""
+"Meghatrozhatja azt is, hogy a tvoli gpek lapolvasi elrhetk legyenek-e "
+"ezen a gpen."
#: ../../standalone/scannerdrake:1
#, c-format
@@ -19273,74 +19545,78 @@ msgid ""
"Here you can choose whether the scanners connected to this machine should be "
"accessable by remote machines and by which remote machines."
msgstr ""
+"Itt megadhat, hogy a gp lapolvasi elrhetk legyenek-e tvoli gpek "
+"szmra, s ha igen, akkor melyek szmra."
#: ../../standalone/scannerdrake:1
#, c-format
msgid "Re-generating list of configured scanners ..."
-msgstr ""
+msgstr "A belltott lapolvask listjnak jragenerlsa..."
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Searching for new scanners ..."
-msgstr "Az elrhet nyomtatk"
+msgstr "j lapolvask keresse..."
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Searching for configured scanners ..."
-msgstr "Az elrhet nyomtatk"
+msgstr "Belltott lapolvask keresse..."
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Scanner sharing"
-msgstr "Fjlmegoszts"
+msgstr "Lapolvask megosztsa"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Add a scanner manually"
-msgstr "Felhasznl kzi kivlasztsa"
+msgstr "Lapolvas felvtele sajt kezleg"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Search for new scanners"
-msgstr "Az elrhet nyomtatk"
+msgstr "j lapolvask keresse"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "There are no scanners found which are available on your system.\n"
-msgstr "Nem tallhat olyan nyomtat, amely a gphez kzvetlenl csatlakozna."
+msgstr "Nem tallhat elrhet lapolvas a gpen.\n"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The following scanner\n"
"\n"
"%s\n"
"is available on your system.\n"
msgstr ""
+"A kvetkez lapolvas elrhet az n gpn:\n"
"\n"
-"Egy ismeretlen nyomtat kzvetlenl csatlakozik a gphez"
+"%s\n"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The following scanners\n"
"\n"
"%s\n"
"are available on your system.\n"
msgstr ""
+"A kvetkez lapolvask elrhetk az n gpn:\n"
"\n"
-"Egy ismeretlen nyomtat kzvetlenl csatlakozik a gphez"
+"%s\n"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Your %s has been configured.\n"
"You may now scan documents using \"XSane\" from Multimedia/Graphics in the "
"applications menu."
msgstr ""
-"Az n \"%s\" lapolvasja belltsra kerlt.\n"
+"Az n \"%s\" eszkze belltsra kerlt.\n"
"Dokumentumok beolvassra hasznlhatja pldul az \"XSane\" programot, amely "
-"az alkalmazsmen \"Multimdia/Grafika\" rszben tallhat."
+"az alkalmazsmen \"Multimdia/Grafikus programok\" rszben tallhat."
#: ../../standalone/scannerdrake:1
#, c-format
@@ -19348,47 +19624,47 @@ msgid "choose device"
msgstr "vlassza ki az eszkzt"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Please select the device where your %s is attached"
-msgstr ""
-"A ScannerDrake nem tallta meg az n \"%s\" lapolvasjt.\n"
-"Vlassza ki, melyik eszkzhz csatlakozik a lapolvas."
+msgstr "Vlassza ki, melyik eszkzhz csatlakozik a(z) \"%s\" eszkz"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Searching for scanners ..."
-msgstr "Az elrhet nyomtatk"
+msgstr "Lapolvask keresse..."
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Auto-detect available ports"
-msgstr "Automatikusan feldertve"
+msgstr "Az elrhet portok automatikus feldertse"
#: ../../standalone/scannerdrake:1
#, c-format
msgid "(Note: Parallel ports cannot be auto-detected)"
msgstr ""
+"(Megjegyzs: a prhuzamos portokra nem alkalmazhat az automatikus "
+"felderts)"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The %s must be configured by printerdrake.\n"
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
-"A(z) \"%s\" lapolvast a PrinterDrake programmal lehet belltani.\n"
+"A(z) \"%s\" eszkzt a PrinterDrake programmal lehet belltani.\n"
"A PrinterDrake-et a Mandrake Vezrlkzpont \"Hardver\" rszben indthatja "
"el."
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "The %s is unsupported"
-msgstr "Ez a lapolvas nincs tmogatva: %s"
+msgstr "Ez az eszkz nincs tmogatva: %s"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "The %s is not known by this version of Scannerdrake."
-msgstr "A Mandrake Linux jelenleg hasznlt verzija nem tmogatja ezt: %s."
+msgstr "A ScannerDrake jelenleg hasznlt verzija nem tmogatja ezt: %s."
#: ../../standalone/scannerdrake:1
#, c-format
@@ -19396,29 +19672,29 @@ msgid "The %s is not supported by this version of Mandrake Linux."
msgstr "A Mandrake Linux jelenleg hasznlt verzija nem tmogatja ezt: %s."
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Port: %s"
-msgstr "Port"
+msgstr "Port: %s"
#: ../../standalone/scannerdrake:1
#, c-format
msgid ", "
-msgstr ""
+msgstr ", "
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Detected model: %s"
-msgstr "Felismert modell: %s %s"
+msgstr "Felismert modell: %s"
#: ../../standalone/scannerdrake:1
#, c-format
msgid " ("
-msgstr ""
+msgstr " ("
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "Select a scanner model"
-msgstr "Vlasszon egy lapolvast"
+msgstr "Vlasszon egy lapolvas-modellt"
#: ../../standalone/scannerdrake:1
#, c-format
@@ -19426,9 +19702,9 @@ msgid "%s is not in the scanner database, configure it manually?"
msgstr "\"%s\" nem szerepel a lapolvas-adatbzisban; belltja sajt kezleg?"
#: ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "%s found on %s, configure it automatically?"
-msgstr "\"%s\" tallhat itt: \"%s\"; kvnja belltani?"
+msgstr "\"%s\" tallhat itt: \"%s\"; szeretne automatikus belltst?"
#: ../../standalone/service_harddrake:1
#, c-format
@@ -19637,6 +19913,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr "Email-eszkzk, hrkezels, web-eszkzk, fjltvitel s csevegs"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Jtkok"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimdia - grafika"
@@ -19692,6 +19972,463 @@ msgstr "Szemlyes pnzgyek"
msgid "Programs to manage your finances, such as gnucash"
msgstr "Programok a szemlyes pnzgyek kezelshez (pldul: GnuCash)"
+#~ msgid "no network card found"
+#~ msgstr "nem talltam hlzati krtyt"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "and view animations with Mozilla and Konqueror, or read your mail and "
+#~ "handle your personal information with Evolution and Kmail"
+#~ msgstr ""
+#~ "A Mandrake Linux 9.1 rendszerben a legjobb programokat tallja. "
+#~ "Bngsszen a weben s nzzen animcikat a Mozillval vagy a "
+#~ "Konquerorral; olvassa leveleit s kezelje szemlyes informciit az "
+#~ "Evolutionnel vagy a KMaillel; ..."
+
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Hasznlja fel az internet szolgltatsait"
+
+#~ msgid "Push multimedia to its limits!"
+#~ msgstr "Hasznlja ki a multimdia lehetsgeit!"
+
+#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
+#~ msgstr "Fedezze fel a legjabb grafikai s multimdis eszkzket!"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "A Mandrake Linux 9.1 a nylt forrskd jtkok legjobbjt nyjtja - "
+#~ "gyessgi jtkok, akci, stratgia, ..."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ "A Mandrake Linux 9.1 Vezrlkzponttal testreszabhat s bellthat az "
+#~ "egsz rendszer"
+
+#~ msgid "User interfaces"
+#~ msgstr "Felhasznli felletek"
+
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+#~ "Hasznlja fel a GNU GCC 3 fordt s a legjobb nylt forrskd "
+#~ "fejlesztkrnyezetek erejt"
+
+#~ msgid "Development simplified"
+#~ msgstr "Egyszer fejleszts"
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ "Ez a tzfaltermk olyan hlzati funkcikat valst meg, amelyek az "
+#~ "sszes biztonsgi ignynek megfelelnek"
+
+#~ msgid ""
+#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
+#~ "N.F.)"
+#~ msgstr ""
+#~ "A MandrakeSecurity termkek kzt megtallhat a Multi Network Firewall "
+#~ "nev tzfal (M.N.F.)"
+
+#~ msgid "Strategic partners"
+#~ msgstr "Stratgiai partnerek"
+
+#~ msgid ""
+#~ "Whether you choose to teach yourself online or via our network of "
+#~ "training partners, the Linux-Campus catalogue prepares you for the "
+#~ "acknowledged LPI certification program (worldwide professional technical "
+#~ "certification)"
+#~ msgstr ""
+#~ "Akr a weben keresztl tanul, akr az oktatsi partnereinken keresztl, a "
+#~ "Linux-Campus oktatsi anyag felkszti nt az elismert vilgmret "
+#~ "professzionlis LPI vizsgaprogramra"
+
+#~ msgid "Certify yourself on Linux"
+#~ msgstr "Szerezzen linuxos kpestst"
+
+#~ msgid ""
+#~ "The training program has been created to respond to the needs of both end "
+#~ "users and experts (Network and System administrators)"
+#~ msgstr ""
+#~ "Az oktatsi programot a vgfelhasznlk s a szakrtk (hlzati- s "
+#~ "rendszeradminisztrtorok) ignyei alapjn hoztuk ltre"
+
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr "Fedezze fel a MandrakeSoft oktatsi anyagait: Linux-Campus"
+
+#~ msgid ""
+#~ "MandrakeClub and Mandrake Corporate Club were created for business and "
+#~ "private users of Mandrake Linux who would like to directly support their "
+#~ "favorite Linux distribution while also receiving special privileges. If "
+#~ "you enjoy our products, if your company benefits from our products to "
+#~ "gain a competititve edge, if you want to support Mandrake Linux "
+#~ "development, join MandrakeClub!"
+#~ msgstr ""
+#~ "A MandrakeClub s a Mandrake Corporate Club a Mandrake Linux azon magn- "
+#~ "illetve zleti felhasznlinak rszre lett ltrehozva, akik tmogatni "
+#~ "szeretnk a disztribci fejlesztst. A tagok specilis lehetsgekhez "
+#~ "is hozzjutnak. Ha meg van elgedve termkeinkkel, vagy a cge sikeresen "
+#~ "hasznlja a rendszert zleti clokra, vagy egyszeren csak tmogatni "
+#~ "szeretn a Mandrake Linux fejlesztst, csatlakozzon a MandrakeClubhoz!"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr ""
+#~ "Fedezze fel a MandrakeClub s a Mandrake Corporate Club szolgltatsokat"
+
+#~ msgid ""
+#~ "As a review, DrakX will present a summary of various information it has\n"
+#~ "about your system. Depending on your installed hardware, you may have "
+#~ "some\n"
+#~ "or all of the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary.\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Country\": check the current country selection. If you are not in "
+#~ "this\n"
+#~ "country, click on the button and choose another one.\n"
+#~ "\n"
+#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+#~ "primary language you have chosen. But here, just as in your choice of a\n"
+#~ "keyboard, you may not be in a country to which the chosen language\n"
+#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
+#~ "configure the clock for the correct timezone.\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation.\n"
+#~ "\n"
+#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+#~ "click that button. This should be reserved to advanced users.\n"
+#~ "\n"
+#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+#~ "interface in \"800x600\" resolution. If that does not suits you, click "
+#~ "on\n"
+#~ "the button to reconfigure your graphical interface.\n"
+#~ "\n"
+#~ " * \"Network\": If you want to configure your Internet or local network\n"
+#~ "access now, you can by clicking on this button.\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. If you notice the sound card displayed is not the one "
+#~ "that\n"
+#~ "is actually present on your system, you can click on the button and "
+#~ "choose\n"
+#~ "another driver.\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. If you have a TV card and it is not detected, click on the button "
+#~ "to\n"
+#~ "try to configure it manually.\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with the card."
+#~ msgstr ""
+#~ "Itt a gprl sszegyjttt adatokat lthatja. A teleptett hardvertl\n"
+#~ "fggen a kvetkezk jelenhetnek meg:\n"
+#~ "\n"
+#~ " - \"Egr\": ellenrizze a jelenlegi egrbelltsokat; a "
+#~ "mdostsukhoz\n"
+#~ "kattintson a gombra.\n"
+#~ "\n"
+#~ " - \"Billentyzet\": ellenrizze a jelenlegi billentyzet-kiosztst; a\n"
+#~ "mdostshoz kattintson a gombra.\n"
+#~ "\n"
+#~ " - \"Orszg\": ellenrizze a jelenlegi orszgbelltst. Ha az nem\n"
+#~ "megfelel, kattintson a gombra s vlasszon egy msik orszgot.\n"
+#~ "\n"
+#~ " - \"Idzna\": a telept alaprtelmezsben felknl egy ltala\n"
+#~ "megfelelnek tartott idzna-belltst, amelyet az n ltal "
+#~ "kivlasztott\n"
+#~ "elsdleges nyelv alapjn hatroz meg. Ugyangy, mint a billentyzet "
+#~ "esetn,\n"
+#~ "itt is elkpzelhet, hogy n nem abban az orszgban tartzkodik, amelyre\n"
+#~ "a kivlasztott nyelv alapjn kvetkeztetni lehet. Ezrt szksg lehet\n"
+#~ "arra, hogy az \"Idzna\" gombra kattintson - hogy az rt a megfelel\n"
+#~ "idznhoz igaztsa.\n"
+#~ "\n"
+#~ " - \"Nyomtat\": a \"Nincs nyomtat\" gombra kattintva elindul a\n"
+#~ "nyomtatbelltsi varzsl. Nyomtatbelltssal kapcsolatos tovbbi\n"
+#~ "informcikat a felhasznli kziknyvbl lehet szerezni. Az ott\n"
+#~ "bemutatott fellet hasonl ahhoz, ami a teleptskor megjelenik.\n"
+#~ "\n"
+#~ " - \"Rendszerbetlt\": ha szeretn mdostani a rendszerbetlt\n"
+#~ "belltsait, kattintson a megfelel gombra. Elssorban a komolyabb\n"
+#~ "ismeretekkel rendelkez felhasznlknak javasolt.\n"
+#~ "\n"
+#~ " - \"Grafikus fellet\": a telept alaprtelmezsben \"800x600\"-as\n"
+#~ "felbontst llt be a grafikus fellethez. Ha ez nem felel meg nnek,\n"
+#~ "kattintson a gombra a grafikus fellet belltsainak mdostshoz.\n"
+#~ "\n"
+#~ " - \"Hlzat\": ha be szeretn lltani az internet vagy a helyi "
+#~ "hlzat\n"
+#~ "elrst most, akkor kattintson a gombra.\n"
+#~ "\n"
+#~ " - \"Hangkrtya\": ha a telept hangkrtyt szlel a gpben, az itt "
+#~ "fog\n"
+#~ "megjelenni. Ha az itt megjelen hangkrtya nem azonos a gpben levvel,\n"
+#~ "akkor kattintson a gombra s vlasszon egy msik meghajtprogramot.\n"
+#~ "\n"
+#~ " - \"Tvkrtya\": ha a telept tvkrtyt szlel a gpben, az itt\n"
+#~ "fog megjelenni. Ha a telept nem szleli a gpben lev tvkrtyt,\n"
+#~ "akkor kattintson a gombra s lltsa be kzzel.\n"
+#~ "\n"
+#~ " - \"ISDN-krtya\": ha a telept ISDN-krtyt szlel a gpben, az itt "
+#~ "fog\n"
+#~ "megjelenni. Ha a gombra kattint, mdosthatja a krtya paramtereit."
+
+#~ msgid ""
+#~ "LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
+#~ "what it finds there:\n"
+#~ "\n"
+#~ " * if a Windows boot sector is found, it will replace it with a grub/"
+#~ "LILO\n"
+#~ "boot sector. This way you will be able to load either GNU/Linux or "
+#~ "another\n"
+#~ "OS.\n"
+#~ "\n"
+#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
+#~ "one.\n"
+#~ "\n"
+#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
+#~ "bootloader.\n"
+#~ "\n"
+#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
+#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
+#~ "disk\n"
+#~ "(\"On Floppy\").\n"
+#~ "\n"
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "A LILO s a GRUB linuxos rendszerindt programok. Ez a fzis ltalban\n"
+#~ "teljesen automatikus. A telept elemzi a lemez betltszektort, s\n"
+#~ "annak megfelelen cselekszik, hogy ott mit tall:\n"
+#~ "\n"
+#~ " - Ha windowsos betltszektort tall, akkor azt helyettesteni fogja "
+#~ "egy\n"
+#~ "GRUB/LILO betltszektorral. Ezrt nnek lehetsge lesz arra is, hogy\n"
+#~ "Linuxt indtson, s arra is, hogy egy msik opercis rendszert.\n"
+#~ "\n"
+#~ " - Ha GRUB vagy LILO betltszektort tall, helyettesti azt egy j\n"
+#~ "pldnnyal.\n"
+#~ "\n"
+#~ "Ha a telept nem tud dnteni, akkor krdst tesz fel nnek a\n"
+#~ "rendszerindt elhelyezsvel kapcsolatban.\n"
+#~ "\n"
+#~ "\"Rendszerindtsi eszkz\": a legtbb esetben nincs szksg az\n"
+#~ "alaprtelmezett rtk (\"A lemezmeghajt legels szektora (MBR)\")\n"
+#~ "mdostsra, de ha kvnja, a rendszerbetlt telepthet a msodik\n"
+#~ "merevlemezre (\"/dev/hdb\"), vagy akr floppylemezre (\"Hajlkonylemez"
+#~ "\").\n"
+#~ "\n"
+#~ "Az \"Indtlemez ksztse\" opci bejellsvel rendszerindtsra kpes\n"
+#~ "helyrelltlemezt kszthet.\n"
+#~ "\n"
+#~ "A Mandrake Linux CD rendelkezik beptett helyrelltsi zemmddal. "
+#~ "Ezen\n"
+#~ "zemmd a kvetkezkppen rhet el: indtsa a rendszert a CD-rl, majd\n"
+#~ "nyomja le az \"F1\" billentyt, s gpelje be a megjelen parancssorban\n"
+#~ "azt, hogy \"rescue\". Ha viszont a gp nem kpes CD-rl val\n"
+#~ "rendszerindtsra, akkor legalbb kt olyan eset van, amelyben szksg "
+#~ "van\n"
+#~ "egy rendszerindtsi floppy elksztsre:\n"
+#~ "\n"
+#~ " - A rendszerbetlt teleptsekor (hacsak n nem hasznl ms\n"
+#~ "rendszerindt programot) a telept mdostja a f lemez\n"
+#~ "betltszektort (boot sector; ms nven: MBR) annak rdekben, hogy\n"
+#~ "tbbfle opercis rendszert is be lehessen tlteni (pldul: Linux\n"
+#~ "s Windows - ha van a gpen Windows). Ha n jratelepti a Windowst, "
+#~ "akkor\n"
+#~ "a Microsoft-fle telept t fogja rni a betltszektort, s emiatt n "
+#~ "nem\n"
+#~ "lesz kpes Linuxt indtani.\n"
+#~ "\n"
+#~ " - Ha problma merl fel, s n nem tudja elindtani a Linux rendszert\n"
+#~ "a merevlemezrl, akkor ezen floppy fogja jelenteni az egyetlen "
+#~ "lehetsget\n"
+#~ "arra, hogy elindtsa a rendszert. A floppy programokat tartalmaz a "
+#~ "rendszer\n"
+#~ "helyrelltshoz (arra az esetre, ha pldul ramkimarads trtnt, "
+#~ "vagy\n"
+#~ "a felhasznl elfelejtette a rendszergazdai jelszt).\n"
+#~ "\n"
+#~ "Ha kri ennek a lpsnek a vgrehajtst, akkor a telept megkri nt\n"
+#~ "arra, hogy tegyen be egy floppyt a meghajtba. gyeljen arra, hogy a\n"
+#~ "floppylemezen ne legyen megrzsre sznt adat. A lemezt nem szksges\n"
+#~ "elzetesen formzni, mivel a telept fellrja a teljes lemez tartalmt."
+
+#~ msgid ""
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "Az \"Indtlemez ksztse\" opci bejellsvel rendszerindtsra kpes\n"
+#~ "helyrelltlemezt kszthet.\n"
+#~ "\n"
+#~ "A Mandrake Linux CD rendelkezik beptett helyrelltsi zemmddal. "
+#~ "Ezen\n"
+#~ "zemmd a kvetkezkppen rhet el: indtsa a rendszert a CD-rl, majd\n"
+#~ "nyomja le az \"F1\" billentyt, s gpelje be a megjelen parancssorban\n"
+#~ "azt, hogy \"rescue\". Ha viszont a gp nem kpes CD-rl val\n"
+#~ "rendszerindtsra, akkor legalbb kt olyan eset van, amelyben szksg "
+#~ "van\n"
+#~ "egy rendszerindtsi floppy elksztsre:\n"
+#~ "\n"
+#~ " - A rendszerbetlt teleptsekor (hacsak n nem hasznl ms\n"
+#~ "rendszerindt programot) a telept mdostja a f lemez\n"
+#~ "betltszektort (boot sector; ms nven: MBR) annak rdekben, hogy\n"
+#~ "tbbfle opercis rendszert is be lehessen tlteni (pldul: Linux\n"
+#~ "s Windows - ha van a gpen Windows). Ha n jratelepti a Windowst, "
+#~ "akkor\n"
+#~ "a Microsoft-fle telept t fogja rni a betltszektort, s emiatt n "
+#~ "nem\n"
+#~ "lesz kpes Linuxt indtani.\n"
+#~ "\n"
+#~ " - Ha problma merl fel, s n nem tudja elindtani a Linux rendszert\n"
+#~ "a merevlemezrl, akkor ezen floppy fogja jelenteni az egyetlen "
+#~ "lehetsget\n"
+#~ "arra, hogy elindtsa a rendszert. A floppy programokat tartalmaz a "
+#~ "rendszer\n"
+#~ "helyrelltshoz (arra az esetre, ha pldul ramkimarads trtnt, "
+#~ "vagy\n"
+#~ "a felhasznl elfelejtette a rendszergazdai jelszt).\n"
+#~ "\n"
+#~ "Ha kri ennek a lpsnek a vgrehajtst, akkor a telept megkri nt\n"
+#~ "arra, hogy tegyen be egy floppyt a meghajtba. gyeljen arra, hogy a\n"
+#~ "floppylemezen ne legyen megrzsre sznt adat. A lemezt nem szksges\n"
+#~ "elzetesen formzni, mivel a telept fellrja a teljes lemez tartalmt."
+
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "A kvetkez nyomtatk vannak belltva. Ha mdostani szeretn egy "
+#~ "nyomtat belltsait, vagy alaprtelmezett kvn tenni egy nyomtatt, "
+#~ "vagy le szeretn krdezni egy nyomtat adatait, vagy egy tvoli CUPS-"
+#~ "kiszolgln lev nyomtatt elrhetv szeretne tenni a StarOffice/"
+#~ "OpenOffice.org/GIMP program szmra, akkor kattintson dupln a megfelel "
+#~ "nyomtatra."
+
+#~ msgid ""
+#~ "You are about to configure your computer to install a PXE server as a "
+#~ "DHCP server\n"
+#~ "and a TFTP server to build an installation server.\n"
+#~ "With that feature, other computers on your local network will be "
+#~ "installable using from this computer.\n"
+#~ "\n"
+#~ "Make sure you have configured your Network/Internet access using "
+#~ "drakconnect before going any further.\n"
+#~ "\n"
+#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
+#~ "(LAN)."
+#~ msgstr ""
+#~ "A kvetkez lpsben a szmtgpen belltsra kerl egy PXE-"
+#~ "kiszolgl,\n"
+#~ "amely DHCP- s TFTP-szolgltatsokat lesz kpes nyjtani. Ez lehetv\n"
+#~ "teszi, hogy a gp teleptsi kiszolglknt funkcionljon a helyi "
+#~ "hlzat\n"
+#~ "ms gpei szmra, vagyis a tbbi gp telepthet lesz ezen gp\n"
+#~ "segtsgvel.\n"
+#~ "\n"
+#~ "Mieltt tovbblpne, lltsa be a hlzat- illetve internetelrst\n"
+#~ "a DrakConnect programmal (ha ez mg nem trtnt meg).\n"
+#~ "\n"
+#~ "Megjegyzs: helyi hlzat (LAN) ltrehozshoz szksg lesz egy "
+#~ "specilisan\n"
+#~ "erre a clra hasznlt hlzati csatolra."
+
+#~ msgid ""
+#~ "The cpu frequency in Mhz (Mega herz which in first approximation may be "
+#~ "coarsely assimilated to number of instructions the cpu is able to execute "
+#~ "per second)"
+#~ msgstr ""
+#~ "A CPU rajele MHz-ben (Megahertz - ms tulajdonsgokkal egytt "
+#~ "meghatrozza a CPU ltal msodpercenknt vgrehajtott utastsok szmt)"
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index 33344efcd..f6729f8cf 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -9,7 +9,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 0.1\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2002-09-30 19:34+0900\n"
"Last-Translator: Budi Rachmanto <rac@linux-mandrake.com>\n"
"Language-Team: Bahasa Indonesia <id@li.org>\n"
@@ -1083,80 +1083,70 @@ msgstr ""
"tak dapat dikembalikan seperti semula!"
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
-msgstr ""
-"Di sini disajikan macam-macam parameter mesin Anda. Tergantung hardware yg\n"
-"ter-instal, Anda dapat - atau tidak, melihat entri berikut:\n"
-"\n"
-" * \"Mouse\": cek konfigurasi mouse, klik tombol utk mengubahnya bila perlu\n"
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
"\n"
-" * \"Papanketik\": cek konfigurasi map papanketik, klik tombol utk "
-"mengubahnya\n"
-"bila perlu.\n"
-"\n"
-" * \"Zona waktu\": DrakX menerka zona waktu Anda dari bahasa yg Anda pilih.\n"
-"Tapi sekali lagi seperti pilihan papanketik, Anda mungkin tak berada di "
-"negri\n"
-"yang selaras dg bahasa terpilih. Jadi Anda mungkin perlu menekan tombol\n"
-"\"Zona waktu\" utk mengkonfigurasikan jam sesuai zona waktu tempat Anda.\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
"\n"
-" * \"Printer\": klik \"No Printer\" utk membuka dukun konfigurasi printer.\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
"\n"
-" * \"Kartu suara\": kartu suara terdeteksi di sistem Anda akan ditampilkan\n"
-"di sini. Tiada modifikasi yg dapat dilakukan saat instalasi.\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
"\n"
-" * \"Kartu TV\": kartu TV yg terdeteksi di sistem Anda akan ditampilkan di\n"
-"sini. Tiada modifikasi yg dapat dilakukan saat instalasi.\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
"\n"
-" * \"Kartu ISDN\": kartu ISDN yg terdeteksi di sistem Anda akan ditampilkan\n"
-"di sini. Anda dapat meng-klik tombol utk mengubah parameternya."
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
+msgstr ""
#: ../../help.pm:1
#, c-format
@@ -1328,13 +1318,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1379,7 +1364,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1423,7 +1408,7 @@ msgstr ""
"di network."
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
"automated. DrakX will analyze the disk boot sector and act according to\n"
@@ -1442,52 +1427,8 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"CDROM Mandrake Linux punya mode pertolongan built-in, yg bisa diakses dg\n"
-"mem-boot dari CDROM, tekan >>F1<< dan ketik >>rescue<< di prompt. Tapi jika\n"
-"komputer Anda tak dapat mem-boot dari CDROM, kembalilah ke tahap ini untuk\n"
-"pertolongan dalam setidaknya 2 situasi:\n"
-"\n"
-" * saat instalasi bootloader, DrakX akan menulis ulang sektor boot (MBR)\n"
-"disk utama Anda (kecuali jika Anda memakai manajer boot lain) sehingga Anda\n"
-"dapat menjalankan GNU/Linux atau Mindows (jika Anda punya Mindows di sistem\n"
-"Anda). Jika Anda menginstal Mindows lagi, proses instal microsoft akan\n"
-"menulis ulang sektor boot, dan Anda takkan dapat menjalankan GNU/Linux!\n"
-"\n"
-" * jika ada masalah sehingga Anda tak dapat menjalankan GNU/Linux dari hard\n"
-"disk, disket ini adalah jalan satu-satunya utk menjalankan GNU/Linux. Ini\n"
-"berisi sejumlah alat utk mereparasi sistem yg rusak karena kegagalan power,\n"
-"salah ketik, alpa kata sandi, dan lain-lain.\n"
-"\n"
-"Jika \"Ya\", Anda akan diminta memasukkan disket ke drive. Disket\n"
-"harus kosong / berisi data yg tak Anda perlukan. Tak perlu diformat sebab\n"
-"DrakX akan menulis ulang seluruh disket."
+"(\"On Floppy\")."
+msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
@@ -1719,9 +1660,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1798,7 +1744,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -2006,9 +1954,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -2025,14 +1971,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
"Saat Mandrake Linux diinstal, nampaknya beberapa paket telah diupdate sejak\n"
"rilis awal. Beberapa kutu mungkin telah diperbaiki, dan masalah keamanan\n"
@@ -2103,7 +2049,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2189,7 +2135,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2214,13 +2160,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"Pada tahap ini, pilihlah tempat Mandrake Linux akan diinstal di harddisk.\n"
"Bila harddisk masih kosong / ada sistem operasi lain yg mengisi seluruhnya,\n"
@@ -2279,54 +2225,6 @@ msgstr ""
"dg mudah. Jangan pilih kecuali Anda tahu yg Anda lakukan."
#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"CDROM Mandrake Linux punya mode pertolongan built-in, yg bisa diakses dg\n"
-"mem-boot dari CDROM, tekan >>F1<< dan ketik >>rescue<< di prompt. Tapi jika\n"
-"komputer Anda tak dapat mem-boot dari CDROM, kembalilah ke tahap ini untuk\n"
-"pertolongan dalam setidaknya 2 situasi:\n"
-"\n"
-" * saat instalasi bootloader, DrakX akan menulis ulang sektor boot (MBR)\n"
-"disk utama Anda (kecuali jika Anda memakai manajer boot lain) sehingga Anda\n"
-"dapat menjalankan GNU/Linux atau Mindows (jika Anda punya Mindows di sistem\n"
-"Anda). Jika Anda menginstal Mindows lagi, proses instal microsoft akan\n"
-"menulis ulang sektor boot, dan Anda takkan dapat menjalankan GNU/Linux!\n"
-"\n"
-" * jika ada masalah sehingga Anda tak dapat menjalankan GNU/Linux dari hard\n"
-"disk, disket ini adalah jalan satu-satunya utk menjalankan GNU/Linux. Ini\n"
-"berisi sejumlah alat utk mereparasi sistem yg rusak karena kegagalan power,\n"
-"salah ketik, alpa kata sandi, dan lain-lain.\n"
-"\n"
-"Jika \"Ya\", Anda akan diminta memasukkan disket ke drive. Disket\n"
-"harus kosong / berisi data yg tak Anda perlukan. Tak perlu diformat sebab\n"
-"DrakX akan menulis ulang seluruh disket."
-
-#: ../../help.pm:1
#, c-format
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
@@ -2469,7 +2367,8 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2501,7 +2400,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -4078,6 +3977,12 @@ msgstr "Servis"
msgid "System"
msgstr "Sistem"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "Port"
+
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
@@ -4508,6 +4413,11 @@ msgstr "Pilihlah tipe mouse Anda."
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Kunci sandi"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "Upgrade"
@@ -9284,11 +9194,6 @@ msgstr "Konfigureasi jaringan"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "kartu jaringan tak ditemukan"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr "Pilih adapter jaringan yang akan digunakan untuk terhubung ke Internet"
@@ -10575,19 +10480,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-"Printer berikut telah dikonfigurasikan. Klik-dobel printer utk memodifikasi "
-"setting; membuatnya printer default; atau melihat info tentangnya; atau "
-"membuat printer di server CUPS remote dapat dipakai oleh Star Office/"
-"OpenOffice.org/GIMP."
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr "Sistem cetak: "
@@ -11202,6 +11094,11 @@ msgid "Option %s must be an integer number!"
msgstr "Opsi %s harus berupa integer!"
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Seleksi model printer"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -13022,15 +12919,15 @@ msgstr "Selamat Datang di Crackers"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
"Sukses MandrakeSoft berdasar prinsip Perangkat Lunak Bebas. OS baru Anda "
"adalah hasil kerja kolaborasi Komunitas Linux seluruh dunia"
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr "Selamat datang di dunia Source Terbuka"
#: ../../share/advertising/01-thanks.pl:1
@@ -13041,217 +12938,165 @@ msgstr "Terima kasih memilih Mandrake Linux 9.1"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
"Untuk berbagi pengetahuan dan membantu membangun peralatan Linux, mari "
"bergabung dalam forum diskusi yg tertera di halaman web \"Komunitas\" kami"
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr "Ingin tahu lebih tentang komunitas Open Source?"
-
-#: ../../share/advertising/02-community.pl:1
-#, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Gabung dunia Perangkat Lunak Bebas"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
-"Mandrake Linux 9.1 menyajikan software terbaik. Jelajah web dan lihat "
-"animasi dengan Mozilla dan Konqueror, atau baca email dan atur info pribadi "
-"Anda dengan Evolution dan Kmail"
+"Ingin tahu lebih tentang komunitas Open Source? Gabung dunia Perangkat Lunak "
+"Bebas!"
-#: ../../share/advertising/03-internet.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Get the most from the Internet"
-msgstr "Ambil yang paling Wah! dari Internet"
+msgid "Build the future of Linux!"
+msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
"Mandrake Linux 9.1 memungkinkan Anda menggunakan software mutakhir untuk "
"memainkan file audio, edit dan mengatur gambar/foto, dan melihat video"
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr "Dorong multimedia hingga tapal batas!"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr "Temukan perlengkapan grafis dan multimedia terbaru!"
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-"Mandrake Linux menyediakan game Open Source terbaik - arcade, aksi, kartu, "
-"olah raga, strategi, ..."
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Games"
-msgstr "Game"
+msgid "MandrakeSoft has selected the best software for you"
+msgstr ""
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-"Mandrake Linux menyediakan alat perkasa untuk mengkonfigurasi mesin Anda"
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, c-format
-msgid "Mandrake Control Center"
-msgstr "Pusat Kontrol Mandrake"
+#: ../../share/advertising/04-configuration.pl:1
+#, fuzzy, c-format
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Konfigurasi Server Terminal Mandrake"
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
"Mandrake Linux menyediakan 11 antarmuka pengguna yang dapat dimodifikasi: "
"KDE 3, Gnome 2, WindowMaker, ..."
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "User interfaces"
-msgstr "Antarmuka pengguna"
+msgid "A customizable environment"
+msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-"Gunakan power compiler gcc GNU, juga lingkungan bangun Open Source terbaik"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr "Mandrake Linux adalah platform bangun terampuh"
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Development simplified"
-msgstr "Pemrograman dipermudah"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
"Jadikan mesin Anda server perkasa dengan hanya beberapa klik mouse: server "
"Web, email, firewall, router, server file dan cetak, ..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Turn your computer into a reliable server"
msgstr "Jadikan mesin Anda server yang handal"
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "This product is available on MandrakeStore website"
-msgstr "Produk ini tersedia di situs MandrakeStore"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
-"Produk firewall ini mencakup fitur jaringan yang memungkinkan Anda memenuhi "
-"semua kebutuhan sekuritas"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
-msgstr "MandrakeSecurity mencakup produk Multi Network Firewall (M.N.F.)"
-
-#: ../../share/advertising/10-mnf.pl:1
-#, c-format
-msgid "Optimize your security"
-msgstr "Optimasi keamanan"
-
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
"Solusi Linux lengkap, termasuk sajian khusus produk dan \"goodies\" lain, "
"tersedia online di e-store kami:"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "The official MandrakeSoft Store"
msgstr "Toko resmi MandrakeSoft"
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
+#: ../../share/advertising/09-mdksecure.pl:1
+#, fuzzy, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
"MandrakeSoft bekerjasama dengan sejumlah perusahaan penyedia solusi "
"profesional yang kompatibel dengan Mandrake Linux. Daftar mitra ada di "
"MandrakeStore"
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
-msgstr "Mitra strategis"
+msgid "Get the best items with Mandrake Linux Strategic partners"
+msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-"Apakah Anda memilih belajar sendiri atau via jaringan mitra training kami, "
-"katalog Kampus-Linux mempersiapkan Anda untuk program sertifikasi LPI baku "
-"(sertifikat teknik profesional dunia)"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr "Sertifikasikan diri Anda di Linux"
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "Optimasi keamanan"
+
+#: ../../share/advertising/11-mnf.pl:1
+#, c-format
+msgid "This product is available on the MandrakeStore Web site."
+msgstr "Produk ini tersedia di situs MandrakeStore"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-"Program training diadakan untuk memenuhi kebutuhan para pengguna akhir dan "
-"pakar (admin jaringan dan sistem)"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr "Temukan katalog training MandrakeSoft Kampus-Linux"
+msgid "Secure your networks with the Multi Network Firewall"
+msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -13262,19 +13107,19 @@ msgstr ""
"pengetahuan dan membantu sesama dengan menjadi Pakar di situs support teknik "
"online:"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr "Temukan solusi problem via platform dukungan online MandrakeSoft"
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr "Jadi AhliMandrake"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
@@ -13282,37 +13127,16 @@ msgid ""
msgstr ""
"Semua insiden akan di-followup oleh pakar teknis MandrakeSoft berkualitas."
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr "Platform online yang melayani kebutuhan support spesifik perusahaan"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "AhliMandrake Perusahaan"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-"MandrakeClub dan Klub Perusahaan Mandrake dibuat utk pengguna pribadi dan "
-"bisnis Mandrake Linux yg ingin secara langsung men-support distro Linux "
-"favorit sembari menerima hak-hak khusus. Jika Anda suka produk kami, jika "
-"produk kami membantu perusahaan Anda dalam bersaing, jika Anda ingin "
-"membantu pembangunan Mandrake Linux, bergabunglah dengan MandrakeClub!"
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr "KlubMandrake dan Klub Perusahaan Mandrake"
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -15785,6 +15609,11 @@ msgstr "Dukun Kali Pertama"
#: ../../standalone/drakbug:1
#, c-format
+msgid "Mandrake Control Center"
+msgstr "Pusat Kontrol Mandrake"
+
+#: ../../standalone/drakbug:1
+#, c-format
msgid "Mandrake Bug Report Tool"
msgstr "Pelapor Kutu Mandrake"
@@ -16716,6 +16545,22 @@ msgid "Interface %s (using module %s)"
msgstr "Interface %s (pakai module %s)"
#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Server Xinetd"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -17074,7 +16919,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -17275,6 +17120,11 @@ msgid "choose image file"
msgstr "pilih file image"
#: ../../standalone/draksplash:1
+#, fuzzy, c-format
+msgid "choose image"
+msgstr "pilih file image"
+
+#: ../../standalone/draksplash:1
#, c-format
msgid "Configure bootsplash picture"
msgstr "Konfigurasi gambar bootsplash"
@@ -17749,10 +17599,20 @@ msgstr ", printer jaringan \"%s\", port %s"
#: ../../standalone/harddrake2:1
#, fuzzy, c-format
+msgid "the name of the CPU"
+msgstr "nama pembuat device"
+
+#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
msgid "Name"
msgstr "Nama: "
#: ../../standalone/harddrake2:1
+#, fuzzy, c-format
+msgid "the number of buttons the mouse has"
+msgstr "warna papan perkembangan"
+
+#: ../../standalone/harddrake2:1
#, c-format
msgid "Number of buttons"
msgstr "Jumlah tombol"
@@ -17915,7 +17775,7 @@ msgstr "keterangan alat"
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -18912,6 +18772,10 @@ msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr "Kumpulan tool untuk mail, news, web, transfer file, dan chat"
#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Game"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimedia - Grafis"
@@ -18967,6 +18831,364 @@ msgstr "Keuangan Pribadi"
msgid "Programs to manage your finances, such as gnucash"
msgstr "Program untuk mengelola keuangan, misalnya gnucash"
+#~ msgid "no network card found"
+#~ msgstr "kartu jaringan tak ditemukan"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 has selected the best software for you. Surf the Web "
+#~ "and view animations with Mozilla and Konqueror, or read your mail and "
+#~ "handle your personal information with Evolution and Kmail"
+#~ msgstr ""
+#~ "Mandrake Linux 9.1 menyajikan software terbaik. Jelajah web dan lihat "
+#~ "animasi dengan Mozilla dan Konqueror, atau baca email dan atur info "
+#~ "pribadi Anda dengan Evolution dan Kmail"
+
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Ambil yang paling Wah! dari Internet"
+
+#~ msgid "Push multimedia to its limits!"
+#~ msgstr "Dorong multimedia hingga tapal batas!"
+
+#~ msgid "Discover the most up-to-date graphical and multimedia tools!"
+#~ msgstr "Temukan perlengkapan grafis dan multimedia terbaru!"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
+#~ "strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux menyediakan game Open Source terbaik - arcade, aksi, "
+#~ "kartu, olah raga, strategi, ..."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.1 provides a powerful tool to fully customize and "
+#~ "configure your machine"
+#~ msgstr ""
+#~ "Mandrake Linux menyediakan alat perkasa untuk mengkonfigurasi mesin Anda"
+
+#~ msgid "User interfaces"
+#~ msgstr "Antarmuka pengguna"
+
+#~ msgid ""
+#~ "Use the full power of the GNU gcc 3 compiler as well as the best Open "
+#~ "Source development environments"
+#~ msgstr ""
+#~ "Gunakan power compiler gcc GNU, juga lingkungan bangun Open Source terbaik"
+
+#~ msgid "Development simplified"
+#~ msgstr "Pemrograman dipermudah"
+
+#~ msgid ""
+#~ "This firewall product includes network features that allow you to fulfill "
+#~ "all your security needs"
+#~ msgstr ""
+#~ "Produk firewall ini mencakup fitur jaringan yang memungkinkan Anda "
+#~ "memenuhi semua kebutuhan sekuritas"
+
+#~ msgid ""
+#~ "The MandrakeSecurity range includes the Multi Network Firewall product (M."
+#~ "N.F.)"
+#~ msgstr "MandrakeSecurity mencakup produk Multi Network Firewall (M.N.F.)"
+
+#~ msgid "Strategic partners"
+#~ msgstr "Mitra strategis"
+
+#~ msgid ""
+#~ "Whether you choose to teach yourself online or via our network of "
+#~ "training partners, the Linux-Campus catalogue prepares you for the "
+#~ "acknowledged LPI certification program (worldwide professional technical "
+#~ "certification)"
+#~ msgstr ""
+#~ "Apakah Anda memilih belajar sendiri atau via jaringan mitra training "
+#~ "kami, katalog Kampus-Linux mempersiapkan Anda untuk program sertifikasi "
+#~ "LPI baku (sertifikat teknik profesional dunia)"
+
+#~ msgid "Certify yourself on Linux"
+#~ msgstr "Sertifikasikan diri Anda di Linux"
+
+#~ msgid ""
+#~ "The training program has been created to respond to the needs of both end "
+#~ "users and experts (Network and System administrators)"
+#~ msgstr ""
+#~ "Program training diadakan untuk memenuhi kebutuhan para pengguna akhir "
+#~ "dan pakar (admin jaringan dan sistem)"
+
+#~ msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+#~ msgstr "Temukan katalog training MandrakeSoft Kampus-Linux"
+
+#~ msgid ""
+#~ "MandrakeClub and Mandrake Corporate Club were created for business and "
+#~ "private users of Mandrake Linux who would like to directly support their "
+#~ "favorite Linux distribution while also receiving special privileges. If "
+#~ "you enjoy our products, if your company benefits from our products to "
+#~ "gain a competititve edge, if you want to support Mandrake Linux "
+#~ "development, join MandrakeClub!"
+#~ msgstr ""
+#~ "MandrakeClub dan Klub Perusahaan Mandrake dibuat utk pengguna pribadi dan "
+#~ "bisnis Mandrake Linux yg ingin secara langsung men-support distro Linux "
+#~ "favorit sembari menerima hak-hak khusus. Jika Anda suka produk kami, jika "
+#~ "produk kami membantu perusahaan Anda dalam bersaing, jika Anda ingin "
+#~ "membantu pembangunan Mandrake Linux, bergabunglah dengan MandrakeClub!"
+
+#~ msgid "Discover MandrakeClub and Mandrake Corporate Club"
+#~ msgstr "KlubMandrake dan Klub Perusahaan Mandrake"
+
+#, fuzzy
+#~ msgid ""
+#~ "As a review, DrakX will present a summary of various information it has\n"
+#~ "about your system. Depending on your installed hardware, you may have "
+#~ "some\n"
+#~ "or all of the following entries:\n"
+#~ "\n"
+#~ " * \"Mouse\": check the current mouse configuration and click on the "
+#~ "button\n"
+#~ "to change it if necessary.\n"
+#~ "\n"
+#~ " * \"Keyboard\": check the current keyboard map configuration and click "
+#~ "on\n"
+#~ "the button to change that if necessary.\n"
+#~ "\n"
+#~ " * \"Country\": check the current country selection. If you are not in "
+#~ "this\n"
+#~ "country, click on the button and choose another one.\n"
+#~ "\n"
+#~ " * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
+#~ "primary language you have chosen. But here, just as in your choice of a\n"
+#~ "keyboard, you may not be in a country to which the chosen language\n"
+#~ "corresponds. You may need to click on the \"Timezone\" button to\n"
+#~ "configure the clock for the correct timezone.\n"
+#~ "\n"
+#~ " * \"Printer\": clicking on the \"No Printer\" button will open the "
+#~ "printer\n"
+#~ "configuration wizard. Consult the corresponding chapter of the ``Starter\n"
+#~ "Guide'' for more information on how to setup a new printer. The "
+#~ "interface\n"
+#~ "presented there is similar to the one used during installation.\n"
+#~ "\n"
+#~ " * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+#~ "click that button. This should be reserved to advanced users.\n"
+#~ "\n"
+#~ " * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+#~ "interface in \"800x600\" resolution. If that does not suits you, click "
+#~ "on\n"
+#~ "the button to reconfigure your graphical interface.\n"
+#~ "\n"
+#~ " * \"Network\": If you want to configure your Internet or local network\n"
+#~ "access now, you can by clicking on this button.\n"
+#~ "\n"
+#~ " * \"Sound card\": if a sound card is detected on your system, it is\n"
+#~ "displayed here. If you notice the sound card displayed is not the one "
+#~ "that\n"
+#~ "is actually present on your system, you can click on the button and "
+#~ "choose\n"
+#~ "another driver.\n"
+#~ "\n"
+#~ " * \"TV card\": if a TV card is detected on your system, it is displayed\n"
+#~ "here. If you have a TV card and it is not detected, click on the button "
+#~ "to\n"
+#~ "try to configure it manually.\n"
+#~ "\n"
+#~ " * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
+#~ "displayed here. You can click on the button to change the parameters\n"
+#~ "associated with the card."
+#~ msgstr ""
+#~ "Di sini disajikan macam-macam parameter mesin Anda. Tergantung hardware "
+#~ "yg\n"
+#~ "ter-instal, Anda dapat - atau tidak, melihat entri berikut:\n"
+#~ "\n"
+#~ " * \"Mouse\": cek konfigurasi mouse, klik tombol utk mengubahnya bila "
+#~ "perlu\n"
+#~ "\n"
+#~ " * \"Papanketik\": cek konfigurasi map papanketik, klik tombol utk "
+#~ "mengubahnya\n"
+#~ "bila perlu.\n"
+#~ "\n"
+#~ " * \"Zona waktu\": DrakX menerka zona waktu Anda dari bahasa yg Anda "
+#~ "pilih.\n"
+#~ "Tapi sekali lagi seperti pilihan papanketik, Anda mungkin tak berada di "
+#~ "negri\n"
+#~ "yang selaras dg bahasa terpilih. Jadi Anda mungkin perlu menekan tombol\n"
+#~ "\"Zona waktu\" utk mengkonfigurasikan jam sesuai zona waktu tempat Anda.\n"
+#~ "\n"
+#~ " * \"Printer\": klik \"No Printer\" utk membuka dukun konfigurasi "
+#~ "printer.\n"
+#~ "\n"
+#~ " * \"Kartu suara\": kartu suara terdeteksi di sistem Anda akan "
+#~ "ditampilkan\n"
+#~ "di sini. Tiada modifikasi yg dapat dilakukan saat instalasi.\n"
+#~ "\n"
+#~ " * \"Kartu TV\": kartu TV yg terdeteksi di sistem Anda akan ditampilkan "
+#~ "di\n"
+#~ "sini. Tiada modifikasi yg dapat dilakukan saat instalasi.\n"
+#~ "\n"
+#~ " * \"Kartu ISDN\": kartu ISDN yg terdeteksi di sistem Anda akan "
+#~ "ditampilkan\n"
+#~ "di sini. Anda dapat meng-klik tombol utk mengubah parameternya."
+
+#, fuzzy
+#~ msgid ""
+#~ "LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
+#~ "automated. DrakX will analyze the disk boot sector and act according to\n"
+#~ "what it finds there:\n"
+#~ "\n"
+#~ " * if a Windows boot sector is found, it will replace it with a grub/"
+#~ "LILO\n"
+#~ "boot sector. This way you will be able to load either GNU/Linux or "
+#~ "another\n"
+#~ "OS.\n"
+#~ "\n"
+#~ " * if a grub or LILO boot sector is found, it will replace it with a new\n"
+#~ "one.\n"
+#~ "\n"
+#~ "If it cannot make a determination, DrakX will ask you where to place the\n"
+#~ "bootloader.\n"
+#~ "\n"
+#~ "\"Boot device\": in most cases, you will not change the default (\"First\n"
+#~ "sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
+#~ "installed on the second hard drive (\"/dev/hdb\"), or even on a floppy "
+#~ "disk\n"
+#~ "(\"On Floppy\").\n"
+#~ "\n"
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "CDROM Mandrake Linux punya mode pertolongan built-in, yg bisa diakses dg\n"
+#~ "mem-boot dari CDROM, tekan >>F1<< dan ketik >>rescue<< di prompt. Tapi "
+#~ "jika\n"
+#~ "komputer Anda tak dapat mem-boot dari CDROM, kembalilah ke tahap ini "
+#~ "untuk\n"
+#~ "pertolongan dalam setidaknya 2 situasi:\n"
+#~ "\n"
+#~ " * saat instalasi bootloader, DrakX akan menulis ulang sektor boot (MBR)\n"
+#~ "disk utama Anda (kecuali jika Anda memakai manajer boot lain) sehingga "
+#~ "Anda\n"
+#~ "dapat menjalankan GNU/Linux atau Mindows (jika Anda punya Mindows di "
+#~ "sistem\n"
+#~ "Anda). Jika Anda menginstal Mindows lagi, proses instal microsoft akan\n"
+#~ "menulis ulang sektor boot, dan Anda takkan dapat menjalankan GNU/Linux!\n"
+#~ "\n"
+#~ " * jika ada masalah sehingga Anda tak dapat menjalankan GNU/Linux dari "
+#~ "hard\n"
+#~ "disk, disket ini adalah jalan satu-satunya utk menjalankan GNU/Linux. "
+#~ "Ini\n"
+#~ "berisi sejumlah alat utk mereparasi sistem yg rusak karena kegagalan "
+#~ "power,\n"
+#~ "salah ketik, alpa kata sandi, dan lain-lain.\n"
+#~ "\n"
+#~ "Jika \"Ya\", Anda akan diminta memasukkan disket ke drive. Disket\n"
+#~ "harus kosong / berisi data yg tak Anda perlukan. Tak perlu diformat "
+#~ "sebab\n"
+#~ "DrakX akan menulis ulang seluruh disket."
+
+#, fuzzy
+#~ msgid ""
+#~ "Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
+#~ "handy.\n"
+#~ "\n"
+#~ "The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it "
+#~ "by\n"
+#~ "booting the CD-ROM, pressing the >> F1<< key at boot and typing "
+#~ ">>rescue<<\n"
+#~ "at the prompt. If your computer cannot boot from the CD-ROM, there are "
+#~ "at\n"
+#~ "least two situations where having a boot floppy is critical:\n"
+#~ "\n"
+#~ " * when installing the bootloader, DrakX will rewrite the boot sector "
+#~ "(MBR)\n"
+#~ "of your main disk (unless you are using another boot manager), to allow "
+#~ "you\n"
+#~ "to start up with either Windows or GNU/Linux (assuming you have Windows "
+#~ "on\n"
+#~ "your system). If at some point you need to reinstall Windows, the "
+#~ "Microsoft\n"
+#~ "install process will rewrite the boot sector and remove your ability to\n"
+#~ "start GNU/Linux!\n"
+#~ "\n"
+#~ " * if a problem arises and you cannot start GNU/Linux from the hard "
+#~ "disk,\n"
+#~ "this floppy will be the only means of starting up GNU/Linux. It contains "
+#~ "a\n"
+#~ "fair number of system tools for restoring a system that has crashed due "
+#~ "to\n"
+#~ "a power failure, an unfortunate typing error, a forgotten root password, "
+#~ "or\n"
+#~ "any other reason.\n"
+#~ "\n"
+#~ "If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
+#~ "floppy disk must be blank or have non-critical data on it - DrakX will\n"
+#~ "format the floppy and will rewrite the whole disk."
+#~ msgstr ""
+#~ "CDROM Mandrake Linux punya mode pertolongan built-in, yg bisa diakses dg\n"
+#~ "mem-boot dari CDROM, tekan >>F1<< dan ketik >>rescue<< di prompt. Tapi "
+#~ "jika\n"
+#~ "komputer Anda tak dapat mem-boot dari CDROM, kembalilah ke tahap ini "
+#~ "untuk\n"
+#~ "pertolongan dalam setidaknya 2 situasi:\n"
+#~ "\n"
+#~ " * saat instalasi bootloader, DrakX akan menulis ulang sektor boot (MBR)\n"
+#~ "disk utama Anda (kecuali jika Anda memakai manajer boot lain) sehingga "
+#~ "Anda\n"
+#~ "dapat menjalankan GNU/Linux atau Mindows (jika Anda punya Mindows di "
+#~ "sistem\n"
+#~ "Anda). Jika Anda menginstal Mindows lagi, proses instal microsoft akan\n"
+#~ "menulis ulang sektor boot, dan Anda takkan dapat menjalankan GNU/Linux!\n"
+#~ "\n"
+#~ " * jika ada masalah sehingga Anda tak dapat menjalankan GNU/Linux dari "
+#~ "hard\n"
+#~ "disk, disket ini adalah jalan satu-satunya utk menjalankan GNU/Linux. "
+#~ "Ini\n"
+#~ "berisi sejumlah alat utk mereparasi sistem yg rusak karena kegagalan "
+#~ "power,\n"
+#~ "salah ketik, alpa kata sandi, dan lain-lain.\n"
+#~ "\n"
+#~ "Jika \"Ya\", Anda akan diminta memasukkan disket ke drive. Disket\n"
+#~ "harus kosong / berisi data yg tak Anda perlukan. Tak perlu diformat "
+#~ "sebab\n"
+#~ "DrakX akan menulis ulang seluruh disket."
+
+#~ msgid ""
+#~ "The following printers are configured. Double-click on a printer to "
+#~ "change its settings; to make it the default printer; to view information "
+#~ "about it; or to make a printer on a remote CUPS server available for Star "
+#~ "Office/OpenOffice.org/GIMP."
+#~ msgstr ""
+#~ "Printer berikut telah dikonfigurasikan. Klik-dobel printer utk "
+#~ "memodifikasi setting; membuatnya printer default; atau melihat info "
+#~ "tentangnya; atau membuat printer di server CUPS remote dapat dipakai oleh "
+#~ "Star Office/OpenOffice.org/GIMP."
+
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
#~ "Some DHCP servers require the hostname to work.\n"
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
index cfa041773..42056fa04 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: 2002-12-05 19:52+0100\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
"PO-Revision-Date: 2000-01-05 18:53-0500\n"
"Last-Translator: Thorarinn Einarsson <teinarsson@nc.rr.com>\n"
"Language-Team: Icelandic\n"
@@ -1059,50 +1059,65 @@ msgstr ""
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
-"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
+"\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
+"\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
+"\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
+"\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
+"\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
+"\n"
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
msgstr ""
#: ../../help.pm:1
@@ -1206,13 +1221,8 @@ msgid ""
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1236,7 +1246,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1274,32 +1284,7 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+"(\"On Floppy\")."
msgstr ""
#: ../../help.pm:1
@@ -1443,9 +1428,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1502,7 +1492,9 @@ msgstr ""
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
#: ../../help.pm:1
@@ -1624,9 +1616,7 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
@@ -1637,14 +1627,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
#: ../../help.pm:1
@@ -1685,7 +1675,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -1743,7 +1733,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -1768,42 +1758,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
-msgstr ""
-
-#: ../../help.pm:1
-#, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
#: ../../help.pm:1
@@ -1935,7 +1896,8 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -1955,7 +1917,7 @@ msgstr ""
#: ../../help.pm:1
#, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
@@ -2707,7 +2669,7 @@ msgstr "Hef skref `%s'\n"
#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
#: ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Help"
msgstr "Hjlp"
@@ -3170,6 +3132,12 @@ msgstr "tki"
msgid "System"
msgstr "Mouse Systems"
+#. -PO: example: lilo-graphic on /dev/hda1
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "Llegt"
+
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Bootloader"
@@ -3585,6 +3553,11 @@ msgstr "Hvernig ms ertu me?"
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Mismunandi lykilor"
+
+#: ../../install_steps_interactive.pm:1
+#, fuzzy, c-format
msgid "Upgrade %s"
msgstr "Uppfrsla"
@@ -8172,11 +8145,6 @@ msgid "Configuring network"
msgstr "Stilli staarnetstenginu"
#: ../../network/ethernet.pm:1
-#, c-format
-msgid "no network card found"
-msgstr "ekkert netkort fannst"
-
-#: ../../network/ethernet.pm:1
#, fuzzy, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
@@ -9387,15 +9355,6 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
msgid "Printing system: "
msgstr ""
@@ -9907,6 +9866,11 @@ msgid "Option %s must be an integer number!"
msgstr ""
#: ../../printer/printerdrake.pm:1
+#, fuzzy, c-format
+msgid "Printer default settings"
+msgstr "Veldu prenttengingu"
+
+#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
@@ -11528,13 +11492,13 @@ msgstr "Velkomin(n) tlvurjtinn"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
+msgid "Welcome to the Open Source world."
msgstr ""
#: ../../share/advertising/01-thanks.pl:1
@@ -11545,190 +11509,150 @@ msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
+msgid ""
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
#: ../../share/advertising/02-community.pl:1
-#, fuzzy, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Prfunar skilgreining"
-
-#: ../../share/advertising/03-internet.pl:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+msgid "Build the future of Linux!"
msgstr ""
-#: ../../share/advertising/03-internet.pl:1
-#, fuzzy, c-format
-msgid "Get the most from the Internet"
-msgstr "Nafn tengingar"
-
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
-
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../share/advertising/05-games.pl:1
-#, fuzzy, c-format
-msgid "Games"
-msgstr "Bi"
-
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
-#, fuzzy, c-format
-msgid "Mandrake Control Center"
-msgstr "Nafn tengingar"
-
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-#: ../../share/advertising/07-desktop.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, fuzzy, c-format
-msgid "User interfaces"
-msgstr "Endursn..."
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Sel stillingar"
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
+msgid "A customizable environment"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
-#, fuzzy, c-format
-msgid "Development simplified"
-msgstr "Forritun"
-
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "Mandrake Linux 9.1: the ultimate development platform"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "This product is available on MandrakeStore website"
+msgid ""
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
+msgid "Turn your computer into a reliable server"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+"Our full range of Linux solutions, as well as special offers on products and "
+"other \"goodies\", are available on our e-store:"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "Optimize your security"
+msgid "The official MandrakeSoft Store"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
msgid ""
-"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Strategic partners"
+msgid "Optimize your security by using Mandrake Linux"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+msgid "This product is available on the MandrakeStore Web site."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
-#, c-format
-msgid "Certify yourself on Linux"
-msgstr ""
-
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
@@ -11736,51 +11660,35 @@ msgid ""
"technical support website:"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
-"platform"
+"platform."
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, fuzzy, c-format
msgid "Become a MandrakeExpert"
msgstr "snillingur"
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, c-format
-msgid "An online platform to respond to company's specific support needs"
+msgid "An online platform to respond to enterprise support needs."
msgstr ""
-#: ../../share/advertising/15-mdkexpert-corporate.pl:1
+#: ../../share/advertising/13-mdkexpert_corporate.pl:1
#, fuzzy, c-format
msgid "MandrakeExpert Corporate"
msgstr "snillingur"
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid ""
-"MandrakeClub and Mandrake Corporate Club were created for business and "
-"private users of Mandrake Linux who would like to directly support their "
-"favorite Linux distribution while also receiving special privileges. If you "
-"enjoy our products, if your company benefits from our products to gain a "
-"competititve edge, if you want to support Mandrake Linux development, join "
-"MandrakeClub!"
-msgstr ""
-
-#: ../../share/advertising/17-mdkclub.pl:1
-#, c-format
-msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
-
#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
@@ -13972,6 +13880,11 @@ msgid "First Time Wizard"
msgstr ""
#: ../../standalone/drakbug:1
+#, fuzzy, c-format
+msgid "Mandrake Control Center"
+msgstr "Nafn tengingar"
+
+#: ../../standalone/drakbug:1
#, c-format
msgid "Mandrake Bug Report Tool"
msgstr ""
@@ -14834,6 +14747,22 @@ msgid "Interface %s (using module %s)"
msgstr ""
#: ../../standalone/drakgw:1
+#, fuzzy, c-format
+msgid "Net Device"
+msgstr "Prentjnn"
+
+#: ../../standalone/drakgw:1
+#, c-format
+msgid ""
+"Please enter the name of the interface connected to the internet.\n"
+"\n"
+"Examples:\n"
+"\t\tppp+ for modem or DSL connections, \n"
+"\t\teth0, or eth1 for cable connection, \n"
+"\t\tippp+ for a isdn connection.\n"
+msgstr ""
+
+#: ../../standalone/drakgw:1
#, c-format
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -15169,7 +15098,7 @@ msgid ""
"server\n"
"and a TFTP server to build an installation server.\n"
"With that feature, other computers on your local network will be installable "
-"using from this computer.\n"
+"using this computer as source.\n"
"\n"
"Make sure you have configured your Network/Internet access using drakconnect "
"before going any further.\n"
@@ -15331,6 +15260,11 @@ msgstr "Veldu ager"
#: ../../standalone/draksplash:1
#, fuzzy, c-format
+msgid "choose image"
+msgstr "Veldu ager"
+
+#: ../../standalone/draksplash:1
+#, fuzzy, c-format
msgid "Configure bootsplash picture"
msgstr "Setja upp prentara"
@@ -15768,12 +15702,22 @@ msgid "network printer port"
msgstr "Vifng NetWare prentara"
#: ../../standalone/harddrake2:1
+#, c-format
+msgid "the name of the CPU"
+msgstr ""
+
+#: ../../standalone/harddrake2:1
#, fuzzy, c-format
msgid "Name"
msgstr "Bi"
#: ../../standalone/harddrake2:1
#, c-format
+msgid "the number of buttons the mouse has"
+msgstr ""
+
+#: ../../standalone/harddrake2:1
+#, c-format
msgid "Number of buttons"
msgstr ""
@@ -15935,7 +15879,7 @@ msgstr ""
#: ../../standalone/harddrake2:1
#, c-format
msgid ""
-"The cpu frequency in Mhz (Mega herz which in first approximation may be "
+"The CPU frequency in MHz (Megahertz which in first approximation may be "
"coarsely assimilated to number of instructions the cpu is able to execute "
"per second)"
msgstr ""
@@ -16917,6 +16861,11 @@ msgstr ""
#: ../../share/compssUsers:999
#, fuzzy
+msgid "Games"
+msgstr "Bi"
+
+#: ../../share/compssUsers:999
+#, fuzzy
msgid "Multimedia - Graphics"
msgstr "Margmilun"
@@ -16975,6 +16924,25 @@ msgstr ""
msgid "Programs to manage your finances, such as gnucash"
msgstr ""
+#~ msgid "no network card found"
+#~ msgstr "ekkert netkort fannst"
+
+#, fuzzy
+#~ msgid "Get involved in the Free Software world"
+#~ msgstr "Prfunar skilgreining"
+
+#, fuzzy
+#~ msgid "Get the most from the Internet"
+#~ msgstr "Nafn tengingar"
+
+#, fuzzy
+#~ msgid "User interfaces"
+#~ msgstr "Endursn..."
+
+#, fuzzy
+#~ msgid "Development simplified"
+#~ msgstr "Forritun"
+
#, fuzzy
#~ msgid ""
#~ "Please enter your host name if you know it.\n"
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index 5e8233645..f4b9a0135 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -1,21 +1,25 @@
-# italian transltion of drakflopy
+# translation of attuale-DrakX-it.po to italiano
+# translation of nuovo-DrakX-it.po to italiano
+# translation of DrakX-it.po to italiano
+# italian translation of drakflopy
# Copyright (C) 2000, 2001 MandrakSoft S.A.
# Paolo Lorenzin <pasusu@tin.it>, 2000.
# Roberto Rosselli Del Turco <rosselli@ling.unipi.it>, 2001.
# Simone Riccio <s.riccio@aeb-informatica.it>, 2002
-# Roberto Rosselli Del Turco <rosselli@ling.unipi.it>, 2002
+# Roberto Rosselli Del Turco <rosselli@ling.unipi.it>, 2002,2003
+# Andrea Celli <a.celli@caltanet.it>, 2003
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-12-05 19:52+0100\n"
-"PO-Revision-Date: 2002-12-09 23:35+0100\n"
+"Project-Id-Version: attuale-DrakX-it\n"
+"POT-Creation-Date: 2003-03-07 03:05+0100\n"
+"PO-Revision-Date: 2003-03-03 19:17+0100\n"
"Last-Translator: Andrea Celli <a.celli@caltanet.it>\n"
-"Language-Team: Italian <tp@lists.linux.it>\n"
+"Language-Team: italiano <timl@freelists.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.6\n"
+"X-Generator: KBabel 1.0\n"
#: ../../any.pm:1
#, c-format
@@ -23,8 +27,8 @@ msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
-"Per autorizzare un utente a condividere le proprie directory, bisogna "
-"aggiungerlo al gruppo \"fileshare\".\n"
+"Per autorizzare un utente a condividere le proprie directory,\n"
+"bisogna aggiungerlo al gruppo \"fileshare\".\n"
"Questo può essere fatto usando \"userdrake\"."
#: ../../any.pm:1 ../../install_steps_gtk.pm:1
@@ -57,10 +61,9 @@ msgid ""
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-"Volete permettere agli utenti di condividere qualcuna delle loro directory?\n"
-"Se lo consentite gli utenti potranno semplicemente usare l'opzione "
-"\"Condividi\" \n"
-"in Konqueror o Nautilus.\n"
+"Vuoi permettere agli utenti di condividere qualcuna delle loro directory?\n"
+"Se lo consenti, gli utenti potranno semplicemente usare l'opzione \n"
+"\"Condividi\" in Konqueror o Nautilus.\n"
"\n"
"\"Personalizzata\" permette un controllo più preciso per ogni utente.\n"
@@ -74,7 +77,8 @@ msgstr "Manca il pacchetto %s, che è indispensabile"
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-"Si vuole esportare usando NFS (protocollo Unix) o SMB (protocollo Windows)?"
+"Vuoi esportare usando NFS (protocollo Unix) o SMB (protocollo Windows)? "
+"Scegli quello che che vuoi usare."
#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, c-format
@@ -103,19 +107,19 @@ msgid "More"
msgstr "Ancora"
#: ../../any.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Here is the full list of available countries"
-msgstr "Ecco la lista completa delle tastiere disponibili"
+msgstr "Ecco la lista completa delle tastiere nazionali disponibili"
#: ../../any.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Please choose your country."
-msgstr "Per favore, scegliete il tipo del vostro mouse."
+msgstr "Indica la tua nazione."
#: ../../any.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Country"
-msgstr "Nazione:"
+msgstr "Nazione"
#: ../../any.pm:1
#, c-format
@@ -125,7 +129,7 @@ msgstr "Tutte le lingue"
#: ../../any.pm:1
#, c-format
msgid "Use Unicode by default"
-msgstr ""
+msgstr "Usa Unicode come predefinito"
#: ../../any.pm:1
#, c-format
@@ -136,7 +140,7 @@ msgid ""
msgstr ""
"Mandrake Linux può gestire più di una lingua.\n"
"Selezionare le lingue da installare. Esse saranno disponibili\n"
-"quando si riavverà il sistema dopo aver finito l'installazione."
+"quando si riavvierà il sistema dopo aver finito l'installazione."
#: ../../any.pm:1
#, c-format
@@ -154,9 +158,9 @@ msgid "Choose the default user:"
msgstr "Scegliere l'utente predefinito"
#: ../../any.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Do you want to use this feature?"
-msgstr "Vuoi usare aboot?"
+msgstr "Vuoi sfruttare questa possibilità?"
#: ../../any.pm:1
#, c-format
@@ -335,7 +339,7 @@ msgstr "Linux"
#: ../../any.pm:1
#, c-format
msgid "Which type of entry do you want to add?"
-msgstr "Che tipo di voce si vuole aggiungere?"
+msgstr "Che tipo di voce vuoi aggiungere?"
#: ../../any.pm:1
#, c-format
@@ -508,12 +512,12 @@ msgstr "Opzioni da riga di comando solo con password"
#: ../../any.pm:1
#, c-format
msgid "Force No APIC"
-msgstr ""
+msgstr "Forzare senza ACIP"
#: ../../any.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Enable ACPI"
-msgstr "Abilitare l'avvio da CD-ROM?"
+msgstr "Abilitare l'ACPI"
#: ../../any.pm:1
#, c-format
@@ -584,7 +588,7 @@ msgid ""
"\n"
"On which drive are you booting?"
msgstr ""
-"Si è deciso di installare il bootloader su una partizione.\n"
+"Hai deciso di installare il bootloader su una partizione.\n"
"Questo significa che esiste già un bootloader (ad es. System Commander)\n"
"installato sul disco fisso dal quale viene effettuato il boot.\n"
"\n"
@@ -636,15 +640,15 @@ msgid ""
"failures. Would you like to create a bootdisk for your system?\n"
"%s"
msgstr ""
-"Un disco di avvio personalizzato provvede un modo di accesso al tuo sistema\n"
+"Un disco di avvio personalizzato fornisce un modo per avviare il tuo "
+"sistema\n"
"Linux senza dipendere dal normale bootloader. Ciò è utile se non vuoi\n"
-"installare LILO (o Grub) sul tuo sistema, o un altro sistema operativo "
-"rimuove\n"
-"LILO o LILO non funziona con la tua configurazione hardware. Un disco di "
-"avvio\n"
-"personalizzato può anche essere usato con l'immagine di salvataggio di\n"
-"Mandrake, rendendo molto più facile il ripristino dopo gravi errori\n"
-"del sistema. Vuoi creare un disco di avvio per il tuo sistema?\n"
+"installare LILO (o Grub) sul tuo sistema, o un altro sistema operativo\n"
+" rimuove LILO, o LILO non funziona con la tua configurazione hardware.\n"
+"Un disco di avvio personalizzato può anche essere usato con l'immagine \n"
+"di salvataggio di Mandrake, rendendo molto più facile il ripristino dopo "
+"gravi\n"
+"guasti del sistema. Vuoi creare un disco di avvio per il tuo sistema?\n"
"%s"
#: ../../any.pm:1
@@ -658,9 +662,9 @@ msgid ""
msgstr ""
"\n"
"\n"
-"(ATTENZIONE! State usando XFS per la vostra partizione root,\n"
+"(ATTENZIONE! Hai scelto XFS per la tua partizione root,\n"
"molto probabilmente non sarà possibile creare un floppy di 1.44 MB\n"
-"perché XFS necessita di in driver molto grande)."
+"perché XFS necessita di un driver molto grande)."
#: ../../any.pm:1
#, c-format
@@ -722,7 +726,7 @@ msgstr "i comandi prima del boot, o \"c\" per dare una riga di comando."
#, c-format
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr ""
-"Premete Invio per avviare il sistema operativo selezionato, \"e\" per "
+"Premi Invio per avviare il sistema operativo selezionato, \"e\" per "
"modificare"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
@@ -730,7 +734,7 @@ msgstr ""
#: ../../bootloader.pm:1
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Usate i tasti %c e %c per evidenziare la voce che interessa."
+msgstr "Usa i tasti %c e %c per evidenziare la voce che interessa."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
@@ -776,7 +780,7 @@ msgid ""
msgstr ""
"Benvenuti in %s, il selezionatore di sistemi operativi!\n"
"\n"
-"Scegliere un sistema operativo nella lista qui sopra,\n"
+"Scegliere un sistema operativo dalla lista qui sopra,\n"
"o aspettare %d secondi per il boot predefinito.\n"
"\n"
@@ -838,7 +842,7 @@ msgstr "KB"
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "United States"
-msgstr "Stati Uniti d'America"
+msgstr "Stati Uniti"
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
@@ -854,7 +858,7 @@ msgstr "Italia"
#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Netherlands"
-msgstr "Paesi Bassi"
+msgstr "Olanda"
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
@@ -894,7 +898,7 @@ msgstr "Francia"
#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Costa Rica"
-msgstr "Costa Rica"
+msgstr "Costa Rica"
#: ../../fsedit.pm:1
#, c-format
@@ -944,7 +948,7 @@ msgid ""
msgstr ""
"È stata selezionata una partizione RAID software come root (/).\n"
"Nessun bootloader può gestirla senza una partizione /boot.\n"
-"Accertatsi che venga aggiunta una partizione /boot."
+"Accertarsi che venga aggiunta una partizione /boot."
#: ../../fsedit.pm:1
#, c-format
@@ -988,7 +992,7 @@ msgstr ""
"(TUTTI I DATI verranno persi!). L'altra soluzione è di impedire a DrakX di\n"
"modificare la tabella delle partizioni. (L'errore è %s)\n"
"\n"
-"Si accetta di perdere tutte le partizioni?\n"
+"Accetti di perdere tutte le partizioni?\n"
#: ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
@@ -1017,7 +1021,7 @@ msgstr "semplice"
#: ../../fs.pm:1
#, c-format
msgid "Enabling swap partition %s"
-msgstr "Sto attivando la partizione di swap %s"
+msgstr "Attivazione della partizione di swap %s"
#: ../../fs.pm:1 ../../partition_table.pm:1
#, c-format
@@ -1030,14 +1034,14 @@ msgid "mounting partition %s in directory %s failed"
msgstr "il mount della partizione %s sulla directory %s non è riuscito"
#: ../../fs.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Mounting partition %s"
-msgstr "Formattazione della partizione %s"
+msgstr "Sto montando la partizione %s"
#: ../../fs.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Checking %s"
-msgstr "Sto copiando %s"
+msgstr "Sto controllando %s"
#: ../../fs.pm:1
#, c-format
@@ -1072,13 +1076,12 @@ msgid ""
"Click on \"<- Previous\" to stop this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
-"Cliccate sul pulsante \"Successivo\" se volete cancellare tutte le "
-"partizioni\n"
+"Cliccate sul pulsante \"Avanti\" se volete cancellare tutte le partizioni\n"
"e i dati presenti su questo disco rigido. Prestate attenzione, dopo aver\n"
-"cliccato su \"Successivo\" non potrete più recuperare le partizioni e\n"
-"i dati presenti sul disco, compresi eventuali dati di Windows.\n"
+"cliccato su \"Avanti\" non potrete più recuperare le partizioni e i dati\n"
+"presenti sul disco, compresi eventuali dati di Windows.\n"
"\n"
-"Cliccate su \"Precedente\" per annullare questa operazione senza che venga\n"
+"Cliccate su \"Indietro\" per annullare questa operazione senza che venga\n"
"perso nulla dei dati o partizioni presenti su questo disco rigido."
# DO NOT BOTHER TO MODIFY HERE, SEE:
@@ -1094,91 +1097,71 @@ msgstr ""
"nuova partizione per Mandrake Linux. Attenzione! tutti i dati presenti\n"
"andranno perduti e non saranno più recuperabili!"
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
-"or all of the following entries:\n"
-"\n"
-" * \"Mouse\": check the current mouse configuration and click on the button\n"
-"to change it if necessary.\n"
+"or all of the following entries. Each entry is made up of the configuration\n"
+"item to be configured, followed by a quick summary of the current\n"
+"configuration. Click on the corresponding \"Configure\" button to change\n"
+"that.\n"
"\n"
-" * \"Keyboard\": check the current keyboard map configuration and click on\n"
-"the button to change that if necessary.\n"
+" * \"Keyboard\": check the current keyboard map configuration and change\n"
+"that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one.\n"
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
-"primary language you have chosen. But here, just as in your choice of a\n"
-"keyboard, you may not be in a country to which the chosen language\n"
-"corresponds. You may need to click on the \"Timezone\" button to\n"
-"configure the clock for the correct timezone.\n"
+"country you have chosen. You can click on the \"Configure\" button here if\n"
+"this is not correct.\n"
"\n"
-" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+" * \"Mouse\": check the current mouse configuration and click on the button\n"
+"to change it if necessary.\n"
+"\n"
+" * \"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
-" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
-"click that button. This should be reserved to advanced users.\n"
-"\n"
-" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
-"interface in \"800x600\" resolution. If that does not suits you, click on\n"
-"the button to reconfigure your graphical interface.\n"
-"\n"
-" * \"Network\": If you want to configure your Internet or local network\n"
-"access now, you can by clicking on this button.\n"
-"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
+" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
+"interface in \"800x600\" or \"1024x768\" resolution. If that does not suits\n"
+"you, click on \"Configure\" to reconfigure your graphical interface.\n"
+"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
-"here. If you have a TV card and it is not detected, click on the button to\n"
-"try to configure it manually.\n"
+"here. If you have a TV card and it is not detected, click on \"Configure\"\n"
+"to try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
-"displayed here. You can click on the button to change the parameters\n"
-"associated with the card."
-msgstr ""
-"Qui sono riportati vari parametri relativi al vostro sistema. In base\n"
-"all'hardware installato, potrebbero essere visualizzate le seguenti voci:\n"
-"\n"
-" * \"Mouse\": controllate la configurazione attuale del mouse, e cliccate\n"
-"sul pulsante per cambiarla, se necessario;\n"
-"\n"
-" * \"Tastiera\": controllate l'attuale impostazione della tastiera, e\n"
-"cliccate sul pulsante per cambiarla, se necessario;\n"
+"displayed here. You can click on \"Configure\" to change the parameters\n"
+"associated with the card.\n"
"\n"
-" * \"Fuso orario\": DrakX, come opzione predefinita, deduce il vostro fuso\n"
-"orario dalla lingua che avete scelto. Ma anche in questo caso, come per la\n"
-"scelta della tastiera, potreste non trovarvi nella nazione cui corrisponde\n"
-"la lingua che avete scelto; in tal caso sarà necessario cliccare su questo\n"
-"pulsante per poter configurare il fuso orario in base a quello dell'area\n"
-"geografica in cui vivete;\n"
+" * \"Network\": If you want to configure your Internet or local network\n"
+"access now.\n"
"\n"
-" * \"Stampante\": cliccando sul pulsante \"Nessuna stampante\" si\n"
-"richiamerà l'assistente di configurazione della stampante. Consultate il\n"
-"relativo capitolo della \"User Guide\" per avere maggiori informazioni su\n"
-"come configurare una nuova stampante. L'interfaccia descritta in tale sede\n"
-"è simile a quella utilizzata nel corso dell'installazione;\n"
+" * \"Security Level\": this entry offers you to redefine the security level\n"
+"as set in a previous step ().\n"
"\n"
-" * \"Scheda audio\": se sul vostro sistema è stata individuata una scheda\n"
-"audio, verrà mostrata qui. Al momento dell'installazione non è possibile\n"
-"apportare alcuna modifica;\n"
+" * \"Firewall\": if you plan to connect your machine to the Internet, it's\n"
+"a good idea to protect you from intrusions by setting up a firewall.\n"
+"Consult the corresponding section of the ``Starter Guide'' for details\n"
+"about firewall settings.\n"
"\n"
-" * \"Scheda TV\": se sul vostro sistema è stata individuata una scheda TV,\n"
-"verrà mostrata qui. Al momento dell'installazione non è possibile apportare\n"
-"alcuna modifica;\n"
+" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
+"click that button. This should be reserved to advanced users.\n"
"\n"
-" * \"Scheda ISDN\": se sul vostro sistema è stata individuata una scheda\n"
-"ISDN, verrà mostrata qui. Potete cliccare sul pulsante relativo per\n"
-"cambiarne i parametri."
+" * \"Services\": you'll be able here to control finely which services will\n"
+"be run on your machine. If you plan to use this machine as a server it's a\n"
+"good idea to review this setup."
+msgstr ""
#: ../../help.pm:1
#, c-format
@@ -1188,6 +1171,10 @@ msgid ""
"actually present on your system, you can click on the button and choose\n"
"another driver."
msgstr ""
+"\"Scheda audio\": se viene rilevata una scheda audio sul tuo sistema, viene\n"
+"mostrata qui. Se pensi che la scheda audio mostrata non corrisponda a\n"
+"quella realmente presente, puoi cliccare sul pulsante e scegliere un altro\n"
+"driver."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
@@ -1279,19 +1266,14 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"DrakX will first detect any IDE devices present in your computer. It will\n"
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
-"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
-"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
-"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
-"your machine. If you're not sure, you can check the list of hardware\n"
-"detected in your machine by selecting \"See hardware info \" and clicking\n"
-"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
-"->\" button to return to the SCSI interface question.\n"
+"Because hardware detection is not foolproof, DrakX may fail in detecting\n"
+"your hard drives. If so, You'll have to specify your hardware by hand.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
@@ -1317,10 +1299,9 @@ msgstr ""
"lista. Scegliete \"No\" se non disponete di nessun tipo di hardware SCSI, o\n"
"se siete soddisfatti del riconoscimento automatico. Se non siete sicuri,\n"
"potete anche controllare la lista dell'hardware rilevato nella vostra\n"
-"macchina selezionando \"Vedi informazioni hardware\" e cliccando su\n"
-"\"Successivo\".\n"
+"macchina selezionando \"Vedi informazioni hardware\" e cliccando su \"Ok\".\n"
"Controllate l'elenco dell'hardware individuato e poi cliccate sul pulsante\n"
-"\"Successivo\" per ritornare alla domanda relativa alla scheda SCSI.\n"
+"\"Ok\" per ritornare alla domanda relativa alla scheda SCSI.\n"
"\n"
"Se sarete costretti a specificare manualmente il tipo di scheda in vostro\n"
"possesso, DrakX vi chiederà se intendete indicare delle opzioni da usare\n"
@@ -1330,13 +1311,17 @@ msgstr ""
"risultati.\n"
"\n"
"Se DrakX non riesce a stabilire quali sono le opzioni da passare alla\n"
-"scheda, dovrete specificarle manualmente."
+"scheda, dovrete specificarle manualmente. Consultate il \"Manuale\n"
+"dell'utente\" (capitolo 3, paragrafo \"Ricerca di informazioni sul vostro\n"
+"hardware\") per qualche suggerimento su come ottenerle dalla documentazione\n"
+"dell'hardware, dal sito web del produttore (se disponete di un accesso a\n"
+"Internet) o da Microsoft Windows (se avete utilizzato la stessa scheda con\n"
+"Windows sul vostro stesso sistema)."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-# fuzzy, c-format
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"Now, it's time to select a printing system for your computer. Other OSs may\n"
"offer you one, but Mandrake Linux offers two. Each of the printing systems\n"
@@ -1346,7 +1331,7 @@ msgid ""
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
-"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
+"used with networks.) It's recommended that you use \"pdq\" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
@@ -1397,10 +1382,8 @@ msgstr ""
"utilizzate lprNG. In caso contrario, è preferibile usare CUPS dato che è\n"
"più semplice e migliore nel gestire stampanti di rete."
-# DO NOT BOTHER TO MODIFY HERE, SEE:
-# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
"automated. DrakX will analyze the disk boot sector and act according to\n"
@@ -1419,63 +1402,13 @@ msgid ""
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
-"(\"On Floppy\").\n"
-"\n"
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Il CD-ROM di Mandrake Linux ha una modalità \"salvataggio\" preconfigurata.\n"
-"Potete accedervi effettuando il boot dal CD-ROM, premendo il tasto >>F1<<\n"
-"all'avvio e digitando >>rescue<< dal prompt. Ma se il vostro computer non\n"
-"può essere avviato dal CD-ROM, dovete effettuare questa operazione (la\n"
-"creazione di un disco di avvio) per almeno due ragioni:\n"
-"\n"
-" * quando il bootloader verrà installato, DrakX riscriverà il settore di\n"
-"boot (MBR) del vostro disco principale (a meno che voi non usiate un altro\n"
-"gestore del boot), in modo che possiate avviare sia Windows che GNU/Linux,\n"
-"se sul vostro sistema è installato anche Windows. Tuttavia, se in futuro si\n"
-"renderà necessario re-installare Windows, il programma di installazione\n"
-"Microsoft riscriverà il settore di boot, e di conseguenza non sarete più in\n"
-"grado di avviare GNU/Linux!\n"
-"\n"
-" * se si verifica un problema per cui non potete più lanciare GNU/Linux dal\n"
-"disco rigido, questo dischetto sarà l'unico mezzo per avviare GNU/Linux:\n"
-"contiene un buon numero di programmi di amministrazione del sistema per\n"
-"rimettere in sesto un'installazione che ha subito un crash per\n"
-"un'interruzione di corrente, uno sfortunato errore di battitura, una\n"
-"password dimenticata o qualsiasi altra ragione.\n"
-"\n"
-"Quando cliccherete su \"Sì\", vi verrà chiesto di inserire un disco in un\n"
-"lettore di floppy. Naturalmente il dischetto che utilizzerete deve essere\n"
-"vuoto o contenere soltanto dati di cui non avete più bisogno. Non sarà\n"
-"necessario formattarlo: DrakX riscriverà l'intero disco."
+"(\"On Floppy\")."
+msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options that will be available at boot time will be displayed.\n"
@@ -1503,13 +1436,13 @@ msgstr ""
"una nuova voce; cliccando su \"Fatto\" passerete alla fase successiva.\n"
"\n"
"Potreste anche non voler dare l'accesso a questi sistemi operativi a\n"
-"chiunque, nel qual caso potete cancellare le voci corrispondenti, ma in\n"
-"questo caso avrete bisogno di un boot disk per caricarli!"
+"chiunque, nel qual caso potete cancellare le voci corrispondenti, ma così\n"
+"facendo, per caricarli, avrete bisogno di un boot disk!"
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"This dialog allows to finely tune your bootloader:\n"
"\n"
@@ -1538,7 +1471,7 @@ msgid ""
"Clicking the \"Advanced\" button in this dialog will offer advanced options\n"
"that are reserved for the expert user."
msgstr ""
-"LILO e grub sono due \"bootloader\" di GNU/Linux. Un bootloader è un\n"
+"LILO e grub sono due ''bootloader'' di GNU/Linux. Un bootloader è un\n"
"programma per l'avvio di uno o più sistemi operativi. Questa fase, in\n"
"genere, è del tutto automatica; DrakX, infatti, analizza il settore di boot\n"
"del disco, e si comporta in base a quello che vi trova:\n"
@@ -1673,13 +1606,13 @@ msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Scegliere la porta appropriata. La porta \"COM1\" sotto Windows, ad\n"
+"Scegliete la porta appropriata. La porta \"COM1\" sotto Windows, ad\n"
"esempio, è chiamata \"ttyS0\" sotto GNU/Linux."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Usually, DrakX has no problems detecting the number of buttons on your\n"
"mouse. If it does, it assumes you have a two-button mouse and will\n"
@@ -1706,19 +1639,19 @@ msgid ""
"the buttons and check that the mouse pointer moves on-screen as you move\n"
"your mouse."
msgstr ""
-"In genere DrakX individua automaticamente il numero di pulsanti presente\n"
-"sul vostro mouse, in caso contrario conclude che il vostro mouse è un mouse\n"
-"a due tasti e lo imposta in modo da emulare il terzo tasto. DrakX, inoltre,\n"
+"In genere DrakX individua automaticamente il numero di pulsanti presenti\n"
+"sul vostro mouse, in caso contrario conclude che il vostro è un mouse a due\n"
+"tasti e lo imposta in modo da emulare il terzo tasto. DrakX, inoltre,\n"
"riconosce automaticamente se si tratta di un mouse PS/2, seriale o USB.\n"
"\n"
"Se volete specificare un diverso tipo di mouse, scegliete il vostro modello\n"
"dall'elenco che vi viene proposto.\n"
"\n"
-"Se scegliete un mouse diverso dal tipo predefinito, vi verrà mostrata una\n"
+"Se scegliete un mouse diverso dal tipo suggerito vi verrà mostrata una\n"
"finestra dove potrete provarlo. Provate sia i pulsanti che l'eventuale\n"
"rotellina per controllare che la configurazione sia corretta. Se il mouse\n"
"non funziona correttamente, premete la barra spaziatrice o il tasto [Invio]\n"
-"per premere il pulsante \"Annulla\" ed effettuare una nuova scelta.\n"
+"per attivare il pulsante \"Annulla\" ed effettuare una nuova scelta.\n"
"\n"
"Talvolta i mouse con rotellina centrale potrebbero non essere individuati\n"
"automaticamente. In tal caso, dovrete selezionarli personalmente usando la\n"
@@ -1744,9 +1677,14 @@ msgid ""
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
-"Note that you're not limited to choosing a single additional language. Once\n"
-"you have selected additional locales, click the \"Next ->\" button to\n"
-"continue.\n"
+"Note that you're not limited to choosing a single additional language. You\n"
+"may choose several ones, or even install them all by selecting the \"All\n"
+"languages\" box. Selecting support for a language means translations,\n"
+"fonts, spell checkers, etc. for that language will be installed.\n"
+"Additionally, the \"Use Unicode by default\" checkbox allows to force the\n"
+"system to use unicode (UTF-8). Note however that this is an experimental\n"
+"feature. If you select different languages requiring different encoding the\n"
+"unicode support will be installed anyway.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
@@ -1773,7 +1711,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Depending on the default language you chose in Section , DrakX will\n"
"automatically select a particular type of keyboard configuration. However,\n"
@@ -1791,7 +1729,7 @@ msgid ""
"dialog will allow you to choose the key binding that will switch the\n"
"keyboard between the Latin and non-Latin layouts."
msgstr ""
-"Normalmente DrakX provvede ad individuare automaticamente la tastiera\n"
+"Normalmente DrakX provvede a individuare automaticamente la tastiera\n"
"corretta (in base alla lingua che avete scelto). Tuttavia, potreste avere\n"
"una tastiera che non corrisponde esattamente alla vostra lingua: se siete\n"
"un francese che parla italiano, ad esempio, potreste comunque preferire una\n"
@@ -1804,9 +1742,9 @@ msgstr ""
"tastiere supportate.\n"
"\n"
"Se scegliete una mappa di tastiera basata su di un alfabeto non latino,\n"
-"nella prossima finestra di dialogo vi verrà chiesto di scegliere una\n"
-"scorciatoia da tastiera che vi permetterà di passare dalla mappa latina a\n"
-"quella non latina e viceversa."
+"nella finestra di dialogo successiva vi verrà chiesto di scegliere una\n"
+"scorciatoia da tastiera che vi permetterà in seguito di passare dalla mappa\n"
+"latina a quella non latina e viceversa."
#: ../../help.pm:1
#, c-format
@@ -1832,18 +1770,46 @@ msgid ""
"running version \"8.1\" or later. Performing an Upgrade on versions prior\n"
"to Mandrake Linux version \"8.1\" is not recommended."
msgstr ""
+"Si passa da questo punto solo se sulla tua macchina è stata rilevata una "
+"vecchia partizione GNU/Linux.\n"
+"\n"
+"DrakX deve ora sapere se vuoi effettuare una nuova installazione o "
+"aggiornare un sistema Mandrake Linux esistente:\n"
+"\n"
+" * \"Installa\": In pratica, il vecchio sistema verrà completamente "
+"rimosso.\n"
+"Se desideri cambiare il partizionamento del disco fisso o il tipo di\n"
+"file-system, puoi usare questa opzione. Comunque, se il tuo vecchio\n"
+"partizionamento lo consente, puoi evitare che alcune partizioni con dati\n"
+"da salvare siano sovrascritte.\n"
+"\n"
+" * \"Aggiorna\": Questo tipo di installazione ti permette di aggiornare i \n"
+"pacchetti attualmente installati sul tuo sistema Linux system. Le "
+"partizioni\n"
+"presenti e i dati contenuti non verranno alterati. La maggior parte degli "
+"altri\n"
+"passaggi della configurazione saranno percorribili, proprio come in una\n"
+"installazione normale.\n"
+"\n"
+"L'opzione \"Aggiorna\" non dovrebbe dare alcun problema su sistemi con\n"
+"Mandrake Linux 8.1 o successivi. Non è raccomandato fare un aggiornamento\n"
+"di sistemi precedenti a Mandrake Linux versione \"8.1\"."
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
-"country, click on the button and choose another one."
+"country, click on the \"Configure\" button and choose another one. If your\n"
+"country is not in the first list shown, click the \"More\" button to get\n"
+"the complete country list."
msgstr ""
+"\"Nazione\": controlla l'attuale impostazione per il paese. Se non sei\n"
+"nella nazione mostrata, clicca sul pulsante e scegline un'altra."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"More than one Microsoft partition has been detected on your hard drive.\n"
"Please choose the one you want to resize in order to install your new\n"
@@ -1876,10 +1842,10 @@ msgid ""
"disk or partition is called \"C:\")."
msgstr ""
"Sul vostro disco rigido è stata individuata più di una partizione Microsoft\n"
-"Windows. Per favore, scegliete quella che deve essere ridimensionata in\n"
-"modo da poter installare il vostro nuovo sistema operativo Mandrake Linux.\n"
+"Windows. Scegliete quella che deve essere ridimensionata in modo da poter\n"
+"installare il vostro nuovo sistema operativo Mandrake Linux.\n"
"\n"
-"Ogni partizione viene elencata come segue: \"nome Linux\", \"nome Windows\"\n"
+"Le partizioni sono elencate come segue: \"nome Linux\", \"nome Windows\"\n"
"\"Capacità\".\n"
"\n"
"Il \"nome Linux\" è strutturato in: \"tipo di disco rigido\", \"numero del\n"
@@ -1899,8 +1865,9 @@ msgstr ""
"\n"
" * \"d\" significa \"disco rigido slave sul controller IDE secondario\".\n"
"\n"
-"Per i dischi rigidi di tipo SCSI, invece, una \"a\" significa \"ID SCSI\n"
-"più\", una \"b\" significa \"ID SCSI superiore ad a\", ecc.\n"
+"Per i dischi rigidi di tipo SCSI, invece, una \"a\" significa \"ID SCSI più\n"
+"basso\", una \"b\" significa \"ID SCSI immediatamente successivo ad a\",\n"
+"etc.\n"
"\n"
"Il \"nome Windows\" è la lettera che corrisponde al vostro disco rigido\n"
"sotto Windows (il primo disco o partizione è chiamato \"C:\")."
@@ -1908,7 +1875,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -1986,10 +1953,10 @@ msgid ""
msgstr ""
"A questo punto, dovete decidere quali partizioni devono essere usate per\n"
"l'installazione del vostro sistema Mandrake Linux. Se sono già state\n"
-"definite delle partizioni, grazie ad una precedente installazione di\n"
+"definite delle partizioni, grazie a una precedente installazione di\n"
"GNU/Linux o usando un altro programma di partizionamento, potete utilizzare\n"
-"le partizioni esistenti. In caso contrario, sarà necessario creare o\n"
-"modificare le partizioni del disco rigido.\n"
+"quelle. In caso contrario, sarà necessario creare o modificare le\n"
+"partizioni del disco rigido.\n"
"\n"
"Per creare delle partizioni dovete, per prima cosa, selezionare un disco\n"
"rigido. Potete scegliere il disco da partizionare cliccando su \"hda\" per\n"
@@ -2002,46 +1969,46 @@ msgstr ""
"sul disco selezionato.\n"
"\n"
" * \"Alloca automaticamente\": questa opzione vi permette di creare\n"
-"automaticamente partizioni di sistema e di swap, usando il filesystem\n"
-"\"Ext3\", nello spazio libero presente sul vostro disco rigido.\n"
+"automaticamente partizioni ext3 e di swap nello spazio libero presente sul\n"
+"vostro disco rigido.\n"
"\n"
-" * \"Ancora\": permette di accedere a funzionalità avanzate:\n"
+"\"Ancora\": permette di accedere ad ulteriori funzionalità:\n"
"\n"
-" * \"Salva tabella delle partizioni\": salva la tabella delle partizioni\n"
-"su un floppy. Utile per recuperarla in un momento successivo, se\n"
-"necessario. Vi raccomandiamo caldamente di effettuare questa operazione.\n"
+" * \"Salva tabella delle partizioni\": salva la tabella delle partizioni su\n"
+"un floppy. Utile per recuperarla in un secondo momento, se necessario. Vi\n"
+"raccomandiamo caldamente di effettuare questa operazione.\n"
"\n"
-" * \"Ripristina tabella delle partizioni\": permette di ripristinare una\n"
+" * \"Ripristina tabella delle partizioni\": permette di ripristinare una\n"
"tabella delle partizioni precedentemente salvata su floppy disk.\n"
"\n"
-" * \"Recupera tabella delle partizioni\": se la vostra tabella delle\n"
+" * \"Recupera tabella delle partizioni\": se la vostra tabella delle\n"
"partizioni è danneggiata potete provare a recuperarla grazie a questa\n"
"opzione. Procedete con attenzione, e ricordate che potrebbe non avere\n"
"successo.\n"
"\n"
-" * \"Ricarica tabella delle partizioni\": annulla tutte le modifiche e\n"
+" * \"Ricarica tabella delle partizioni\": annulla tutte le modifiche e\n"
"ricarica la tabella delle partizioni originaria.\n"
"\n"
-" * \"Removable media automounting\": se disabilitate questa opzione gli\n"
-"utenti saranno costretti a montare e smontare manualmente i dispositivi\n"
-"rimovibili come lettori floppy e CD-ROM.\n"
+" * \"Automounting di media rimovibili\": se disabilitate questa opzione gli\n"
+"utenti saranno costretti a montare e smontare manualmente i filesystem dei\n"
+"dispositivi rimovibili, come lettori floppy e CD-ROM.\n"
"\n"
-" * \"Assistente\": usate questa opzione se desiderate che il\n"
-"partizionamento del disco sia effettuato con l'aiuto di un assistente.\n"
-"Altamente raccomandata se non avete una buona conoscenza del\n"
-"partizionamento.\n"
+" * \"Assistente\": usate questa opzione per effettuare il partizionamento\n"
+"del disco con l'aiuto di un assistente. Altamente raccomandata se non avete\n"
+"una buona conoscenza del partizionamento.\n"
"\n"
" * \"Un passo indietro\": con questa opzione le modifiche apportate\n"
"verranno annullate.\n"
"\n"
" * \"Passa a modo Esperto\": permette di effettuare ulteriori azioni sulle\n"
-"partizioni (tipo, opzioni, formattazione) e offre più informazioni.\n"
+"partizioni (scelta del tipo, opzioni, formattazione) e offre più\n"
+"informazioni.\n"
"\n"
" * \"Fatto\": quando avrete finito il partizionamento del disco cliccate su\n"
"questa opzione, le vostre modifiche verranno salvate sul disco.\n"
"\n"
"Si noti che è possibile raggiungere ogni opzione usando la tastiera. Per\n"
-"spostarvi fra le partizioni usate i tasti [Tab] e le frecce [Su/Giù].\n"
+"spostarvi fra le partizioni usate i tasti [Tab] e le frecce [Sù/Giù].\n"
"\n"
"Dopo aver selezionato una partizione potete usare:\n"
"\n"
@@ -2053,13 +2020,13 @@ msgstr ""
" * Ctrl-m per impostare il punto di mount.\n"
"\n"
"Per ottenere informazioni in merito ai diversi tipi di filesystem\n"
-"disponibili, consultate il capitolo ext2FS del \"Reference Manual\".\n"
+"disponibili, consultate il capitolo ext2FS del ''Manuale di riferimento''.\n"
"\n"
"Se state effettuando l'installazione su una macchina PPC, sarà necessario\n"
-"creare una piccola partizione HFS di almeno 11MB, che verrà utilizzata dal\n"
+"creare una piccola partizione HFS di almeno 11Mb, che verrà utilizzata dal\n"
"bootloader yaboot. Se decidete di creare una partizione più grande, diciamo\n"
-"sui 50MB, potrebbe rappresentare un utile deposito dove conservare un\n"
-"kernel di riserva e immagini di \"ramdisk\" da utilizzare in caso di\n"
+"sui 50 Mb, essa potrebbe rappresentare un utile deposito in cui conservare\n"
+"un kernel di riserva e immagini di ''ramdisk'' da utilizzare in caso di\n"
"emergenza."
# DO NOT BOTHER TO MODIFY HERE, SEE:
@@ -2071,21 +2038,19 @@ msgid ""
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
-"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
-"chapter of the ``Command Line Manual'' to get more information about the\n"
-"meaning of these levels.\n"
+"is generally obtained at the expense of ease of use.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
"Ora è il momento di scegliere il livello di sicurezza desiderato per il\n"
-"vostro sistema. Come regola generale, quanto più esposta è la macchina e\n"
+"tuo sistema. Come regola generale, quanto più esposta è la macchina e\n"
"quanto più sono importanti i dati che contiene, tanto più alto dovrebbe\n"
-"essere il livello di sicurezza. Tenete presente, tuttavia, che un livello\n"
-"di sicurezza molto alto in genere viene ottenuto a spese della facilità\n"
-"d'uso. Consultate il capitolo MSEC nel \"Manuale di riferimento\" per avere\n"
+"essere il livello di sicurezza. Tieni presente, tuttavia, che un livello di\n"
+"sicurezza molto alto in genere viene ottenuto a spese della facilità d'uso.\n"
+"Consulta il capitolo MSEC del \"Manuale di riferimento\" per avere\n"
"ulteriori informazioni in merito al significato di tali livelli.\n"
"\n"
-"Se non sapete cosa scegliere, mantenete l'opzione predefinita."
+"Se non sai cosa scegliere, mantieni l'opzione predefinita."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
@@ -2095,14 +2060,14 @@ msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
-"updates, you are now able to download them from the Internet. Choose\n"
-"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
-"to install updated packages later.\n"
+"updates, you are now able to download them from the Internet. Check \"Yes\"\n"
+"if you have a working Internet connection, or \"No\" if you prefer to\n"
+"install updated packages later.\n"
"\n"
-"Choosing \"Yes\" displays a list of places from which updates can be\n"
+"Choosing \"Yes\" will display a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
-"the selected package( s), or \"Cancel\" to abort."
+"the selected package(s), or \"Cancel\" to abort."
msgstr ""
"È molto probabile che, al momento in cui state installando Mandrake Linux,\n"
"alcuni pacchetti siano stati aggiornati rispetto alla versione iniziale.\n"
@@ -2123,7 +2088,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a file system).\n"
@@ -2158,10 +2123,10 @@ msgstr ""
"partizioni che intendete formattare.\n"
"\n"
"Tenete presente che non è necessario riformattare tutte le partizioni\n"
-"preesistenti. Dovete formattare le partizioni che contengono il sistema\n"
-"operativo (come \"/\", \"/usr\" o \"/var\"), ma potete evitare di\n"
-"riformattare partizioni che contengono dati che desiderate conservare\n"
-"(tipicamente \"/home\").\n"
+"preesistenti. La formattazione è necessaria per le partizioni che\n"
+"contengono il sistema operativo (come \"/\", \"/usr\" o \"/var\"), ma\n"
+"potete evitare di riformattare quelle che contengono dati che desiderate\n"
+"conservare (tipicamente \"/home\").\n"
"\n"
"Fate molta attenzione nella scelta delle partizioni, dopo la formattazione\n"
"tutti i dati saranno cancellati e non potrete recuperarli.\n"
@@ -2186,7 +2151,7 @@ msgid ""
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
-"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
+"The \"Advanced\" button shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
@@ -2283,7 +2248,7 @@ msgid ""
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
-"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
@@ -2308,13 +2273,13 @@ msgid ""
"\n"
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
-" * \"Custom disk partitionning\": choose this option if you want to\n"
-"manually partition your hard drive. Be careful -- it is a powerful but\n"
-"dangerous choice and you can very easily lose all your data. That's why\n"
-"this option is really only recommended if you have done something like this\n"
-"before and have some experience. For more instructions on how to use the\n"
-"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
-"the ``Starter Guide''."
+" * \"Custom disk partitioning\": choose this option if you want to manually\n"
+"partition your hard drive. Be careful -- it is a powerful but dangerous\n"
+"choice and you can very easily lose all your data. That's why this option\n"
+"is really only recommended if you have done something like this before and\n"
+"have some experience. For more instructions on how to use the DiskDrake\n"
+"utility, refer to the ``Managing Your Partitions '' section in the\n"
+"``Starter Guide''."
msgstr ""
"A questo punto dovete scegliere dove installare il vostro sistema operativo\n"
"Mandrake Linux sul disco rigido. Se il vostro disco è vuoto, oppure se un\n"
@@ -2399,60 +2364,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
-msgid ""
-"Checking \"Create a boot disk\" allows you to have a rescue boot media\n"
-"handy.\n"
-"\n"
-"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
-"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
-"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
-"least two situations where having a boot floppy is critical:\n"
-"\n"
-" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
-"of your main disk (unless you are using another boot manager), to allow you\n"
-"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
-"your system). If at some point you need to reinstall Windows, the Microsoft\n"
-"install process will rewrite the boot sector and remove your ability to\n"
-"start GNU/Linux!\n"
-"\n"
-" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
-"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
-"fair number of system tools for restoring a system that has crashed due to\n"
-"a power failure, an unfortunate typing error, a forgotten root password, or\n"
-"any other reason.\n"
-"\n"
-"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
-"floppy disk must be blank or have non-critical data on it - DrakX will\n"
-"format the floppy and will rewrite the whole disk."
-msgstr ""
-"Il CD-ROM di Mandrake Linux ha una modalità \"salvataggio\" preconfigurata.\n"
-"Potete accedervi effettuando il boot dal CD-ROM, premendo il tasto >>F1<<\n"
-"all'avvio e digitando >>rescue<< dal prompt. Ma se il vostro computer non\n"
-"può essere avviato dal CD-ROM, dovete effettuare questa operazione (la\n"
-"creazione di un disco di avvio) per almeno due ragioni:\n"
-"\n"
-" * quando il bootloader verrà installato, DrakX riscriverà il settore di\n"
-"boot (MBR) del vostro disco principale (a meno che voi non usiate un altro\n"
-"gestore del boot), in modo che possiate avviare sia Windows che GNU/Linux,\n"
-"se sul vostro sistema è installato anche Windows. Tuttavia, se in futuro si\n"
-"renderà necessario re-installare Windows, il programma di installazione\n"
-"Microsoft riscriverà il settore di boot, e di conseguenza non sarete più in\n"
-"grado di avviare GNU/Linux!\n"
-"\n"
-" * se si verifica un problema per cui non potete più lanciare GNU/Linux dal\n"
-"disco rigido, questo dischetto sarà l'unico mezzo per avviare GNU/Linux:\n"
-"contiene un buon numero di programmi di amministrazione del sistema per\n"
-"rimettere in sesto un'installazione che ha subito un crash per\n"
-"un'interruzione di corrente, uno sfortunato errore di battitura, una\n"
-"password dimenticata o qualsiasi altra ragione.\n"
-"\n"
-"Quando cliccherete su \"Sì\", vi verrà chiesto di inserire un disco in un\n"
-"lettore di floppy. Naturalmente il dischetto che utilizzerete deve essere\n"
-"vuoto o contenere soltanto dati di cui non avete più bisogno. Non sarà\n"
-"necessario formattarlo: DrakX riscriverà l'intero disco."
-
-#: ../../help.pm:1
#, c-format
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
@@ -2461,11 +2372,12 @@ msgid ""
"act as a server, or if you were not successful in getting the display\n"
"configured."
msgstr ""
-"Infine, DrakX chiederà se si desidera che appaia l'interfaccia grafica\n"
-"dopo l'avvio del sistema. È da notare che questa domanda\n"
-"verrà fatta anche si è deciso di non provare la configurazione.\n"
-"Ovviamente, è opportuno scegliere \"No\" se la macchina dovrà funzionare\n"
-"da server, o se non si è riusciti a configurare la grafica."
+"Per finire, vi verrà chiesto se desiderate avviare automaticamente\n"
+"l'interfaccia grafica subito dopo il boot. Si noti che tale domanda verrà\n"
+"fatta anche se avete deciso di non provare la vostra configurazione di X.\n"
+"Ovviamente è opportuno rispondere \"No\" nel caso in cui la vostra macchina\n"
+"svolga le funzioni di server, oppure se non siete riuscite a configurare il\n"
+"server grafico."
#: ../../help.pm:1
#, c-format
@@ -2474,6 +2386,10 @@ msgid ""
"without 3D acceleration, you are then proposed to choose the server that\n"
"best suits your needs."
msgstr ""
+"Nel caso che ci siano diversi server disponibili per la tua scheda, con o\n"
+"senza accelerazione 3D, ti verrà data ora la possibilità di scegliere il "
+"server\n"
+"che si adatta meglio alle tue esigenze."
#: ../../help.pm:1
#, c-format
@@ -2485,6 +2401,12 @@ msgid ""
"able to change that after installation though). A sample of the chosen\n"
"configuration is shown in the monitor."
msgstr ""
+"Risoluzione\n"
+"\n"
+"...Puoi ora scegliere le risoluzioni e la profondità di colore tra quelle\n"
+" disponibili per il tuo hardware. Scegli quella che si adatta meglio alle\n"
+"tue esigenze (potrai ancora modificarla ad installazione terminata).\n"
+"L'effetto della configurazione scelta sarà mostrato sul monitor."
#: ../../help.pm:1
#, c-format
@@ -2495,6 +2417,12 @@ msgid ""
"monitor connected to your machine. If it is not the case, you can choose in\n"
"this list the monitor you actually own."
msgstr ""
+"Monitor\n"
+"\n"
+" L'installatore di solito riesce a riconoscere e configurare "
+"automaticamente\n"
+"il monitor collegato alla tua macchina. Se non succedesse, puoi scegliere\n"
+"il monitor che hai realmente in questo elenco."
#: ../../help.pm:1
#, c-format
@@ -2551,6 +2479,15 @@ msgid ""
"\"No\" if your machine is to act as a server, or if you were not successful\n"
"in getting the display configured."
msgstr ""
+" L'installatore di solito riesce a riconoscere e configurare "
+"automaticamente\n"
+"la scheda grafica montata sulla tua macchina. Se non succedesse, puoi \n"
+"scegliere in questo elenco la scheda che hai realmente.\n"
+" \n"
+"Nel caso che ci siano diversi server disponibili per la tua scheda, con o\n"
+"senza accelerazione 3D, ti verrà data ora la possibilità di scegliere il "
+"server\n"
+"che si adatta meglio alle tue esigenze."
#: ../../help.pm:1
#, c-format
@@ -2565,11 +2502,23 @@ msgid ""
"without 3D acceleration, you are then proposed to choose the server that\n"
"best suits your needs."
msgstr ""
+"Scheda grafica\n"
+"\n"
+" L'installatore di solito riesce a riconoscere e configurare "
+"automaticamente\n"
+"la scheda grafica montata sulla tua macchina. Se non succedesse, puoi \n"
+"scegliere in questo elenco la scheda che hai realmente.\n"
+"\n"
+" Nel caso che ci siano diversi server disponibili per la tua scheda, con "
+"o\n"
+"senza accelerazione 3D, ti verrà data ora la possibilità di scegliere il "
+"server\n"
+"che meglio si adatta alle tue esigenze."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
"local time according to the time zone you selected. If the clock on your\n"
@@ -2584,16 +2533,16 @@ msgid ""
"choose a time server located near you. This option actually installs a time\n"
"server that can used by other machines on your local network."
msgstr ""
-"GNU/Linux gestisce il tempo in base al GMT (\"Greenwich Manage Time\") e lo\n"
-"traduce nell'ora locale in base al fuso orario selezionato. Tuttavia è\n"
+"GNU/Linux gestisce il tempo in base al GMT (''Greenwich Mean Time'') e lo\n"
+"traduce nell'ora locale secondo il fuso orario selezionato. Tuttavia è\n"
"possibile disabilitare questa opzione togliendo il segno di spunta alla\n"
-"casella \"Hardware clock set to GMT\", in modo che l'orologio hardware sia\n"
-"lo stesso dell'orologio di sistema. Questa scelta può tornare utile nel\n"
-"caso sulla macchina sia installato un altro sistema operativo, ad esempio\n"
+"casella \"Hardware clock set to GMT\", in modo che l'orologio hardware\n"
+"coincida con quello di sistema. Questa scelta può tornare utile nel caso\n"
+"sulla macchina sia installato un altro sistema operativo, ad esempio\n"
"Windows.\n"
"\n"
"L'opzione \"Automatic time synchronization\" provvederà a gestire l'ora\n"
-"grazie alla connessione con un server del tempo remoto via Internet.\n"
+"grazie alla connessione via Internet con un server di orario remoto.\n"
"Scegliete un server vicino a voi nella lista che vi verrà mostrata. Perché\n"
"questa opzione funzioni, naturalmente, dovete disporre di una connessione a\n"
"Internet funzionante. Sulla vostra macchina verrà installato un server del\n"
@@ -2605,7 +2554,8 @@ msgstr ""
#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
-"This step is used to choose which services you wish to start at boot time.\n"
+"This dialog is used to choose which services you wish to start at boot\n"
+"time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
@@ -2640,18 +2590,24 @@ msgstr ""
"soltanto quelli di cui avete effettivamente bisogno. !!"
#: ../../help.pm:1
-#, c-format
+#, fuzzy, c-format
msgid ""
-"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
+"\"Printer\": clicking on the \"Configure\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
msgstr ""
+"\"Stampante\": cliccando sul pulsante \"Nessuna stampante\" avvierai\n"
+"l'assistente per configurare le stampanti. Consulta il relativo capitolo "
+"della \n"
+"\"Starter Guide\"' per maggiori informazioni su come configurare una nuova\n"
+"stampante. L'interfaccia che ti apparirà è simile a quella "
+"dell'installazione."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"You will now set up your Internet/network connection. If you wish to\n"
"connect your computer to the Internet or to a local network, click \"Next\n"
@@ -2672,16 +2628,15 @@ msgid ""
"for details about the configuration, or simply wait until your system is\n"
"installed and use the program described there to configure your connection."
msgstr ""
-"Se desiderate connettere il vostro computer ad Internet o ad una rete "
-"locale,\n"
+"Se desiderate connettere il vostro computer a Internet o a una rete locale,\n"
"assicuratevi di scegliere l'opzione corretta. Accendete la periferica che\n"
"dovrete usare per connettervi prima di scegliere l'opzione adeguata, per\n"
"permettere a DrakX di individuarla automaticamente.\n"
"\n"
-"Mandrake Linux vi permette di configurare la vostra connessione ad Internet\n"
+"Mandrake Linux vi permette di configurare la vostra connessione a Internet\n"
"durante il processo di installazione. Le connessioni disponibili sono:\n"
"modem tradizionale, modem ISDN, connessione ADSL, cable modem, e infine una\n"
-"semplice connessione ad una LAN (Ethernet).\n"
+"semplice connessione a una LAN (Ethernet).\n"
"\n"
"Non possiamo descrivere in dettaglio le caratteristiche di ogni\n"
"configurazione. In ogni caso, accertatevi di avere a portata di mano tutti\n"
@@ -2689,18 +2644,15 @@ msgstr ""
"amministratore di sistema.\n"
"\n"
"Per maggiori dettagli riguardo la configurazione della connessione a\n"
-"Internet potete consultare il relativo capitolo del \"User Guide\"; in\n"
-"alternativa, potete attendere di aver portato a termine l'installazione e\n"
-"usare poi il programma descritto in tale capitolo per configurare la\n"
-"connessione.\n"
-"\n"
-"Se desiderate configurare la rete dopo aver terminato l'installazione, o se\n"
-"avete già configurato la vostra rete, cliccate su \"Annulla\"."
+"Internet potete consultare il relativo capitolo della ''Guida\n"
+"introduttiva''; in alternativa, potete attendere di aver portato a termine\n"
+"l'installazione e usare poi il programma descritto in tale capitolo per\n"
+"configurare la connessione."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"If you told the installer that you wanted to individually select packages,\n"
"it will present a tree containing all packages classified by groups and\n"
@@ -2756,17 +2708,17 @@ msgstr ""
"predefinita, in Mandrake Linux tutti i servizi installati vengono avviati\n"
"automaticamente al momento del boot. Anche se si tratta di servizi sicuri\n"
"al momento in cui è stata rilasciata questa versione della distribuzione,\n"
-"potrebbe succedere che vengano scoperte delle falle di sicurezza in un\n"
-"momento successivo. Se poi non avete proprio idea di quale sia la funzione\n"
-"di uno di questi pacchetti, cliccate sul pulsante \"No\". Cliccando su\n"
-"\"Sì\" i servizi elencati verranno installati e saranno attivati in maniera\n"
+"potrebbe accadere che successivamente vengano scoperte delle falle di\n"
+"sicurezza. Se poi non avete proprio idea di quale sia la funzione di uno di\n"
+"questi pacchetti, cliccate sul pulsante \"No\". Cliccando su \"Sì\" i\n"
+"servizi elencati verranno installati e saranno attivati in maniera\n"
"automatica. !!\n"
"\n"
"L'opzione \"Mostra i pacchetti selezionati automaticamente\" vi permette di\n"
"disabilitare la finestra di dialogo che compare tutte le volte che il\n"
"programma di installazione seleziona automaticamente uno o più pacchetti.\n"
-"Il programma determina in modo automatico, infatti, quali sono i pacchetti\n"
-"che sono indispensabili ad un dato pacchetto (\"dipendenze\") perché\n"
+"Il programma determina infatti in modo automatico quali altri pacchetti\n"
+"sono indispensabili a un dato pacchetto (''dipendenze'') perché\n"
"quest'ultimo possa essere installato con successo.\n"
"\n"
"Il piccolo dischetto floppy in fondo alla lista vi permette di caricare una\n"
@@ -2779,7 +2731,7 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"It is now time to specify which programs you wish to install on your\n"
"system. There are thousands of packages available for Mandrake Linux, and\n"
@@ -2838,11 +2790,11 @@ msgstr ""
"\n"
"Se state effettuando un'installazione standard da CD-ROM, per prima cosa vi\n"
"verrà chiesto di specificare quali sono i CD in vostro possesso (solo se\n"
-"siete in modalità Esperto): controllate i CD della distribuzione, cliccate\n"
-"sulle caselle corrispondenti ai CD che avete e infine sul pulsante \"Ok\"\n"
+"siete in modalità Esperto): controllate le etichette dei CD e cliccate\n"
+"sulle caselle corrispondenti a quelli di cui disponete. Cliccate su \"Ok\"\n"
"quando siete pronti per continuare.\n"
"\n"
-"I pacchetti sono organizzati in gruppi corrispondenti ad usi particolari\n"
+"I pacchetti sono organizzati in gruppi corrispondenti a usi particolari\n"
"della vostra macchina. I gruppi sono a loro volta divisi in quattro\n"
"sezioni:\n"
"\n"
@@ -2860,10 +2812,10 @@ msgstr ""
"grafica!\n"
"\n"
"Spostando il puntatore del mouse sul nome di un gruppo verrà mostrato un\n"
-"breve testo di informazioni riguardo quest'ultimo. Se state effettuando\n"
+"breve testo di informazioni a riguardo. Se state effettuando\n"
"un'installazione normale (non un aggiornamento) e deselezionate tutti i\n"
"gruppi, comparirà una finestra di dialogo che vi proporrà alcune opzioni\n"
-"relative ad un'installazione \"minima\":\n"
+"relative a un'installazione ''minima'':\n"
"\n"
" * \"With X\": installa i pacchetti strettamente necessari per avere un\n"
"ambiente grafico funzionante;\n"
@@ -2889,16 +2841,16 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
"knows if a selected package is located on another CD-ROM so it will eject\n"
"the current CD and ask you to insert the correct CD as required."
msgstr ""
"La distribuzione Mandrake Linux è suddivisa su più CD-ROM. DrakX sa se uno\n"
-"dei pacchetti selezionati si trova su un altro CD-ROM, pertanto provvederà\n"
-"ad espellere il CD attualmente inserito nel lettore e a chiedervi di\n"
-"inserire quello corretto."
+"dei pacchetti selezionati si trova su un altro CD-ROM, pertanto provvederà,\n"
+"quando necessario, a espellere il CD attualmente inserito nel lettore e a\n"
+"chiedervi di inserire quello corretto."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
@@ -2939,11 +2891,11 @@ msgstr ""
"vostro disco rigido. Potete attenervi alle scelte fatte dall'assistente,\n"
"vanno bene per la maggior parte delle installazioni. Se fate dei\n"
"cambiamenti, ricordate che dovete definire per lo meno una partizione root\n"
-"(\"radice\") (\"/\"). Non scegliete una partizione troppo piccola,\n"
-"altrimenti non sarete in grado di installare parte del software. Se volete\n"
-"archiviare i vostri dati su una partizione separata, dovrete creare anche\n"
-"una partizione per \"/home\" (questo è possibile soltanto se avete a\n"
-"disposizione più di una partizione Linux).\n"
+"(''radice'') (\"/\"). Non sceglietela troppo piccola, altrimenti non sarete\n"
+"in grado di installare parte del software. Se poi volete archiviare i\n"
+"vostri dati su una partizione separata, dovrete assegnare una partizione\n"
+"anche a \"/home\" (ciò è possibile soltanto se avete a disposizione più\n"
+"partizioni Linux).\n"
"\n"
"Ogni partizione è elencata in base a queste caratteristiche: \"Nome\",\n"
"\"Capacità\".\n"
@@ -2965,14 +2917,14 @@ msgstr ""
"\n"
" * \"d\" significa \"disco rigido slave sul controller IDE secondario\".\n"
"\n"
-"Per i dischi rigidi di tipo SCSI, invece, una \"a\" significa \"ID SCSI\n"
-"più\", una \"b\" significa \"ID SCSI superiore ad a\", ecc."
+"Per i dischi rigidi di tipo SCSI, invece, una \"a\" significa \"ID SCSI più\n"
+"basso\", una \"b\" significa \"ID SCSI immediatamente successivo ad a\",\n"
+"etc."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
-# ../../help.pm_.c:13, fuzzy
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"GNU/Linux is a multi-user system, meaning each user can have their own\n"
"preferences, their own files and so on. You can read the ``Starter Guide''\n"
@@ -3012,19 +2964,18 @@ msgid ""
"->\". If you are not interested in this feature, uncheck the \"Do you want\n"
"to use this feature?\" box."
msgstr ""
-"GNU/Linux è un sistema operativo multiutente, e questo significa che\n"
-"ciascun utente può disporre di una configurazione personalizzata, di uno\n"
-"spazio per i propri file, e così via; consultate il \"Manuale dell'utente\"\n"
-"per saperne di più. Ma, a differenza di \"root\", che è l'amministratore\n"
-"del sistema, gli utenti che aggiungerete adesso non avranno il diritto di\n"
-"cambiare nulla, se non i propri file e la propria configurazione. Dovrete\n"
-"crearne almeno uno per voi stessi, e dovreste usare quello per l'uso\n"
-"quotidiano: per quanto sia molto comodo entrare nel sistema come \"root\"\n"
-"tutti i giorni, potrebbe anche essere molto pericoloso! Anche un errore\n"
-"banale potrebbe significare un sistema non più in grado di funzionare\n"
-"correttamente. Se, invece, commettete un errore, anche grave, in qualità di\n"
-"utente normale, potreste perdere parte dei vostri dati, ma non\n"
-"compromettere l'intero sistema.\n"
+"GNU/Linux è un sistema operativo multiutente, ciò significa che ciascun\n"
+"utente può disporre di una configurazione personalizzata, di uno spazio per\n"
+"i propri file, e così via; consultate la ''Guida introduttiva'' per saperne\n"
+"di più. Ma, a differenza di \"root\", che è l'amministratore del sistema,\n"
+"gli utenti che aggiungerete adesso non avranno il diritto di cambiare\n"
+"nulla, se non i propri file e la propria configurazione. Dovrete crearne\n"
+"almeno uno per voi stessi, da utilizzare per l'uso quotidiano: per quanto\n"
+"molto comodo, entrare nel sistema come \"root\" tutti i giorni potrebbe\n"
+"essere molto pericoloso! Anche un banale errore potrebbe significare un\n"
+"sistema non più in grado di funzionare correttamente. Se, invece,\n"
+"commettete un errore, anche grave, in qualità di utente normale, potreste\n"
+"perdere parte dei vostri dati, ma non compromettere l'intero sistema.\n"
"\n"
"Prima di tutto, inserite il vostro nome reale. Naturalmente questo non è\n"
"obbligatorio: potete digitare quello che volete. Fatto questo, DrakX\n"
@@ -3041,12 +2992,19 @@ msgstr ""
"aver aggiunto tutti gli utenti che volete, selezionate \"Fatto\".\n"
"\n"
"Cliccando sul pulsante \"Avanzato\" potrete cambiare la \"shell\" per\n"
-"quell'utente (come opzione predefinita è bash)."
+"quell'utente (quella predefinita è bash).\n"
+"\n"
+"Quando avrete finito di aggiungere utenti al sistema, vi verrà proposto di\n"
+"sceglierne uno per effettuare un login automatico ogni volta che il\n"
+"computer ha terminato la fase di boot. Se questa caratteristica vi\n"
+"interessa (e non tenete particolarmente alla sicurezza locale), scegliete\n"
+"l'utente desiderato e l'ambiente grafico che preferite, poi cliccate su\n"
+"\"Sì\". Se la cosa non vi interessa, cliccate su \"No\"."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manualB/modules/it/drakx-chapter.xml
#: ../../help.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Before continuing, you should carefully read the terms of the license. It\n"
"covers the entire Mandrake Linux distribution. If you do agree with all the\n"
@@ -3063,7 +3021,7 @@ msgstr ""
#: ../../install2.pm:1
#, c-format
msgid "You must also format %s"
-msgstr "Si deve formattare anche %s"
+msgstr "Devi formattare anche %s"
#: ../../install2.pm:1
#, c-format
@@ -3128,7 +3086,7 @@ msgstr ""
"pacchetti: %s\n"
"\n"
"\n"
-"Devo davvero rimuoverli?\n"
+"Vuoi davvero rimuoverli?\n"
#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
@@ -3160,22 +3118,22 @@ msgstr ""
"Sono stati selezionati i seguenti server: %s\n"
"\n"
"\n"
-"Questi server verranno attivati automaticamente. Non presentano problemi di\n"
-"sicurezza conosciuti, ma potrebbero esserne scoperti di nuovi. In tal caso,\n"
-" bisogna preoccuparsi di aggiornarli non appena possibile.\n"
+"Questi server verranno attivati automaticamente. Non presentano\n"
+"problemi di sicurezza noti, ma potrebbero esserne scoperti di nuovi.\n"
+"In tal caso, bisogna preoccuparsi di aggiornarli al più presto.\n"
"\n"
"\n"
-"Devo davvero installare questi server?\n"
+"Vuoi davvero installare questi server?\n"
#: ../../install_gtk.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "System configuration"
-msgstr "Riconfigurazione automatica"
+msgstr "Configurazione del sistema"
#: ../../install_gtk.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "System installation"
-msgstr "Installazione di SILO"
+msgstr "Installazione del sistema"
#: ../../install_interactive.pm:1
#, c-format
@@ -3196,7 +3154,7 @@ msgstr "Partizionamento fallito: %s"
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-"Il wizard di partizionamento di DrakX ha trovato le seguenti soluzioni:"
+"L'assistente per partizionare di DrakX ha trovato le seguenti soluzioni:"
#: ../../install_interactive.pm:1
#, c-format
@@ -3210,7 +3168,7 @@ msgid ""
"When you are done, don't forget to save using `w'"
msgstr ""
"Adesso si può partizionare %s\n"
-"Alla fine, ricordarsi di salvare usando\"w\""
+"Alla fine, ricordardati di salvare usando\"w\""
#: ../../install_interactive.pm:1
#, c-format
@@ -3256,6 +3214,10 @@ msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Windows(TM)"
msgstr ""
+"Per assicurare l'integrità dei dati dopo aver ridimensionato delle "
+"partizioni,\n"
+"saranno eseguiti dei controlli sul filesystem al prossimo riavvio di Windows"
+"(TM)"
#: ../../install_interactive.pm:1
#, c-format
@@ -3297,10 +3259,10 @@ msgstr ""
"ATTENZIONE!\n"
"\n"
"DrakX ora ridimensionerà la partizione Windows. Attenzione: questa\n"
-"operazione è pericolosa. Se non lo si è già fatto, si deve prima uscire\n"
+"operazione è pericolosa. Se non lo hai già fatto, devi prima uscire\n"
"dall'installazione, lanciare scandisk sotto Windows (e, magari, defrag),\n"
-"e poi riavviare l'installazione. Servirebbe anche un backup dei dati.\n"
-"Quando si è sicuri, premere Ok."
+"e poi riavviare l'installazione. È consigliato anche un backup dei dati.\n"
+"Quando sei sicuro, premi Ok."
#: ../../install_interactive.pm:1
#, c-format
@@ -3314,9 +3276,9 @@ msgstr ""
"Mandrake Linux."
#: ../../install_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Computing the size of the Windows partition"
-msgstr "Usa lo spazio libero della partizione Windows"
+msgstr "Sto calcolando la dimensione della partizione Windows"
#: ../../install_interactive.pm:1
#, c-format
@@ -3461,7 +3423,7 @@ msgstr ""
#: ../../install_messages.pm:1
#, c-format
msgid "http://www.mandrakelinux.com/en/91errata.php3"
-msgstr ""
+msgstr "http://www.mandrakelinux.com/en/91errata.php3"
#: ../../install_messages.pm:1
#, c-format
@@ -3723,7 +3685,7 @@ msgstr ""
"indirizzata all'autore di tale componente, e non alla MandrakeSoft. I "
"programmi sviluppati dalla MandrakeSoft S.A. sono soggetti alla licenza GPL."
"La documentazione scritta dalla MandrakeSoft S.A. è soggetta ad una licenza "
-"specifica. Per favore consultate la documentazione per ulteriori dettagli.\n"
+"specifica. Per favore consulta la documentazione per ulteriori dettagli.\n"
"\n"
"\n"
"4. Diritti di proprietà intellettuale\n"
@@ -3752,7 +3714,7 @@ msgstr ""
#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
#, c-format
msgid "Entering step `%s'\n"
-msgstr "Inizio fase\"%s\"\n"
+msgstr "Inizio fase \"%s\"\n"
#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../ugtk2.pm:1
#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
@@ -3761,12 +3723,12 @@ msgstr "Inizio fase\"%s\"\n"
#: ../../standalone/harddrake2:1
#, c-format
msgid "Help"
-msgstr "Aiuto"
+msgstr "Guida"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "not configured"
-msgstr "riconfigura"
+msgstr "non configurata"
#: ../../install_steps_gtk.pm:1 ../../standalone/drakbackup:1
#: ../../standalone/drakboot:1 ../../standalone/drakgw:1
@@ -3782,7 +3744,7 @@ msgstr "Vado avanti comunque?"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "There was an error installing packages:"
-msgstr "C'è stato un errore installando i pacchetti:"
+msgstr "C'è stato un errore nell'installazione dei pacchetti:"
#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
@@ -3827,9 +3789,9 @@ msgid "%d packages"
msgstr "%d pacchetti"
#: ../../install_steps_gtk.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "No details"
-msgstr "Dettagli"
+msgstr "Nessun dettaglio"
#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
@@ -3907,7 +3869,7 @@ msgid ""
"Are you sure you want to deselect it?"
msgstr ""
"Questo pacchetto deve essere aggiornato\n"
-"Si vuole veramente deselezionarlo?"
+"Vuoi veramente deselezionarlo?"
#: ../../install_steps_gtk.pm:1
#, c-format
@@ -3939,7 +3901,7 @@ msgstr "I seguenti pacchetti stanno per essere installati"
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-"Non si può selezionare questo pacchetto perchè non è rimasto\n"
+"Non si può selezionare questo pacchetto perché non è rimasto\n"
"abbastanza spazio per installarlo"
#: ../../install_steps_gtk.pm:1
@@ -4003,8 +3965,8 @@ msgid ""
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-"Il sistema ha poche risorse. Si potrebbero avere problemi installando\n"
-"Mandrake Linux. In tal caso, in alternativa si può tentare "
+"Il sistema ha poche risorse. Potrebbero verificarsi problemi installando\n"
+"Mandrake Linux. In tal caso, come alternativa, puoi tentare "
"un'installazione \n"
"testuale. Per questo, premere \"F1\" all'avvio da CDROM e poi digitare \"text"
"\"."
@@ -4038,7 +4000,7 @@ msgstr ""
"ma in tal caso il programma partizionerà automaticamente il disco!!\n"
"(questa opzione è pensata per l'installazione su un'altra macchina).\n"
"\n"
-"Probabilmente preferirete ripetere l'installazione.\n"
+"Probabilmente preferisci ripetere l'installazione.\n"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4046,9 +4008,9 @@ msgid "Generate auto install floppy"
msgstr "Crea il floppy di installazione automatica"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Reboot"
-msgstr "Root"
+msgstr "Riavvia"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4082,11 +4044,11 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
"Potrebbe essere necessario cambiare il dispositivo di boot Open Firmware\n"
-" per abilitare il bootloader. Se non vedete il prompt del bootloader\n"
-" dopo il riavvio, premete Command-Option-O-F al riavvio e digitate:\n"
+" per abilitare il bootloader. Se non vedi il prompt del bootloader\n"
+" dopo il riavvio, premi Command-Option-O-F al riavvio e digita:\n"
" setenv boot-device %s,\\\\:tbxi\n"
-" Poi digitate: shut-down\n"
-"Al boot successivo dovreste vedere il prompt del bootloader."
+" Poi digita: shut-down\n"
+"Al boot successivo dovresti vedere il prompt del bootloader."
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4123,8 +4085,8 @@ msgid ""
msgstr ""
"Apparentemente disponi di una macchina OldWorld o\n"
" sconosciuta, il bootloader yaboot non andrà bene per te.\n"
-"L'installazione continuerà, ma dovrai usare\n"
-" BootX per avviare il tuo computer"
+"L'installazione continuerà, ma dovrai usare BootX\n"
+" o qualche altro metodo per avviare il tuo computer"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4152,7 +4114,7 @@ msgid "Authentication Windows Domain"
msgstr "Autenticazione sul dominio Windows"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
@@ -4169,14 +4131,14 @@ msgid ""
msgstr ""
"Perché questo funzioni con un PDC di Windows 2000, probabilmente si dovrà "
"chiedere all'amministratore di lanciare: C:\\>net localgroup \"Pre-Windows "
-"2000 Compatible Access\" everyone /add e di riavviare il server.Servirà "
+"2000 Compatible Access\" everyone /add e di riavviare il server. Servirà "
"anche il nome e la password di un amministratore di dominio per aggiungere "
"la macchina al dominio Windows(TM).\n"
"Se la rete non è ancora attiva, Drakx cercherà di collegarsi al dominio dopo "
"la configurazione della rete.\n"
"Se questa configurazione fallisse per qualche motivo e l'autenticazione sul "
-"dominio non funzionasse, bisognerà lanciare 'smbpasswd -j DOMAIN -U USER%"
-"PASSWORD' il nome del dominio Windows(tm), e nome e password "
+"dominio non funzionasse, bisognerà lanciare 'smbpasswd -j DOMAIN -U USER%%"
+"PASSWORD' usando il nome del dominio Windows(tm), e nome e password "
"dell'amministratore, dopo il riavvio del sistema.\n"
"Il comando 'wbinfo -t' permette di testare il funzionamento "
"dell'autenticazione."
@@ -4251,12 +4213,12 @@ msgstr "Scegliere la password per root"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
-msgstr ""
+msgstr "Non hai configurato X. Sei sicuro di non volerlo fare?"
#: ../../install_steps_interactive.pm:1 ../../services.pm:1
#, c-format
msgid "Services: %d activated for %d registered"
-msgstr ""
+msgstr "Servizi : %d attivati su %d registrati"
#: ../../install_steps_interactive.pm:1 ../../services.pm:1
#, c-format
@@ -4269,30 +4231,36 @@ msgstr "Servizi"
msgid "System"
msgstr "Sistema"
+#. -PO: example: lilo-graphic on /dev/hda1
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "%s on %s"
+msgstr "%s (porta %s)"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid "Bootloader"
-msgstr "Bootloader da usare"
+msgstr "Bootloader"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Boot"
-msgstr "Root"
+msgstr "Boot"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "disabled"
-msgstr "disabilita"
+msgstr "disabilitata"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "activated"
-msgstr "attivare adesso"
+msgstr "attivato"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Firewall"
-msgstr "Firewall/Router"
+msgstr "Firewall"
#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, c-format
@@ -4310,19 +4278,19 @@ msgid "Network"
msgstr "Rete"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Network & Internet"
-msgstr "Interfaccia di rete"
+msgstr "Rete & Internet"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Graphical interface"
-msgstr "Avvio con interfaccia grafica"
+msgstr "Interfaccia grafica"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Hardware"
-msgstr "HardDrake"
+msgstr "Hardware"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4406,17 +4374,17 @@ msgstr "L'orologio dell'hardware è impostato su GMT"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Which is your timezone?"
-msgstr "Qual'è il fuso orario locale?"
+msgstr "Qual è il fuso orario locale?"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Would you like to try again?"
-msgstr "Vorresti configurare la stampa?"
+msgstr "Vuoi riprovare?"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Unable to contact mirror %s"
-msgstr "Impossibile eseguire la chiamata fork: %s"
+msgstr "Impossibile contattare il mirror %s"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4426,7 +4394,7 @@ msgstr "Connessione al mirror per avere la lista dei pacchetti disponibili"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose a mirror from which to get the packages"
-msgstr "Sceglire un mirror da cui prelevare i pacchetti"
+msgstr "Scegliere un mirror da cui prelevare i pacchetti"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4449,24 +4417,23 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
"Adesso c'è la possibilità di scaricare dei pacchetti aggiornati che sono\n"
-"stati distribuiti dopo l'uscita della distribuzione. I pacchetti possono "
-"contenere\n"
-"aggiornamenti di sicurezza o risoluzione di bug.\n"
+"stati modificati dopo l'uscita della distribuzione. I pacchetti possono "
+"contenere aggiornamenti di sicurezza o risoluzione di bug.\n"
"\n"
-"Per scaricare questi pacchetti è necessario disporre di una connessione a\n"
-"Internet funzionante.\n"
+"Per scaricare questi pacchetti è necessario disporre di una connessione\n"
+"a Internet funzionante.\n"
"\n"
-"Devo installare gli aggiornamenti?"
+"Vuoi installare gli aggiornamenti?"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
-msgstr "Per favore insere il floppy di aggiornamento moduli nel drive %s"
+msgstr "Per favore inserire il floppy di aggiornamento moduli nel drive %s"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
-msgstr "Per favore insere il floppy di avvio utilizzato nel drive %s"
+msgstr "Per favore inserire il floppy di avvio utilizzato nel drive %s"
#: ../../install_steps_interactive.pm:1
#, c-format
@@ -4610,7 +4577,7 @@ msgstr ""
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-"Swap insufficiente per completare l'installazione. Per favore, aumentarne le "
+"Swap insufficiente per completare l'installazione. Per favore, aumentane le "
"dimensioni"
#: ../../install_steps_interactive.pm:1
@@ -4712,15 +4679,20 @@ msgstr "Porta del mouse"
#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please choose your type of mouse."
-msgstr "Per favore, scegliere il tipo di mouse."
+msgstr "Per favore, scegli il tipo di mouse."
#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
+msgid "Encryption key for %s"
+msgstr "Chiave di crittazione"
+
+#: ../../install_steps_interactive.pm:1
+#, c-format
msgid "Upgrade %s"
-msgstr "Aggiornamento"
+msgstr "Aggiornamento %s"
#: ../../install_steps_interactive.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Is this an install or an upgrade?"
msgstr "È un'installazione o un aggiornamento?"
@@ -4790,8 +4762,8 @@ msgid ""
msgstr ""
"Alcuni pacchetti importanti non sono stati installati correttamente.\n"
"O il lettore di cdrom o il cdrom sono danneggiati.\n"
-"Controllare il cdrom su un sistema già installato digitando \"rpm -qpl "
-"mandrake/RPMS/*.rpm\"\n"
+"Controlla il cdrom su un sistema già installato digitando \"rpm -qpl "
+"Mandrake/RPMS/*.rpm\"\n"
#: ../../install_steps.pm:1
#, c-format
@@ -4839,9 +4811,9 @@ msgid "Advanced"
msgstr "Avanzato"
#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Remove"
-msgstr "Rimuovi lista"
+msgstr "Rimuovi"
#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
#, c-format
@@ -4968,12 +4940,12 @@ msgstr "Tastiera Thai"
#: ../../keyboard.pm:1
#, c-format
msgid "Tamil (Typewriter-layout)"
-msgstr "Tamil (macchina da scrivere)"
+msgstr "Tamil (mappa macchina da scrivere)"
#: ../../keyboard.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Tamil (ISCII-layout)"
-msgstr "Tamil (TSCII)"
+msgstr "Tamil (mappa ISCII)"
#: ../../keyboard.pm:1
#, c-format
@@ -5053,12 +5025,12 @@ msgstr "Olandese"
#: ../../keyboard.pm:1
#, c-format
msgid "Maltese (US)"
-msgstr ""
+msgstr "Maltese (US)"
#: ../../keyboard.pm:1
#, c-format
msgid "Maltese (UK)"
-msgstr ""
+msgstr "Maltese (UK)"
#: ../../keyboard.pm:1
#, c-format
@@ -5068,7 +5040,7 @@ msgstr "Mongola (cirillica)"
#: ../../keyboard.pm:1
#, c-format
msgid "Myanmar (Burmese)"
-msgstr ""
+msgstr "Myanmar (Burmese)"
#: ../../keyboard.pm:1
#, c-format
@@ -5078,7 +5050,7 @@ msgstr "Macedone"
#: ../../keyboard.pm:1
#, c-format
msgid "Malayalam"
-msgstr ""
+msgstr "Malayalam"
#: ../../keyboard.pm:1
#, c-format
@@ -5106,9 +5078,9 @@ msgid "Lithuanian AZERTY (old)"
msgstr "Lituana AZERTY (vecchia)"
#: ../../keyboard.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Laotian"
-msgstr "Lettone"
+msgstr "Laotiana"
#: ../../keyboard.pm:1
#, c-format
@@ -5128,7 +5100,7 @@ msgstr "Giapponese 106 tasti"
#: ../../keyboard.pm:1
#, c-format
msgid "Inuktitut"
-msgstr ""
+msgstr "Inuktitut"
#: ../../keyboard.pm:1
#, c-format
@@ -5168,12 +5140,12 @@ msgstr "Ungherese"
#: ../../keyboard.pm:1
#, c-format
msgid "Gurmukhi"
-msgstr ""
+msgstr "Gurmukhi"
#: ../../keyboard.pm:1
#, c-format
msgid "Gujarati"
-msgstr ""
+msgstr "Gujarati"
#: ../../keyboard.pm:1
#, c-format
@@ -5233,7 +5205,7 @@ msgstr "Danese"
#: ../../keyboard.pm:1
#, c-format
msgid "Devanagari"
-msgstr ""
+msgstr "Devanagari"
#: ../../keyboard.pm:1
#, c-format
@@ -5271,9 +5243,9 @@ msgid "Belarusian"
msgstr "Bielorussa"
#: ../../keyboard.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Bosnian"
-msgstr "Estone"
+msgstr "Bosniaca"
#: ../../keyboard.pm:1
#, c-format
@@ -5291,9 +5263,9 @@ msgid "Bulgarian (phonetic)"
msgstr "Bulgara (fonetica)"
#: ../../keyboard.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Bengali"
-msgstr "abilita"
+msgstr "Bengalese"
#: ../../keyboard.pm:1
#, c-format
@@ -5308,7 +5280,7 @@ msgstr "Azera (latina)"
#: ../../keyboard.pm:1
#, c-format
msgid "Arabic"
-msgstr ""
+msgstr "Arabo"
#: ../../keyboard.pm:1
#, c-format
@@ -5356,9 +5328,9 @@ msgid "South Africa"
msgstr "Sud Africa"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Serbia"
-msgstr "seriale"
+msgstr "Serbia"
#: ../../lang.pm:1
#, c-format
@@ -5378,7 +5350,7 @@ msgstr "Samoa"
#: ../../lang.pm:1
#, c-format
msgid "Wallis and Futuna"
-msgstr "Isole Wallis e Futuna"
+msgstr "Wallis e Futuna"
#: ../../lang.pm:1
#, c-format
@@ -5443,12 +5415,12 @@ msgstr "Ucraina"
#: ../../lang.pm:1
#, c-format
msgid "Tanzania"
-msgstr ""
+msgstr "Tanzania"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Taiwan"
-msgstr "Thailandia"
+msgstr "Taiwan"
#: ../../lang.pm:1
#, c-format
@@ -5526,9 +5498,9 @@ msgid "Swaziland"
msgstr "Swaziland"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Syria"
-msgstr "Suriname"
+msgstr "Siria"
#: ../../lang.pm:1
#, c-format
@@ -5616,9 +5588,9 @@ msgid "Rwanda"
msgstr "Ruanda"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Russia"
-msgstr "Russa"
+msgstr "Russia"
#: ../../lang.pm:1
#, c-format
@@ -5651,9 +5623,9 @@ msgid "Portugal"
msgstr "Portogallo"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Palestine"
-msgstr "Salva scelta pacchetti"
+msgstr "Palestina"
#: ../../lang.pm:1
#, c-format
@@ -5861,9 +5833,9 @@ msgid "Morocco"
msgstr "Marocco"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Libya"
-msgstr "Liberia"
+msgstr "Libia"
#: ../../lang.pm:1
#, c-format
@@ -5913,7 +5885,7 @@ msgstr "Libano"
#: ../../lang.pm:1
#, c-format
msgid "Laos"
-msgstr ""
+msgstr "Laos"
#: ../../lang.pm:1
#, c-format
@@ -5931,14 +5903,14 @@ msgid "Kuwait"
msgstr "Kuwait"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Korea"
-msgstr "Ancora"
+msgstr "Corea"
#: ../../lang.pm:1
#, c-format
msgid "Korea (North)"
-msgstr ""
+msgstr "Corea del Nord"
#: ../../lang.pm:1
#, c-format
@@ -5963,7 +5935,7 @@ msgstr "Cambogia"
#: ../../lang.pm:1
#, c-format
msgid "Kyrgyzstan"
-msgstr "Kyrgyzstan"
+msgstr "Kirghizstan"
#: ../../lang.pm:1
#, c-format
@@ -5991,9 +5963,9 @@ msgid "Iceland"
msgstr "Islanda"
#: ../../lang.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Iran"
-msgstr "Iraq"
+msgstr "Iran"
#: ../../lang.pm:1
#, c-format
@@ -6048,7 +6020,7 @@ msgstr "Honduras"
#: ../../lang.pm:1
#, c-format
msgid "Heard and McDonald Islands"
-msgstr "Isola di Heard e Isola di McDonald"
+msgstr "Isole Heard e McDonald"
#: ../../lang.pm:1
#, c-format
@@ -6283,7 +6255,7 @@ msgstr "Svizzera"
#: ../../lang.pm:1
#, c-format
msgid "Congo (Brazzaville)"
-msgstr ""
+msgstr "Congo (Brazzaville)"
#: ../../lang.pm:1
#, c-format
@@ -6293,7 +6265,7 @@ msgstr "Repubblica Centro Africana"
#: ../../lang.pm:1
#, c-format
msgid "Congo (Kinshasa)"
-msgstr ""
+msgstr "Congo (Kinshasa)"
#: ../../lang.pm:1
#, c-format
@@ -6313,7 +6285,7 @@ msgstr "Belize"
#: ../../lang.pm:1
#, c-format
msgid "Belarus"
-msgstr "Belarus"
+msgstr "Bielorussia"
#: ../../lang.pm:1
#, c-format
@@ -6393,7 +6365,7 @@ msgstr "Barbados"
#: ../../lang.pm:1
#, c-format
msgid "Bosnia and Herzegovina"
-msgstr "Bosnia e Herzegovina"
+msgstr "Bosnia e Erzegovina"
#: ../../lang.pm:1
#, c-format
@@ -6433,7 +6405,7 @@ msgstr "Angola"
#: ../../lang.pm:1
#, c-format
msgid "Netherlands Antilles"
-msgstr "Antille dei Paesi Bassi"
+msgstr "Antille olandesi"
#: ../../lang.pm:1
#, c-format
@@ -6473,7 +6445,7 @@ msgstr "Afghanistan"
#: ../../lang.pm:1
#, c-format
msgid "default:LTR"
-msgstr "default:LTR"
+msgstr "predefinito: LTR"
#: ../../loopback.pm:1
#, c-format
@@ -6490,8 +6462,8 @@ msgstr "Prima rimuovi i volumi logici\n"
msgid ""
"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
-"Il supporto PCMCIA non è più disponibile per i kernel 2.2, per favore usate "
-"un kernel 2.4."
+"Il supporto PCMCIA non è più disponibile per i kernel 2.2, per favore usa un "
+"kernel 2.4."
#: ../../mouse.pm:1
#, c-format
@@ -6816,7 +6788,7 @@ msgstr "Amministrazione remota"
#: ../../services.pm:1
#, c-format
msgid "File sharing"
-msgstr ""
+msgstr "Condivisione dei file"
#: ../../services.pm:1
#, c-format
@@ -6892,13 +6864,14 @@ msgstr ""
"protocolli di routing più complessi sono necessari per reti più complesse."
#: ../../services.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Assign raw devices to block devices (such as hard drive\n"
"partitions), for the use of applications such as Oracle or DVD players"
msgstr ""
"Assegna dispositivi raw a dispositivi a blocchi (quali le partizioni\n"
-"di un disco rigido), da usare con applicazioni come Oracle."
+"di un disco rigido), da usare con applicazioni come Oracle \n"
+"o con lettori di DVD"
#: ../../services.pm:1
#, c-format
@@ -7020,7 +6993,7 @@ 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 è il demone di stampa richiesto perchè lpr funzioni propriamente. È\n"
+"lpd è il demone di stampa richiesto perché lpr funzioni propriamente. È\n"
"fondamentalmente un server che distribuisce i job di stampa alle stampanti."
#: ../../services.pm:1
@@ -7086,7 +7059,7 @@ msgstr ""
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
-"Apache è un server per World Wide Web. È usato per gestire files HTML\n"
+"Apache è un server per World Wide Web. È usato per gestire file HTML\n"
"e CGI."
#: ../../services.pm:1
@@ -7149,7 +7122,7 @@ msgstr ""
#: ../../services.pm:1
#, c-format
msgid "Anacron is a periodic command scheduler."
-msgstr "Anacron, un gestore di comandi periodici."
+msgstr "Anacron è un gestore di comandi periodici."
#: ../../services.pm:1
#, c-format
@@ -7168,6 +7141,9 @@ msgid ""
"Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
msgstr ""
+"\n"
+"Uso : %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
+"testing] [-v|--version] "
#: ../../standalone.pm:1
#, c-format
@@ -7176,6 +7152,9 @@ msgid ""
" XFdrake [--noauto] monitor\n"
" XFdrake resolution"
msgstr ""
+" [qualsiasi cosa]\n"
+" XFdrake [--noauto] schermo \n"
+" XFdrake risoluzione"
#: ../../standalone.pm:1
#, c-format
@@ -7183,6 +7162,8 @@ msgid ""
"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
"usbtable] [--dynamic=dev]"
msgstr ""
+"[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-"
+"usbtable] [--dynamic=dev]"
#: ../../standalone.pm:1
#, c-format
@@ -7195,11 +7176,18 @@ msgid ""
"description window\n"
" --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
+"[OPZIONE]...\n"
+" --no-confirmation non chiedere prima una conferma in modalità "
+"MandrakeUpdate\n"
+" --no-verify-rpm non verificare le firme dei pacchetti\n"
+" --changelog-first mostrare nella finestra delle descrizioni il log "
+"dei cambiamenti prima della lista dei file\n"
+" --merge-all-rpmnew unire tutti i file .rpmnew/.rpmsave incontrati"
#: ../../standalone.pm:1
#, c-format
msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
-msgstr ""
+msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
#: ../../standalone.pm:1
#, c-format
@@ -7214,16 +7202,25 @@ msgid ""
"--status : returns 1 if connected 0 otherwise, then exit.\n"
"--quiet : don't be interactive. To be used with (dis)connect."
msgstr ""
+"[OPZIONI]\n"
+"Applicazione per stabilire e controllare la connessione a reti e internet\n"
+"\n"
+"--defaultintf interfaccia : usa quest'interfaccia come predefinita\n"
+"--connect : connetti ad internet se non si è già collegati\n"
+"--disconnect : disconnetti da internet se si è collegati\n"
+"--force : usato con (dis)connect, forza la (dis)connessione.\n"
+"--status : ritorna 1 se connesso 0 altrimenti, poi esce.\n"
+"--quiet : senza interattività. Da usare con (dis)connect."
#: ../../standalone.pm:1
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
-msgstr ""
+msgstr "[--file=mio-file] [--word=mia-parola] [--explain=regexp] [--alert]"
#: ../../standalone.pm:1
#, c-format
msgid "[keyboard]"
-msgstr "[tastiera]"
+msgstr "[Tastiera]"
#: ../../standalone.pm:1
#, c-format
@@ -7242,6 +7239,20 @@ msgid ""
"--delclient : delete a client machine from MTS (requires MAC address, "
"IP, nbi image name)"
msgstr ""
+"[OPZIONI]...\n"
+"Configuratore del Mandrake Terminal Server\n"
+"--enable : abilita MTS\n"
+"--disable : disabilita MTS\n"
+"--start : avvia MTS\n"
+"--stop : chiudi MTS\n"
+"--adduser : aggiungi uno degli attuali utenti del sistema a MTS "
+"(serve l'username)\n"
+"--deluser : rimuovi uno degli attuali utenti del sistema da MTS "
+"(serve l'username)\n"
+"--addclient : aggiungi una macchina client a MTS (servono indirizzo "
+"MAC, IP e nbi image name)\n"
+"--delclient : togli una macchina client da MTS (servono indirizzo MAC, "
+"IP e nbi image name)"
#: ../../standalone.pm:1
#, c-format
@@ -7259,6 +7270,18 @@ msgid ""
" : name_of_application like so for staroffice \n"
" : and gs for ghostscript for only this one."
msgstr ""
+"Applicazione per importare e gestire i "
+"font \n"
+"--windows_import : importa da tutte le partizioni windows disponibili.\n"
+"--xls_fonts : mostra tutti i fonts che esistono già in xls\n"
+"--strong : verifica forte dei font.\n"
+"--install : accetta qualsiasi file di font e directory.\n"
+"--uninstall : disinstalla tutti i font o directory di font.\n"
+"--replace : sostituisci tutti i font già esistenti.\n"
+"--application : 0 nessuna applicazione;\n"
+" : 1 tutte le applicazioni disponibili e supportate.\n"
+" : nome_applicazione (ad es. so per staroffice \n"
+" : e gs per ghostscript) se solo per questa."
#: ../../standalone.pm:1
#, c-format
@@ -7270,6 +7293,12 @@ msgid ""
" --report - program should be one of mandrake tools\n"
" --incident - program should be one of mandrake tools"
msgstr ""
+"[OPZIONI] [NOME_PROGRAMMA]\n"
+"\n"
+"OPZIONI:\n"
+" --help - mostra questo messaggio di aiuto.\n"
+" --report - il programma dovrebbe essere uno strumento Mandrake\n"
+" --incident - il programma dovrebbe essere uno strumento Mandrake"
#: ../../standalone.pm:1
#, c-format
@@ -7286,6 +7315,17 @@ msgid ""
"--help : show this message.\n"
"--version : show version number.\n"
msgstr ""
+"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
+"Applicazione per backup e ripristino\n"
+"\n"
+"--default : salva le directory predefinite.\n"
+"--debug : mostra tutti i messaggi di debug.\n"
+"--show-conf : lista dei file o directory da backup.\n"
+"--config-info : mostra le opzioni del file di configurazione (non "
+"per utenti X).\n"
+"--daemon : usa la configurazione del demone. \n"
+"--help : mostra questo messaggio.\n"
+"--version : mostra il numero della versione.\n"
#: ../../standalone.pm:1
#, c-format
@@ -7304,6 +7344,20 @@ msgid ""
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
msgstr ""
+"Questo programma è free software; è lecito ridistribuirlo e/o modificarlo \n"
+"nei termini della Licenza Pubblica Generica GNU come è pubblicata dalla\n"
+"Free Software Foundation; nella versione 2 della licenza o (a propria "
+"scelta)\n"
+"in una versione successiva.\n"
+"\n"
+"Questo programma è distribuito nella speranza che sia utile, ma\n"
+"SENZA ALCUNA GARANZIA; senza neppure la garanzia implicita di\n"
+"NEGOZIABILITÀ o di APPLICABILITÀ PER UN PARTICOLARE SCOPO.\n"
+"Si veda la Licenza Pubblica Generica GNU per maggiori dettagli.\n"
+"Ognuno dovrebbe avere ricevuto una copia della Licenza Pubblica\n"
+"Generica GNU insieme a questo programma; in caso contrario,\n"
+"si scriva alla Free Software Foundation, Inc.,\n"
+"59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
#: ../../steps.pm:1
#, c-format
@@ -7341,9 +7395,9 @@ msgid "Add a user"
msgstr "Aggiungi un utente"
#: ../../steps.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Root password"
-msgstr "Nessuna password"
+msgstr "Password di root"
#: ../../steps.pm:1
#, c-format
@@ -7353,7 +7407,7 @@ msgstr "Installa sistema"
#: ../../steps.pm:1
#, c-format
msgid "Choose packages to install"
-msgstr "Pacchetti da installare"
+msgstr "Scelta dei pacchetti da installare"
#: ../../steps.pm:1
#, c-format
@@ -7361,9 +7415,9 @@ msgid "Format partitions"
msgstr "Formatta partizioni"
#: ../../steps.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Partitioning"
-msgstr "Stampa"
+msgstr "Partizionamento"
#: ../../steps.pm:1
#, c-format
@@ -7378,27 +7432,27 @@ msgstr "Classe d'installazione"
#: ../../steps.pm:1
#, c-format
msgid "Hard drive detection"
-msgstr "Ricerca del disco fisso"
+msgstr "Rilevamento del disco fisso"
#: ../../steps.pm:1
#, c-format
msgid "Configure mouse"
-msgstr "Configura mouse"
+msgstr "Configurazione del mouse"
#: ../../steps.pm:1
#, c-format
msgid "License"
-msgstr ""
+msgstr "Licenza"
#: ../../steps.pm:1
#, c-format
msgid "Language"
-msgstr "Scegli la lingua"
+msgstr "Lingua"
#: ../../ugtk2.pm:1
#, c-format
msgid "utopia 25"
-msgstr ""
+msgstr "utopia 25"
#: ../../ugtk2.pm:1 ../../ugtk.pm:1 ../../network/netconnect.pm:1
#: ../../standalone/drakTermServ:1 ../../standalone/drakbackup:1
@@ -7429,7 +7483,7 @@ msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-"Questa scheda ha il supporto per accelerazione 3D hardware con XFree %s.\n"
+"Questa scheda ha il supporto per l'accelerazione 3D hardware con XFree %s.\n"
"NB: È UN SUPPORTO SPERIMENTALE E POTREBBE BLOCCARE IL COMPUTER."
#: ../../Xconfig/card.pm:1
@@ -7441,7 +7495,7 @@ msgstr "XFree %s con accelerazione 3D hardware SPERIMENTALE"
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-"Questa scheda ha il supporto per accelerazione 3D hardware con XFree %s."
+"Questa scheda ha il supporto per l'accelerazione 3D hardware con XFree %s."
#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
@@ -7455,7 +7509,7 @@ msgid ""
"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 ""
-"Questa scheda ha il supporto per accelerazione 3D hardware, ma solo con "
+"Questa scheda ha il supporto per l'accelerazione 3D hardware, ma solo con "
"XFree %s.\n"
"NB: È UN SUPPORTO SPERIMENTALE E POTREBBE BLOCCARE IL COMPUTER.\n"
"La scheda è supportata anche da XFree %s, che potrebbe gestire meglio il 2D."
@@ -7466,7 +7520,7 @@ 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 ""
-"Questa scheda ha il supporto per accelerazione 3D hardware, ma solo con "
+"Questa scheda ha il supporto per l'accelerazione 3D hardware, ma solo con "
"XFree %s.\n"
"La scheda è supportata anche da XFree %s, che potrebbe gestire meglio il 2D."
@@ -7493,7 +7547,7 @@ msgstr "Configurare tutte le testine indipendentemente"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "Which configuration of XFree do you want to have?"
-msgstr "Che configurazione di XFree si desidera avere?"
+msgstr "Che configurazione di XFree si desidera?"
#: ../../Xconfig/card.pm:1
#, c-format
@@ -7503,7 +7557,7 @@ msgstr "Configurazione di XFree"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "Select the memory size of your graphics card"
-msgstr "Indica la quantità di memoria della scheda grafica"
+msgstr "Indicare la quantità di memoria della scheda grafica"
#: ../../Xconfig/card.pm:1
#, c-format
@@ -7512,7 +7566,7 @@ msgid ""
"What do you want to do?"
msgstr ""
"Il sistema supporta la configurazione di più testine.\n"
-"Cosa devo fare?"
+"Cosa vuoi fare?"
#: ../../Xconfig/card.pm:1
#, c-format
@@ -7567,12 +7621,12 @@ msgstr "1 MB"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "512 kB"
-msgstr "512 kB"
+msgstr "512 KB"
#: ../../Xconfig/card.pm:1
#, c-format
msgid "256 kB"
-msgstr "256 kB"
+msgstr "256 KB"
#: ../../Xconfig/main.pm:1
#, c-format
@@ -7654,7 +7708,7 @@ msgstr ""
msgid "Plug'n Play probing failed. Please select the correct monitor"
msgstr ""
"Il rilevamento Plug'n Play non è riuscito. Occorre scegliere un monitor "
-"preciso."
+"specifico."
#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
#, c-format
@@ -7712,14 +7766,14 @@ msgid "256 colors (8 bits)"
msgstr "256 colori (8 bit)"
#: ../../Xconfig/test.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Is this the correct setting?"
-msgstr "È corretto?"
+msgstr "È l'impostazione corretta?"
#: ../../Xconfig/test.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Leaving in %d seconds"
-msgstr "%d secondi"
+msgstr "Uscita in %d secondi"
#: ../../Xconfig/test.pm:1
#, c-format
@@ -7728,6 +7782,9 @@ msgid ""
"%s\n"
"Try to change some parameters"
msgstr ""
+"Si è verificato un errore:\n"
+"%s\n"
+"Prova a cambiare dei parametri"
#: ../../Xconfig/test.pm:1
#, c-format
@@ -7779,7 +7836,7 @@ msgid ""
msgstr ""
"Posso configurare il computer per avviarlo direttamente in modo grafico "
"(XFree).\n"
-"Si vuole che XFree venga eseguito al riavvio?"
+"Vuoi che XFree venga eseguito al riavvio?"
#: ../../Xconfig/various.pm:1
#, c-format
@@ -7869,7 +7926,7 @@ msgstr "L'URL deve iniziare con http:// o https://"
#: ../../diskdrake/dav.pm:1
#, c-format
msgid "Please enter the WebDAV server URL"
-msgstr "Per favore, insersci l'URL del server WebDAV"
+msgstr "Per favore, inserisci l'URL del server WebDAV"
#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
@@ -7910,7 +7967,7 @@ msgstr ""
"WebDAV è un protocollo che permette montare localmente una directory\n"
"del server web, e di trattarla come un file system locale (purché il web\n"
"server sia configurato come server WebDAV). Si si vuole aggiungere dei\n"
-"punti di mount WebDAV, basta selezionare \"Nuovo\"."
+"punti di mount WebDAV, basta selezionare \"Nuovo\"."
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
@@ -7989,16 +8046,15 @@ msgid "Please click on a partition"
msgstr "Fare clic su una partizione"
#: ../../diskdrake/hd_gtk.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"You have one big MicroSoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
-"C'è una grossa partizione FAT\n"
-"(generalmente usata da Microsoft Dos/Windows).\n"
-"Si suggerisce di ridimensionarla\n"
-"(fare clic su di essa e poi su \"Ridimensiona\")"
+"C'è una grossa partizione MicroSoft Windows.\n"
+"Ti suggerisco di ridimensionare questa partizione\n"
+"(fai clic su di essa e poi su \"Ridimensiona\")"
#: ../../diskdrake/hd_gtk.pm:1
#, c-format
@@ -8450,7 +8506,7 @@ msgstr "Calcolo dei limiti del filesystem FAT"
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Where do you want to mount %s?"
-msgstr "Dove devo montare %s?"
+msgstr "Dove devo montare %s?"
#: ../../diskdrake/interactive.pm:1
#, c-format
@@ -8761,57 +8817,57 @@ msgstr "Impossibile effettuare il login con il nome %s (password errata?)"
#: ../../harddrake/data.pm:1
#, c-format
msgid "cpu # "
-msgstr ""
+msgstr "cpu n. "
#: ../../harddrake/data.pm:1
#, c-format
msgid "SMBus controllers"
-msgstr ""
+msgstr "Controller SMBus"
#: ../../harddrake/data.pm:1
#, c-format
msgid "USB controllers"
-msgstr ""
+msgstr "Controller USB"
#: ../../harddrake/data.pm:1
#, c-format
msgid "SCSI controllers"
-msgstr ""
+msgstr "Controller SCSI"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Firewire controllers"
-msgstr ""
+msgstr "Controller firewire"
#: ../../harddrake/data.pm:1
#, c-format
msgid "(E)IDE/ATA controllers"
-msgstr ""
+msgstr "Controller (E)IDE/ATA"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Joystick"
-msgstr ""
+msgstr "Joystick"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Scanner"
-msgstr "Scegliete uno scanner"
+msgstr "Scanner"
#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
-#, fuzzy, c-format
+#, c-format
msgid "Unknown/Others"
-msgstr "Sconosciuto|Generico"
+msgstr "Sconosciuto|Altri"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Bridges and system controllers"
-msgstr ""
+msgstr "Bridge e controller di sistema"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Modem"
-msgstr "Modello"
+msgstr "Modem"
#: ../../harddrake/data.pm:1
#, c-format
@@ -8819,14 +8875,14 @@ msgid "Ethernetcard"
msgstr "Scheda ethernet"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Processors"
-msgstr "ID processore"
+msgstr "Processori"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Webcam"
-msgstr ""
+msgstr "Webcam"
#: ../../harddrake/data.pm:1
#, c-format
@@ -8834,9 +8890,9 @@ msgid "Soundcard"
msgstr "Scheda audio"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Other MultiMedia devices"
-msgstr "Altri supporti"
+msgstr "Altri dispositivi multimediali"
#: ../../harddrake/data.pm:1
#, c-format
@@ -8844,39 +8900,39 @@ msgid "Tvcard"
msgstr "Scheda TV"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Videocard"
-msgstr "Modo video"
+msgstr "Scheda video"
#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
-#, fuzzy, c-format
+#, c-format
msgid "Tape"
-msgstr "Tipo"
+msgstr "Nastro"
#: ../../harddrake/data.pm:1
#, c-format
msgid "DVD-ROM"
-msgstr ""
+msgstr "DVD-ROM"
#: ../../harddrake/data.pm:1
#, c-format
msgid "CD/DVD burners"
-msgstr ""
+msgstr "Masterizzatori CD/DVD"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "CDROM"
-msgstr "\t-CDROM.\n"
+msgstr "CDROM"
#: ../../harddrake/data.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Disk"
-msgstr "Danese"
+msgstr "Disco"
#: ../../harddrake/data.pm:1
#, c-format
msgid "Zip"
-msgstr ""
+msgstr "Zip"
#: ../../harddrake/data.pm:1
#, c-format
@@ -8886,7 +8942,7 @@ msgstr "Floppy"
#: ../../harddrake/sound.pm:1
#, c-format
msgid "Let me pick any driver"
-msgstr ""
+msgstr "Scelta di un driver"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -8902,11 +8958,15 @@ msgid ""
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
+"Se sei realmente convinto di sapere qual'è il driver giusto\n"
+"per la tua scheda audio, prelevalo da questa lista.\n"
+"\n"
+"Attualmente il driver usato per la tua scheda audio %s è %s "
#: ../../harddrake/sound.pm:1
#, c-format
msgid "Choosing an arbitratry driver"
-msgstr ""
+msgstr "Scelta arbitraria d'un driver..."
#: ../../harddrake/sound.pm:1
#, c-format
@@ -8931,16 +8991,38 @@ msgid ""
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
+"Un controllo classico in caso di problemi audio è lanciare questi comandi:\n"
+"\n"
+"\n"
+"- \"lspcidrake -v | fgrep AUDIO\" ti dice che driver è predefinito per "
+"l'utilizzo\n"
+"della tua scheda\n"
+"\n"
+"- \"grep sound-slot /etc/modules.conf\" ti dice che driver è attualmente "
+"usato\n"
+"per la tua scheda\n"
+"\n"
+"- \"/sbin/lsmod\" ti permette di controllare se il modulo (driver) è\n"
+"caricato o no\n"
+"\n"
+"- \"/sbin/chkconfig --list sound\" e \"/sbin/chkconfig --list alsa\" ti "
+"dice\n"
+"se servizi sound e alsa sono configurati per funzionare all'initlevel 3\n"
+"\n"
+" \"aumix -q\" ti dice se il volume del suono è azzerato o no\n"
+"\n"
+"- \"/sbin/fuser -v /dev/dsp\" ti dice che programma sta usando la scheda\n"
+"audio.\n"
#: ../../harddrake/sound.pm:1
#, c-format
msgid "Sound trouble shooting"
-msgstr ""
+msgstr "Ricerca di problemi per l'audio"
#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
-msgstr "Non esistono driver conosciuti per questa scheda audio (%s)"
+msgstr "Errore: Il driver \"%s\" per la scheda audio non è nell'elenco"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -8958,18 +9040,18 @@ msgid "No known driver"
msgstr "Nessun driver conosciuto"
#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
-"Non c'è nessun altro driver OSS/ALSA conosciuto per questa scheda audio(%s), "
-"che attualmente usa \"%s\""
+"Non c'è nessun driver libero per questa scheda audio(%s), ma ce n'èuno "
+"commerciale a \"%s\""
#: ../../harddrake/sound.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "No open source driver"
-msgstr "Nessun driver conosciuto"
+msgstr "Nessun driver open source"
#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
#, c-format
@@ -8994,7 +9076,7 @@ msgstr ""
#: ../../harddrake/sound.pm:1
#, c-format
msgid "Trouble shooting"
-msgstr ""
+msgstr "Ricerca di guasti"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -9018,7 +9100,7 @@ msgstr ""
"OSS (Open Sound System) è stata la prima API audio. È indipendente dal S.O. "
"(è disponibile per la maggior parte degli Unix) ma è un'API molto elementare "
"e limitata.\n"
-"Per sovrappiù, tutti i drivers OSS reinventano la ruota.\n"
+"Per sovrappiù, tutti i driver OSS reinventano la ruota.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) è un'architettura modularizzata\n"
"che supporta un ampio spettro di schede ISA, USB e PCI.\n"
@@ -9026,7 +9108,7 @@ msgstr ""
"Inoltre, fornisce un'API di livello molto più alto rispetto a OSS.\n"
"\n"
"Per usare alsa, si può scegliere tra usare:\n"
-"- la vecchia API con compatibilità OSSi\n"
+"- la vecchia API con compatibilità OSS\n"
"- la nuova API di ALSA che fornisce funzionalità molto più avanzate, ma che "
"richiede l'utilizzo della libreria ALSA.\n"
@@ -9040,7 +9122,7 @@ msgid ""
msgstr ""
"\n"
"\n"
-"La scheda ora utilizza il driver %s \"%s\" (il driver predefinitoera \"%s\")"
+"La scheda ora utilizza il driver %s \"%s\" (il driver predefinito era \"%s\")"
#: ../../harddrake/sound.pm:1
#, c-format
@@ -9113,12 +9195,12 @@ msgid ""
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed."
msgstr ""
-"Per la maggior parte delle schede di sintonizzia TV recenti, il modulo bttv "
-"del kernel GNU/Linux si limita\n"
-"ad identificare automaticamente i parametri corretti. Se la vostra scheda "
-"non è stata identificata correttamente, potete indicare il tipo giusto di "
-"scheda e sintonizzatore qui. Dovete solo selezionare i parametri della "
-"vostra scheda TV se necessario."
+"Per la maggior parte delle schede di sintonia TV recenti, il modulo bttv del "
+"kernel GNU/Linux si limita\n"
+"ad identificare automaticamente i parametri corretti. Se la scheda non è "
+"stata identificata correttamente, si può indicare ora il tipo giusto di "
+"scheda e sintonizzatore. Si dovrà solo selezionare i parametri della scheda "
+"TV, se necessario"
#: ../../harddrake/v4l.pm:1
#, c-format
@@ -9128,7 +9210,7 @@ msgstr "Sconosciuto|Generico"
#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr "Sconosciuto|CPH05X (bt878) [molti produttori]"
+msgstr "Sconosciuto|CPH05X (bt878) [molte marche]"
#: ../../harddrake/v4l.pm:1
#, c-format
@@ -9141,19 +9223,19 @@ msgid "Auto-detect"
msgstr "Riconoscimento automatico"
#: ../../interactive/newt.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Do"
-msgstr "Fatto"
+msgstr "Fare"
#: ../../interactive/stdio.pm:1
#, c-format
msgid "Your choice? (default %s) "
-msgstr "La tua scelta? (default %s) "
+msgstr "La tua scelta? (altrimenti %s) "
#: ../../interactive/stdio.pm:1
#, c-format
msgid "Bad choice, try again\n"
-msgstr "Scelta errata, prova di nuovo\n"
+msgstr "Scelta errata, riprovare\n"
#: ../../interactive/stdio.pm:1
#, c-format
@@ -9176,9 +9258,9 @@ msgid ""
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-"Per favore scegliete il primo numero dell'intervallo di 10 che desiderate\n"
-"modificare, oppure premete Invio per continuare.\n"
-"La vostra scelta?"
+"Per favore, scegliere il primo numero dell'intervallo di 10 che si desidera\n"
+"modificare, oppure premere Invio per continuare.\n"
+"Cosa si è scelto?"
#: ../../interactive/stdio.pm:1
#, c-format
@@ -9188,12 +9270,12 @@ msgstr "=> Ci sono molte cose fra cui scegliere (%s)\n"
#: ../../interactive/stdio.pm:1
#, c-format
msgid "Your choice? (default `%s'%s) "
-msgstr "La tua scelta? (default \"%s\"%s) "
+msgstr "Cosa si sceglie? (altrimenti \"%s\"%s) "
#: ../../interactive/stdio.pm:1
#, c-format
msgid " enter `void' for void entry"
-msgstr ""
+msgstr " immettere \"void\" come dato vuoto"
#: ../../interactive/stdio.pm:1
#, c-format
@@ -9216,7 +9298,7 @@ msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-"Entrate che dovrete riempire:\n"
+"Voci che si dovranno riempire:\n"
"%s"
#: ../../modules/interactive.pm:1
@@ -9226,7 +9308,7 @@ msgid ""
"Do you want to try again with other parameters?"
msgstr ""
"Caricamento del modulo %s fallito.\n"
-"Si vuole riprovare con altri parametri?"
+"Vuoi riprovare con altri parametri?"
#: ../../modules/interactive.pm:1
#, c-format
@@ -9322,7 +9404,7 @@ msgstr "Trovate %s interfacce %s"
#: ../../modules/interactive.pm:1
#, c-format
msgid "You can configure each parameter of the module here."
-msgstr ""
+msgstr "Qui si possono configurare tutti i parametri del modulo."
#: ../../modules/parameters.pm:1
#, c-format
@@ -9332,17 +9414,17 @@ msgstr "stringhe separate da virgole"
#: ../../modules/parameters.pm:1
#, c-format
msgid "comma separated numbers"
-msgstr ""
+msgstr "numeri separati da virgole"
#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated strings"
-msgstr ""
+msgstr "%d stringhe separate da virgole"
#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated numbers"
-msgstr ""
+msgstr "%d numeri separati da virgole"
#: ../../modules/parameters.pm:1
#, c-format
@@ -9357,6 +9439,10 @@ msgid ""
"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
+"Serve il microcodice Alcatel.\n"
+"Bisogna scaricarlo da\n"
+"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
+"e copiare \"mgmt.o\" in /usr/share/speedtouch"
#: ../../network/adsl.pm:1
#, c-format
@@ -9377,7 +9463,7 @@ msgstr "Connetti ad Internet"
#: ../../network/adsl.pm:1
#, c-format
msgid "Sagem (using pppoa) usb"
-msgstr ""
+msgstr "Sagem usb (pppoa)"
#: ../../network/adsl.pm:1
#, c-format
@@ -9407,7 +9493,7 @@ msgstr "Altre porte"
#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Everything (no firewall)"
-msgstr ""
+msgstr "Tutto (nessun firewall)"
#: ../../network/drakfirewall.pm:1
#, c-format
@@ -9416,6 +9502,9 @@ msgid ""
"The proper format is \"port/tcp\" or \"port/udp\", \n"
"where port is between 1 and 65535."
msgstr ""
+"Si è indicata una porta non valida:%s.\n"
+"Il formato corretto è \"porta/tcp\" o \"porta/udp\", \n"
+"dove porta è un numero tra 1 e 65535."
#: ../../network/drakfirewall.pm:1
#, c-format
@@ -9424,11 +9513,14 @@ msgid ""
"Valid examples are: 139/tcp 139/udp.\n"
"Have a look at /etc/services for information."
msgstr ""
+"Puoi immettere porte di tipo diverso.\n"
+"Esempi ammissibili sono: 139/tcp 139/udp.\n"
+"Dai un'occhiata a /etc/services per maggiori informazioni."
#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
+msgstr "A quali servizi vuoi permettere che ci si connetta tramite Internet?"
#: ../../network/drakfirewall.pm:1
#, c-format
@@ -9438,9 +9530,13 @@ msgid ""
"Make sure you have configured your Network/Internet access with\n"
"drakconnect before going any further."
msgstr ""
+"configuratore di drakfirewall\n"
+"\n"
+"Prima di proseguire, assicurati di aver configurato il tuo accesso\n"
+"alla LAN o a Internet con drakconnect."
#: ../../network/drakfirewall.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"drakfirewall configurator\n"
"\n"
@@ -9448,9 +9544,9 @@ msgid ""
"For a powerful and dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Configuratore di firewall minimo\n"
+"Configuratore di drakfirewall\n"
"\n"
-"Configurazione di un firewall personale per questo sistema Mandrake Linux.\n"
+"Configura un firewall personale per questo sistema Mandrake Linux.\n"
"Per una soluzione firewall potente e dedicata, per favore rivolgiti\n"
"alla distribuzione specializzata MandrakeSecurity Firewall."
@@ -9482,7 +9578,7 @@ msgstr "Server web"
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Zeroconf host name must not contain a ."
-msgstr ""
+msgstr "Il nome della macchina Zeroconf non deve contenere un "
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
@@ -9490,9 +9586,9 @@ msgid "Host name"
msgstr "Nome host"
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Zeroconf Host name"
-msgstr "Nome host"
+msgstr "Nome host Zeroconf"
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
@@ -9502,6 +9598,10 @@ msgid ""
"Enter a Zeroconf host name without any dot if you don't\n"
"want to use the default host name."
msgstr ""
+"\n"
+"\n"
+"Immetti il nome di un host Zeroconf (senza punti)\n"
+"se non vuoi usare il nome predefinito."
#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
@@ -9510,11 +9610,6 @@ msgstr "Sto configurando la rete"
#: ../../network/ethernet.pm:1
#, c-format
-msgid "no network card found"
-msgstr "nessuna scheda di rete trovata"
-
-#: ../../network/ethernet.pm:1
-#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr ""
@@ -9533,7 +9628,7 @@ msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
msgstr ""
-"Nessun adattatore di rete ethernet è stato rilevato nel tuo sistema.\n"
+"Nessuna scheda ethernet è stata rilevata nel tuo sistema.\n"
"Non posso configurare questo tipo di connessione."
#: ../../network/ethernet.pm:1
@@ -9542,7 +9637,7 @@ msgid ""
"Which dhcp client do you want to use?\n"
"Default is dhcp-client."
msgstr ""
-"Quale client dhcp devo usare?\n"
+"Quale client dhcp vuoi usare?\n"
"Quello predefinito è dhcp"
#: ../../network/isdn.pm:1
@@ -9562,9 +9657,9 @@ msgstr ""
"una scheda PCI nella prossima schermata."
#: ../../network/isdn.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Which of the following is your ISDN card?"
-msgstr "Qual'è la tua scheda ISDN?"
+msgstr "Qual tra queste è la tua scheda ISDN?"
#: ../../network/isdn.pm:1
#, c-format
@@ -9643,12 +9738,12 @@ msgstr ""
#: ../../network/isdn.pm:1
#, c-format
msgid "European protocol"
-msgstr "Protocollo per l'Europa"
+msgstr "Protocollo europeo"
#: ../../network/isdn.pm:1
#, c-format
msgid "European protocol (EDSS1)"
-msgstr "Protocollo per l'Europa (EDSS1)"
+msgstr "Protocollo europeo (EDSS1)"
#: ../../network/isdn.pm:1
#, c-format
@@ -9657,7 +9752,7 @@ msgid ""
"If it isn't listed, choose Unlisted."
msgstr ""
"Scegli il tuo provider.\n"
-" Se non è nella lista, scegli Fuori Lista"
+" Se non è nella lista, scegli \"Fuori lista\"."
#: ../../network/isdn.pm:1
#, c-format
@@ -9677,7 +9772,7 @@ msgstr "Di che tipo è la tua connessione ISDN?"
#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
#, c-format
msgid "Network Configuration Wizard"
-msgstr "Wizard della configurazione di rete"
+msgstr "Assistente per configurare la rete"
#: ../../network/isdn.pm:1
#, c-format
@@ -9704,19 +9799,19 @@ msgid ""
msgstr ""
"Che configurazione ISDN preferisci?\n"
"\n"
-"* La Vecchia configurazione usa isdn4net. Contiene strumenti potenti,\n"
-" ma è difficile da configurare per un principiante, e non standard.\n"
+"* La configurazione \"vecchia\" usa isdn4net. Dispone di strumenti\n"
+" potenti, ma è difficile da configurare e non è standard.\n"
"\n"
-"* La Nuova configurazione è più facile da capire, più aderente allo\n"
-" standard, ma dispone di un numero di strumenti inferiore.\n"
+"* La configurazione \"nuova\" è più facile da capire, più aderente\n"
+" allo standard, anche se con meno strumenti.\n"
"\n"
-"Raccomandiamo la configurazione leggera.\n"
+"Raccomandiamo la configurazione isdn-light.\n"
"\n"
#: ../../network/modem.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Do nothing"
-msgstr "ma non coincidono"
+msgstr "Non fare nulla"
#: ../../network/modem.pm:1
#, c-format
@@ -9728,6 +9823,8 @@ msgstr "Installa rpm"
msgid ""
"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
+"Rilevato un soft-modem basato su \"%s\", vuoi installare i software "
+"necessari per installarlo?"
#: ../../network/modem.pm:1
#, c-format
@@ -9740,6 +9837,8 @@ msgid ""
"Your modem isn't supported by the system.\n"
"Take a look at http://www.linmodems.org"
msgstr ""
+"Il tuo modem non è supportato dal sistema.\n"
+"Controlla su http://www.linmodems.org"
#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
@@ -9799,7 +9898,7 @@ msgstr "Opzioni di chiamata"
#: ../../network/modem.pm:1
#, c-format
msgid "Please choose which serial port your modem is connected to."
-msgstr "Per favore scegli a che porta seriale è connesso il tuo modem."
+msgstr "Per favore indica la porta seriale a cui è connesso il modem."
#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
@@ -9814,8 +9913,8 @@ msgid ""
"work, you might want to relaunch the configuration."
msgstr ""
"Si sono verificati dei problemi durante la configurazione.\n"
-"Provate la connessione usando net_monitor o mcc. Se la connessione non "
-"funziona, dovreste ripetere la configurazione."
+"Prova la connessione con net_monitor o mcc. Se la connessione non funziona, "
+"dovrai ripetere la configurazione."
#: ../../network/netconnect.pm:1
#, c-format
@@ -9823,8 +9922,8 @@ msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-"Dopo che questo sarà stato fatto, vi raccomandiamo di riavviare il\n"
-"vostro ambiente X per evitare problemi relativi al cambio di hostname."
+"Quando avrai finito, ti raccomando di riavviare l'ambiente X\n"
+"per evitare problemi relativi al cambio di hostname."
#: ../../network/netconnect.pm:1
#, c-format
@@ -9833,9 +9932,9 @@ msgid ""
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-"Congratulazioni, la configurazione della rete e di Internet è finita.\n"
+"Ottimo, hai completato la configurazione della rete e di Internet.\n"
+"Adesso questa configurazione verrà applicata al sistema.\n"
"\n"
-"Adesso questa configurazione verrà applicata al vostro sistema.\n"
#: ../../network/netconnect.pm:1
#, c-format
@@ -9849,9 +9948,9 @@ msgstr ""
"%s"
#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "The network needs to be restarted. Do you want to restart it ?"
-msgstr "Il pacchetto %s deve essere installato. Lo installo?"
+msgstr "La rete deve essere riavviata. Vuoi riavviarla?"
#: ../../network/netconnect.pm:1
#, c-format
@@ -9897,7 +9996,7 @@ msgstr "Connessione LAN"
#: ../../network/netconnect.pm:1
#, c-format
msgid "cable connection detected"
-msgstr "Rilevata connessione via cavo"
+msgstr "rilevata connessione via cavo"
#: ../../network/netconnect.pm:1
#, c-format
@@ -9925,9 +10024,9 @@ msgid "ISDN connection"
msgstr "Connessione ISDN"
#: ../../network/netconnect.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Winmodem connection"
-msgstr "Connessione normale via modem"
+msgstr "Connessione con soft-modem"
#: ../../network/netconnect.pm:1
#, c-format
@@ -9937,7 +10036,7 @@ msgstr "rilevato sulla porta: %s"
#: ../../network/netconnect.pm:1
#, c-format
msgid "Normal modem connection"
-msgstr "Connessione normale via modem"
+msgstr "Connessione con modem normale"
#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
@@ -9948,7 +10047,7 @@ msgstr "Riconoscimento periferiche..."
#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
#, c-format
msgid "Expert Mode"
-msgstr "Modo Esperto"
+msgstr "Modo esperto"
#: ../../network/netconnect.pm:1
#, c-format
@@ -9968,11 +10067,10 @@ msgid ""
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-"Benvenuti nel Wizard di configurazione della Rete!\n"
+"Benvenuti nell'assistente di configurazione della Rete!\n"
"\n"
-"Stiamo per configurare la vostra connessione di rete/ad Internet.\n"
-"Se non volete usare il riconoscimento automatico, deselezionate il \n"
-"pulsante dell'opzione.\n"
+"Stiamo per configurare la tua connessione di rete/ad Internet.\n"
+"Se non vuoi usare il riconoscimento automatico, deseleziona l'opzione.\n"
#: ../../network/netconnect.pm:1
#, c-format
@@ -9982,7 +10080,7 @@ msgid ""
"Click on Ok to keep your configuration, or cancel to reconfigure your "
"Internet & Network connection.\n"
msgstr ""
-"Dato che stai effettuando una installazione via rete, quest'ultima è già "
+"Dato che stai effettuando un'installazione via rete, quest'ultima è già "
"configurata.\n"
"Clicca su Ok per mantenere questa configurazione, o su Annulla per "
"riconfigurare la rete e la connessione ad Internet.\n"
@@ -10009,7 +10107,7 @@ msgstr ""
#: ../../network/netconnect.pm:1
#, c-format
msgid "We are now going to configure the %s connection."
-msgstr "Adesso proseguiremo con la configurazione della connessione %s."
+msgstr "Stiamo per configurare la connessione %s."
#: ../../network/netconnect.pm:1
#, c-format
@@ -10038,7 +10136,7 @@ msgid ""
"You can reconfigure your connection."
msgstr ""
"\n"
-"Puoi configurare nuovamente la connessione."
+"Puoi riconfigurare la connessione."
#: ../../network/netconnect.pm:1
#, c-format
@@ -10047,7 +10145,7 @@ msgid ""
"You can connect to the Internet or reconfigure your connection."
msgstr ""
"\n"
-"Puoi connetterti ad Internet o configurare nuovamente la connessione."
+"Puoi connetterti ad Internet o riconfigurare la connessione."
#: ../../network/netconnect.pm:1
#, c-format
@@ -10094,14 +10192,14 @@ msgid "Proxies configuration"
msgstr "Configurazione dei proxy"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Gateway address should be in format 1.2.3.4"
-msgstr "L'indirizzo IP deve essere in formato 1.2.3.4"
+msgstr "L'indirizzo del gateway deve essere nel formato 1.2.3.4"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "DNS server address should be in format 1.2.3.4"
-msgstr "L'indirizzo IP deve essere in formato 1.2.3.4"
+msgstr "L'indirizzo del DNS deve essere nel formato 1.2.3.4"
#: ../../network/network.pm:1
#, c-format
@@ -10126,10 +10224,10 @@ msgid ""
"such as ``mybox.mylab.myco.com''.\n"
"You may also enter the IP address of the gateway if you have one."
msgstr ""
-"Per favore inserisci il tuo nome host.\n"
-"Il tuo nome host dovrebbe essere uno pienamente qualificato,\n"
+"Per favore inserisci il nome del tuo host.\n"
+"Questo dovrebbe essere un nome-host pienamente qualificato,\n"
"come \"mybox.mylab.myco.com\".\n"
-"Puoi anche inserire l'indirizzo IP del gateway se ne hai uno."
+"Puoi anche inserire l'indirizzo IP del gateway, se ne hai uno"
#: ../../network/network.pm:1
#, c-format
@@ -10137,6 +10235,8 @@ msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
"enough '0' (zeroes)."
msgstr ""
+"Il \"rate\" dovrebbe avere un suffisso k, M o G (ad es. \"11M\" per 11M), o "
+"un numero sufficiente di \"0\" (zeri)."
#: ../../network/network.pm:1
#, c-format
@@ -10144,11 +10244,13 @@ msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
"frequency), or add enough '0' (zeroes)."
msgstr ""
+"La frequenza dovrebbe avere un suffisso k, M o G (ad es. \"11M\" per 11M), o "
+"un numero sufficiente di \"0\" (zeri)."
#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "IP address should be in format 1.2.3.4"
-msgstr "L'indirizzo IP deve essere in formato 1.2.3.4"
+msgstr "L'indirizzo IP deve essere nel formato 1.2.3.4"
#: ../../network/network.pm:1
#, c-format
@@ -10156,24 +10258,24 @@ msgid "Start at boot"
msgstr "Attiva al momento del boot"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Assign host name from DHCP address"
msgstr "Per favore inserisci il nome dell'host o l'IP"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Network Hotplugging"
-msgstr "Configurazione della rete"
+msgstr "Hotplugging della rete"
#: ../../network/network.pm:1
#, c-format
msgid "Track network card id (useful for laptops)"
-msgstr "Individua identità della scheda di rete (utile per i laptop)"
+msgstr "Individua l'ID della scheda di rete (utile per i laptop)"
#: ../../network/network.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "DHCP host name"
-msgstr "Nome host"
+msgstr "Nome host DHCP"
#: ../../network/network.pm:1 ../../standalone/drakconnect:1
#: ../../standalone/drakgw:1
@@ -10215,8 +10317,8 @@ msgid ""
"notation (for example, 1.2.3.4)."
msgstr ""
"Per favore inserisci la configurazione IP per questa macchina.\n"
-"Ogni dato dovrebbe essere inserito come un indirizzo IP in notazione\n"
-"decimale puntata (ad esempio 1.2.3.4.)."
+"Ogni dato dovrebbe essere inserito come un indirizzo IP\n"
+"in notazione decimale puntata (ad esempio 1.2.3.4)."
#: ../../network/network.pm:1
#, c-format
@@ -10226,9 +10328,9 @@ msgid ""
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
-"ATTENZIONE: questo dispositivo è stato precedentemente configurato per\n"
-"connettersi ad Internet.\n"
-"Devi solo cliccare su OK per mantenere la precedente configurazione.\n"
+"ATTENZIONE: questo dispositivo è già stato configurato per connettersi ad "
+"Internet.\n"
+"Basta cliccare su OK per mantenere la precedente configurazione.\n"
"Modifiche ai campi qui sotto cambieranno questa configurazione."
#: ../../network/shorewall.pm:1
@@ -10273,17 +10375,17 @@ msgstr "Modalità di chiamata"
#: ../../network/tools.pm:1
#, c-format
msgid "Choose your country"
-msgstr "Scegli la tua nazione"
+msgstr "Indica la tua nazione"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider dns 2 (optional)"
-msgstr "Dns 2 del provider (opzionale)"
+msgstr "DNS 2 del provider (opzionale)"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider dns 1 (optional)"
-msgstr "Dns 1 del provider (opzionale)"
+msgstr "DNS 1 del provider (opzionale)"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
@@ -10333,7 +10435,7 @@ msgstr "Per favore riempi o controlla il campo qui sotto"
#: ../../network/tools.pm:1
#, c-format
msgid "Connection Configuration"
-msgstr "Configurazione della Connessione"
+msgstr "Configurazione della connessione"
#: ../../network/tools.pm:1
#, c-format
@@ -10342,12 +10444,12 @@ msgid ""
"Try to reconfigure your connection."
msgstr ""
"Il sistema non sembra essere connesso ad Internet.\n"
-"Prova a configurare nuovamente la connessione."
+"Prova a riconfigurare la connessione."
#: ../../network/tools.pm:1
#, c-format
msgid "For security reasons, it will be disconnected now."
-msgstr "Per ragioni di sicurezza, adesso verrà disconnesso."
+msgstr "Per motivi di sicurezza, adesso verrai disconnesso."
#: ../../network/tools.pm:1
#, c-format
@@ -10357,7 +10459,7 @@ msgstr "Adesso il sistema è connesso ad Internet"
#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Testing your connection..."
-msgstr "Sto provando la tua connessione ..."
+msgstr "Sto provando la tua connessione..."
#: ../../network/tools.pm:1
#, c-format
@@ -10367,7 +10469,7 @@ msgstr "Vuoi provare a connetterti ad Internet adesso?"
#: ../../network/tools.pm:1
#, c-format
msgid "Internet configuration"
-msgstr "Configurazione di internet"
+msgstr "Configurazione di Internet"
#: ../../partition_table/raw.pm:1
#, c-format
@@ -10379,8 +10481,8 @@ msgid ""
msgstr ""
"Al tuo disco sta accadendo qualcosa di brutto. \n"
"Un test per verificare l'integrità dei dati è fallito. \n"
-"Significa che scrivere qualsiasi cosa sul disco genererà solo spazzatura a "
-"caso"
+"Significa che qualsiasi cosa venga scritto sul disco genererà solo dati "
+"corrotti."
#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
#, c-format
@@ -10460,12 +10562,12 @@ msgstr "Modello sconosciuto"
#: ../../printer/main.pm:1
#, c-format
msgid "%s (Port %s)"
-msgstr "%s (Porta %s)"
+msgstr "%s (porta %s)"
#: ../../printer/main.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Host %s"
-msgstr "Nome host"
+msgstr "Host %s"
#: ../../printer/main.pm:1
#, c-format
@@ -10478,9 +10580,9 @@ msgid "Interface \"%s\""
msgstr "Interfaccia \"%s\""
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Local network(s)"
-msgstr "Rete locale di classe C"
+msgstr "Rete(i) locale(i)"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
@@ -10495,12 +10597,12 @@ msgstr ", uso il comando %s"
#: ../../printer/main.pm:1
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
-msgstr " sul server Novell \"%s\", stampante \"%s\""
+msgstr "sul server Novell \"%s\", stampante \"%s\""
#: ../../printer/main.pm:1
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr " sul server Windows/SMB \"%s\", condivisione \"%s\""
+msgstr "sul server SMB/Windows \"%s\", condivisione \"%s\""
#: ../../printer/main.pm:1
#, c-format
@@ -10510,7 +10612,7 @@ msgstr ", host TCP/IP \"%s\", porta %s"
#: ../../printer/main.pm:1
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
-msgstr " sul server LPD \"%s\", stampante \"%s\""
+msgstr "sul server LPD \"%s\", stampante \"%s\""
#: ../../printer/main.pm:1
#, c-format
@@ -10535,7 +10637,7 @@ msgstr ", dispositivo multifunzione su USB"
#: ../../printer/main.pm:1
#, c-format
msgid ", multi-function device on parallel port \\#%s"
-msgstr ", dispositivo multifunzione sulla porta parallela \\#%s"
+msgstr ", dispositivo multifunzione sulla porta parallela \\n. %s"
#: ../../printer/main.pm:1
#, c-format
@@ -10545,12 +10647,12 @@ msgstr ", stampante USB"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid ", USB printer \\#%s"
-msgstr ", stampante USB \\#%s"
+msgstr ", stampante USB \\n. %s"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid " on parallel port \\#%s"
-msgstr " sulla porta parallela \\#%s"
+msgstr " sulla porta parallela \\n. %s"
#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
@@ -10620,7 +10722,7 @@ msgstr "Sto rimuovendo la stampante \"%s\" ..."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
-msgstr "Volete davvero rimuovere la stampante \"%s\"?"
+msgstr "Vuoi davvero rimuovere la stampante \"%s\"?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10628,9 +10730,9 @@ msgid "Remove printer"
msgstr "Rimuovi stampante"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Learn how to use this printer"
-msgstr "Sapere come usare questa stampante"
+msgstr "Imparare ad usare questa stampante"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10642,49 +10744,53 @@ msgstr "Stampa della(e) pagina(e) di prova"
msgid ""
"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
+"Non si riesce a rimouvere la stampante \"%s\" da StarOffice/OpenOffice.org/"
+"GIMP."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
"GIMP."
-msgstr ""
+msgstr "La stampante è stata rimossa \"%s\" da StarOffice/OpenOffice.org/GIMP."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr ""
+msgstr "Rimozione di stampante da StarOffice/OpenOffice.org/GIMP"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr ""
+msgstr "Rimuovi questa stampante da StarOffice/OpenOffice.org/GIMP"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
+"Non si riesce ad aggiungere la stampante \"%s\" a StarOffice/OpenOffice.org/"
+"GIMP."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr ""
+msgstr "La stampante \"%s\" è stata aggiunta a StarOffice/OpenOffice.org/GIMP."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr ""
+msgstr "Aggiungere una stampante a StarOffice/OpenOffice.org/GIMP."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr ""
+msgstr "Aggiungi questa stampante a StarOffice/OpenOffice.org/GIMP."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
-msgstr ""
+msgstr "Adesso la stampante \"%s\" è impostata come predefinita."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10694,7 +10800,7 @@ msgstr "Stampante predefinita"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Set this printer as the default"
-msgstr ""
+msgstr "Imposta questa stampante come predefinita."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10704,12 +10810,12 @@ msgstr "Opzioni stampante"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer manufacturer, model"
-msgstr ""
+msgstr "Marca e modello della stampante"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer manufacturer, model, driver"
-msgstr ""
+msgstr "Marca, modello e driver della stampante"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10734,7 +10840,7 @@ msgstr "Stampante in modo raw"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do it!"
-msgstr ""
+msgstr "Fallo!"
#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
@@ -10750,7 +10856,7 @@ msgid ""
"What do you want to modify on this printer?"
msgstr ""
"Stampante %s\n"
-"Cosa volete modificare riguardo questa stampante?"
+"Cosa vuoi modificare per questa stampante?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10774,9 +10880,9 @@ msgid "Change the printing system"
msgstr "Cambia il sistema di stampa"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Printer sharing"
-msgstr "Stampa"
+msgstr "Condivisione stampante"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10787,11 +10893,12 @@ msgstr "Configurazione di CUPS"
#, c-format
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
+"Aggiorna lista stampanti (con tutte le stampanti CUPS remote disponibili)"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Display all available remote CUPS printers"
-msgstr ""
+msgstr "Mostra tutte le stampanti CUPS remote disponibili"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10800,35 +10907,29 @@ msgid ""
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-
-#: ../../printer/printerdrake.pm:1
-#, c-format
-msgid ""
-"The following printers are configured. Double-click on a printer to change "
-"its settings; to make it the default printer; to view information about it; "
-"or to make a printer on a remote CUPS server available for Star Office/"
-"OpenOffice.org/GIMP."
-msgstr ""
+"Sono state configurate queste stampanti. Clicca due volte su una stampante "
+"per cambiarne le impostazioni, per renderla predefinita o per ricevere "
+"informazioni su di essa."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing system: "
-msgstr ""
+msgstr "Sistema di stampa: "
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking installed software..."
-msgstr ""
+msgstr "Verifica dei software installati ..."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing Foomatic..."
-msgstr "Installazione del pacchetto Foomatic"
+msgstr "Installazione di Foomatic..."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Failed to configure printer \"%s\"!"
-msgstr "Sto configurando la stampante \"%s\" ..."
+msgstr "Non ho potuto configurare la stampante \"%s\"!"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10848,22 +10949,22 @@ msgstr "Che sistema di stampa (spooler) vuoi usare?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Select Printer Spooler"
-msgstr "Scegli il sistema di stampa"
+msgstr "Scegli la coda di stampa"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Setting Default Printer..."
-msgstr "Stampante predefinita"
+msgstr "Sto impostando la stampante predefinita..."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Installing %s ..."
-msgstr "Installazione dei pacchetti ..."
+msgstr "Installazione di %s ..."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Removing %s ..."
-msgstr "Sto cancellando %s ..."
+msgstr "Sto rimuovendo %s..."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10878,11 +10979,19 @@ msgid ""
"Do you want to have the automatic starting of the printing system turned on "
"again?"
msgstr ""
+"Il sistema (%s) di stampa non sarà attivato automaticamente al riavvio della "
+"macchina.\n"
+"\n"
+"È possibile che l'attivazione automatica sia stata inibita passando ad un "
+"livello di sicurezza più alto, in quanto il sistema di stampa è un "
+"potenziale bersaglio per attacchi.\n"
+"\n"
+"Vuoi riabilitare l'attivazione automatica del sistema di stampa al boot?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Starting the printing system at boot time"
-msgstr "Avvio il sistema di stampa al momento del boot"
+msgstr "Attivazione del sistema di stampa al momento del boot"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10898,11 +11007,21 @@ msgid ""
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
+"Stai per installare il sistema di stampa %s su un sistema con un livello di "
+"sicurezza %s attivato.\n"
+"\n"
+"Questo sistema di stampa attiva un demone (processo in background) che è in "
+"attesa di lavori di stampa e li gestisce. Questo demone è accessibile anche "
+"a macchine remote tramite la rete. Quindi è un possibile bersaglio per "
+"attacchi. In effetti a questo livelllo di sicurezza vengono attivati "
+"pochissimi demoni ben selezionati.\n"
+"\n"
+"Vuoi veramente attivare la stampa su questa macchina?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing a printing system in the %s security level"
-msgstr ""
+msgstr "Installazione di un sistema di stampa in un livello di sicurezza %s"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10922,7 +11041,7 @@ msgstr "Sto riavviando il sistema di stampa ..."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuration of a remote printer"
-msgstr "Configura di una stampante remota"
+msgstr "Configurazione di una stampante remota"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10931,6 +11050,9 @@ msgid ""
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
+"L'accesso alla rete non era attivo e non può essere attivato. Controlla la "
+"configurazione e le connessioni fisiche. Poi, riprova a configurare la "
+"stampante remota."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10942,6 +11064,12 @@ msgid ""
"printer, also using the Mandrake Control Center, section \"Hardware\"/"
"\"Printer\""
msgstr ""
+"Ora non è possibile attivare la rete, così come è stata configurata durante "
+"l'installazione. Controlla che la rete sia accessibile dopo che avrai "
+"riavviato il sistema. Poi correggi la configurazione usando il Centro di "
+"controllo Mandrake, sezione \"Rete & Internet\"/\"Connessione\", e, "
+"successivamente, imposta la stampante usando il Centro di controllo "
+"Mandrake, sezione\"Hardware\"/\"Stampante\"."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10961,16 +11089,20 @@ msgid ""
"configuration, you will not be able to use the printer which you are "
"configuring now. How do you want to proceed?"
msgstr ""
+"Stai per configurare una stampante remota. Questo richiede di accedere alla "
+"rete che non è ancora configurata. Se tu continuassi senza aver configurato "
+"la rete, non saresti in grado di usare la stampante che stai configurando. "
+"Come vuoi proseguire?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Network functionality not configured"
-msgstr "Funzionalità di rete non configurata"
+msgstr "La funzionalità di rete non è configurata"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Starting network..."
-msgstr "Sto attivando la connessione di rete ..."
+msgstr "Sto attivando la connessione alla rete ..."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -10983,16 +11115,18 @@ msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
+"Hai spostato la tua precedente stampante (\"%s\") predefinita. Deve essere "
+"la stampante predefinita anche sotto il nuovo sistema di stampa %s?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Transfer printer configuration"
-msgstr "Configurazione della stampante a trasferimento"
+msgstr "Trasferire configurazione stampante"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Transferring %s..."
-msgstr ""
+msgstr "Sto trasferendo %s ..."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11005,18 +11139,20 @@ msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
+"Una stampante \"%s\" esiste già,\n"
+"vuoi davvero sovrascrivere la sua configurazione?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-"Il nome della stampante dovrebbe contenere solo lettere, numeri e il "
-"trattino di sottolineatura"
+"Il nome della stampante può contenere solo lettere, numeri e il trattino di "
+"sottolineatura"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Transfer"
-msgstr ""
+msgstr "Trasferimento"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11025,11 +11161,14 @@ msgid ""
"Click \"Transfer\" to overwrite it.\n"
"You can also type a new name or skip this printer."
msgstr ""
+"Una stampante \"%s\" esiste già sotto %s\n"
+"Fai clic su \"Trasferimento\"per sovrascriverla.\n"
+"Puoi anche scrivere un nuovo nome o saltare questa stampante."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do not transfer printers"
-msgstr ""
+msgstr "Non trasferire stampanti"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11038,6 +11177,9 @@ msgid ""
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
+"\n"
+"Segna le stampanti che vuoi trasferire e clicca su \n"
+"\"Trasferimento\"."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11046,6 +11188,9 @@ msgid ""
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
+"\n"
+"Neanche le stampanti configurate con i file PPD forniti dai produttori o con "
+"i driver nativi di CUPS possono essere trasferite."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11053,11 +11198,13 @@ msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
+"Inoltre, le code di stampa create con questo programma o con \"foomatic-"
+"configure\" non possono essere trasferite."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr ""
+msgstr "LPD e LPRng non supportano le stampanti IPP.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11065,6 +11212,8 @@ msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
+"PDQ supporta solo stampanti locali, stampanti remote LPD, e stampanti Socket/"
+"TCP.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11072,6 +11221,8 @@ msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
+"CUPS non supporta le stampanti gestite da server Novell, né quelle che "
+"inviano i dati entro comandi formati liberamente.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11082,6 +11233,11 @@ msgid ""
"overtaken, but jobs will not be transferred.\n"
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
+"Puoi copiare la configurazione della stampante associata alla coda %s su %s, "
+"la coda attuale. Tutti i dati della configurazione (nome stampante, "
+"descrizione, collocazione, tipo di connessione e impostazioni predefinite) "
+"saranno recuperate, ma i lavori in coda non saranno trasferiti.\n"
+"Alcune code non possono essere trasferite per una di queste ragioni:\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11096,6 +11252,15 @@ msgid ""
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
+"La stampante era stata configurata automaticamente per permetterti di "
+"accedere dal tuo PC ai dispositivi photocard. Ora puoi accedere alle tue "
+"photocard usando il programma grafico \"MtoolsFM\" (Menu: \"Applicazioni\" -"
+"> \"Strumenti per file\" -> \"MTools File Manager\") o l'utilità \"mtools\" "
+"da riga di comando(per maggiori informazioni dai \"man mtools\" da riga di "
+"comando). Troverai il file system della scheda alla lettera \"p:\" e, se hai "
+"più di una stampante HP con dispositivo photocard, alle lettere seguenti. In "
+"\"MtoolsFM\" puoi passare da una scheda all'altra usando il campo posto "
+"nell'angolo superiore destro delle liste dei file."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11110,6 +11275,15 @@ msgid ""
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
+"Il tuo dispositivo multifunzione era stato impostato automaticamente per "
+"funzionare anche come scanner. Ora potrai scandire immagini con \"scanimage"
+"\" (\"scanimage -d hp:%s\" per specificare lo scanner se ne hai più di uno) "
+"da riga di comando o con le interfacce grafiche \"xscanimage\" e \"xsane\". "
+"Se usi GIMP, puoi scandire scegliendo la voce appropriata nel menu \"File\"/"
+"\"Acquisisci\". Consulta anche \"man scanimage\" da riga di comando per "
+"avere altre informazioni.\n"
+"\n"
+"Non usare \"scannerdrake\" per questa apparecchiatura!"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11127,9 +11301,9 @@ msgid "Printing on the printer \"%s\""
msgstr "Sto stampando con la stampante \"%s\""
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Printing/Photo Card Access on \"%s\""
-msgstr "Stampa/Scansione in corso su \"%s\""
+msgstr "Stampa/Accesso alla photocard su \"%s\""
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11137,9 +11311,9 @@ msgid "Printing/Scanning on \"%s\""
msgstr "Stampa/Scansione in corso su \"%s\""
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "Stampa/Scansione in corso su \"%s\""
+msgstr "Stampa/Scansione/photocard su \"%s\""
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11148,6 +11322,9 @@ msgid ""
"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
+"Per conoscere le opzioni disponibili per questa stampante leggi l'elenco "
+"sottostante o premi il pulsante \"Lista opzioni di stampa\".%s%s\n"
+"\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11157,6 +11334,10 @@ msgid ""
"a particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\".\n"
msgstr ""
+"\n"
+"I comandi \"%s\" e \"%s\" permettono di modificare la scelta delle opzioni "
+"per un particolare lavoro di stampa. Basta aggiungere le impostazioni "
+"desiderate alla riga di comando, per es. \"%s <file>\".\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11168,6 +11349,12 @@ msgid ""
"jobs immediately when you click it. This is for example useful for paper "
"jams.\n"
msgstr ""
+"Si può usare anche l'interfaccia grafica \"xpdq\" per impostare le opzioni e "
+"gestire le stampe.\n"
+"Se stai usando KDE come ambiente grafico, hai sul desktop un'icona di "
+"\"emergenza\", chiamata \"FERMA stampe!\", che blocca immediatamente tutte "
+"le stampe quando la clicchi. È utile, per esempio, quando si inceppa la "
+"carta.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11176,6 +11363,10 @@ msgid ""
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
+"Questo comando può essere usato anche nel campo \"Comando di stampa\" della "
+"finestra di dialogo per la stampa in molte applicazioni. Però, in questo "
+"caso, non bisogna aggiungere il nome del file, perché il file da stampare è "
+"fornito dall'applicazione.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11183,6 +11374,8 @@ msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
+"Per stampare un file da riga di comando (finestra di terminale) usa il "
+"comando \"%s <file>\" o \"%s <file>\".\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11190,6 +11383,8 @@ msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
+"Per vedere una lista delle opzioni disponibili per la stampante in uso, "
+"clicca sul pulsante \"Lista opzioni di stampa\"."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11199,6 +11394,10 @@ msgid ""
"particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\". "
msgstr ""
+"\n"
+"Il comando \"%s\" permette anche di modificare le opzioni impostate per una "
+"particolare stampa. Basta aggiungere alla riga di comando le opzioni "
+"desiderate, per es. \"%s <file>\". "
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11206,6 +11405,8 @@ msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
+"Per stampare un file da riga di comando (finestra di terminale) usa il "
+"comando \"%s <file>\".\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11213,6 +11414,7 @@ msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
+"Questa è una lista delle opzioni disponibili per la stampante in uso:\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11221,6 +11423,10 @@ msgid ""
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
+"Questi comandi possono essere usati anche nel campo \"Comando di stampa\" "
+"della finestra di dialogo per la stampa in molte applicazioni. Però, in "
+"questo caso, non bisogna aggiungere il nome del file,perché il file da "
+"stampare è fornito dall'applicazione.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11230,11 +11436,15 @@ msgid ""
"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
"to modify the option settings easily.\n"
msgstr ""
+"Per stampare un file da riga di comando (finestra di terminale) puoi usare "
+"sia l'istruzione \"%s <file>\" che un programma grafico di stampa come \"xpp "
+"<file>\" o \"kprinter <file>\". Il programma grafico ti permetterà di "
+"scegliere la stampante e impostare le opzioni agevolmente.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Did it work properly?"
-msgstr ""
+msgstr "Ha funzionato bene?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11243,7 +11453,7 @@ msgid ""
"It may take some time before the printer starts.\n"
msgstr ""
"La pagina(e) di prova è stata inviata alla stampante.\n"
-"potrebbe occorrere un po' di tempo prima che la stampa inizi.\n"
+"Potrebbe servire un po' di tempo prima che la stampa inizi.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11255,9 +11465,10 @@ msgid ""
"\n"
msgstr ""
"La pagina(e) di prova è stata inviata alla stampante.\n"
-"Potrebbe occorrere un po' di tempo prima che la stampa inizi.\n"
+"Potrebbe servire un po' di tempo prima che la stampa inizi.\n"
"Stato della stampa:\n"
"%s\n"
+"\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11277,7 +11488,7 @@ msgstr "Pagina di prova alternativa (A4)"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Alternative test page (Letter)"
-msgstr ""
+msgstr "Pagina di prova alternativa (Letter)"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11302,6 +11513,11 @@ msgid ""
"laser printers with too low memory it can even not come out. In most cases "
"it is enough to print the standard test page."
msgstr ""
+"Scegli le pagine di prova che vuoi stampare.\n"
+"Nota: la pagine di prova con foto può richiedere un tempo abbastanza lungo "
+"per essere stampata e, con stampanti laser con troppo poca memoria, potrebbe "
+"non uscire del tutto. Nella maggior parte dei casi basta stampare la pagina "
+"standard. "
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11314,13 +11530,13 @@ msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr ""
-"Volete impostare questa stampante (\"%s)\n"
+"Vuoi impostare questa stampante (\"%s)\n"
"come stampante predefinita?"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s out of range!"
-msgstr "Opzione %s fuori scala!"
+msgstr "L'opzione %s eccede i limiti!"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11334,6 +11550,11 @@ msgstr "L'opzione %s dev'essere un numero intero!"
#: ../../printer/printerdrake.pm:1
#, c-format
+msgid "Printer default settings"
+msgstr "Impostazioni predefinite stampante"
+
+#: ../../printer/printerdrake.pm:1
+#, c-format
msgid ""
"Printer default settings\n"
"\n"
@@ -11344,11 +11565,11 @@ msgid ""
msgstr ""
"Impostazioni predefinite della stampante\n"
"\n"
-"Dovreste accertarvi che le dimensioni della pagina e il tipo di inchiostro/"
+"Dovresti accertarti che le dimensioni della pagina e il tipo di inchiostro/"
"modo di stampa (se disponibile) e anche la configurazione hardware delle "
"stampanti laser (memoria, unità duplex, cassetti supplementari) siano "
-"impostati correttamente. Si noti che quando la qualità/risoluzione di stampa "
-"è molto alta, la durata della stampa può diventare sensibilmente più lenta."
+"impostati correttamente. Si noti che, alzando molto la qualità/risoluzione "
+"di stampa, la durata della stampa può allungarsi sensibilmente."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11373,11 +11594,30 @@ msgid ""
"The first command can be given by any normal user, the second must be given "
"as root. After having done so you can print normally.\n"
msgstr ""
+"La stampante appartiene al gruppo delle GDI laser printer (winprinter), "
+"vendute da diversi produttori, che usano il formato \"Zenographics ZJ-stream "
+"raster\" per l'invio dei dati alla stampante. Il driver per queste stampanti "
+"è in uno stato di sviluppo molto iniziale. Quindi non sempre funziona "
+"correttamente. In particolare, è possibile che la stampante funzioni solo "
+"con carta formato A4.\n"
+"\n"
+"Alcune stampanti, come la HP LaserJet 1000, per la quale questo driver è "
+"stato creato appositamente, richiedono un aggiornamento del firmware dopo "
+"l'accensione. Nel caso della HP LaserJet 1000 devi cercare il file "
+"\"sihp1000.img\" nel CD dei driver per Windows o nella tua partizione "
+"Windows e caricarlo nella memoria della stampante con uno di questi "
+"comandi:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"Il primo comando può essere lanciato da un utente normale, il secondo solo "
+"da root. Fatto questo potrai stampare normalmente.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
-msgstr ""
+msgstr "Stampante laser GDI con formato Zenographics ZJ-Stream"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11391,6 +11631,16 @@ msgid ""
"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
"adjust the head alignment settings with this program."
msgstr ""
+"Per poter usare una stampante a getto d'inchiostro Lexmark usando questa "
+"configurazione, ti servono gli appositi driver forniti dalla Lexmark (http://"
+"www.lexmark.com/). Clicca sul puntatore \"Drivers\". Poi scegli il tuo "
+"modello e infine \"Linux\" come sistema operativo. I driver sono forniti "
+"come pacchetti RPM o script per la shell con interfaccia grafica di "
+"installazione. Non c'è bisogno di fare la configurazione usando "
+"l'interfaccia grafica. Esci subito dopo aver accettato i termini di licenza. "
+"Poi, con \"lexmarkmaintain\", stampa le pagine per controllare "
+"l'allineamento della prima riga di stampa e aggiusta i parametri di "
+"allineamento con questo programma."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11405,6 +11655,10 @@ msgid ""
"printer to a local port or configure it on the machine where it is connected "
"to."
msgstr ""
+"I driver forniti da Lexmark per le stampanti a getto d'inchiostro supportano "
+"solo le stampanti locali, niente stampanti remote o server di stampa. Quindi "
+"collega la tua stampante ad una porta locale o configurala sulla macchina a "
+"cui è collegata."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11416,6 +11670,13 @@ msgid ""
"first parallel port before you print a test page. Otherwise the printer will "
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
+"Stiamo configurando una \"winprinter\" laser OKI. Queste stampanti\n"
+"utilizzano un protocollo di comunicazione tutto loro e quindi funzionano "
+"solo se collegate alla prima porta parallela. Qualora la stampante fosse "
+"attaccata ad un'altra porta parallela o ad un server di stampa, dovresti "
+"spostarla sulla porta giusta prima di stampare la pagina di prova. "
+"Altrimenti la stampante non funzionerà. Il driver ignorerà le tue "
+"configurazioni riguardo al tipo di connessione."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11428,8 +11689,8 @@ msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-"Se la vostra stampante non è presente nella lista, cercate un modello "
-"compatibile o simile (consultate il manuale della stampante)."
+"Se la tua stampante non è presente nella lista, prova con un modello "
+"compatibile (vedi il manuale della stampante) o con uno simile."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11442,10 +11703,9 @@ msgid ""
msgstr ""
"\n"
"\n"
-"Per favore, controllate che Printerdrake abbia effettuato correttamente il "
-"riconoscimento automatico della vostra stampante. Se il cursore si trova su "
-"un modello errato o su \"Stampante di tipo raw\", cercate quello corretto "
-"nella lista."
+"Per favore, controlla che Printerdrake abbia riconosciuto correttamente la "
+"stampante. Se è evidenziato un modello errato o \"Stampante di tipo raw\", "
+"cerca quello giusto nella lista."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11465,12 +11725,12 @@ msgstr "Sto leggendo il database delle stampanti"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Select model manually"
-msgstr "Selezionate il modello manualmente"
+msgstr "Scelta manuale del modello"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The model is correct"
-msgstr "Il modello è corretto"
+msgstr "È il modello giusto"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11486,11 +11746,22 @@ msgid ""
"\n"
"%s"
msgstr ""
+"Printerdrake ha confrontato il nome del modello della stampante risultante "
+"dall'autorilevamento con i modelli listati nel suo database di stampanti per "
+"trovare la migliore corrispondenza. Questa scelta può essere sbagliata, "
+"specialmente se la tua stampante è completamente assente nel database. "
+"quindi controlla se la scelta è corretta e premi \"È il modello giusto\" se "
+"va bene e \"Scelta manuale del modello\" altrimenti. Così potrai scegliere "
+"personalmente il modello giusto nella prossima schermata.\n"
+"\n"
+"Per la tua stampante Printerdrake ha trovato che:\n"
+"\n"
+"%s"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Your printer model"
-msgstr "Il modello della vostra stampante"
+msgstr "Modello della tua stampante"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11525,42 +11796,44 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Enter Printer Name and Comments"
-msgstr ""
+msgstr "Scrivi il nome della stampante e altri commenti"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Making printer port available for CUPS..."
-msgstr ""
+msgstr "Sto rendendo la porta della stampante disponibile per CUPS..."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Photo memory card access on your HP multi-function device"
msgstr ""
+"Accesso alla scheda di memoria fotografica del tuo dispositivo multi-"
+"funzionale HP."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Scanning on your HP multi-function device"
-msgstr ", dispositivo multifunzione"
+msgstr "Scansione con il dispositivo multifunzione HP"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Installing mtools packages..."
-msgstr "Installazione dei pacchetti ..."
+msgstr "Installazione dei pacchetti mtools..."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Installing SANE packages..."
-msgstr "Installazione dei pacchetti ..."
+msgstr "Installazione dei pacchetti SANE ..."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking device and configuring HPOJ..."
-msgstr ""
+msgstr "Verifica della periferica e configurazione di HPOJ..."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Installing HPOJ package..."
-msgstr "Installazione dei pacchetti ..."
+msgstr "Installazione dei pacchetti HPOJ..."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11569,16 +11842,19 @@ msgid ""
"LaserJet 1100/1200/1220/3200/3300 with scanner, Sony IJP-V100), an HP "
"PhotoSmart or an HP LaserJet 2200?"
msgstr ""
+"La tua stampante è un dispositivo multifunzione della HP o della Sony "
+"(OfficeJet, PSC, LaserJet 1100/1200/1220/3200/3300 con scanner, Sony IJP-"
+"V100), una HP PhotoSmart o una HP LaserJet 2200?"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "A command line must be entered!"
-msgstr "Dev'essere inserito un URI valido!"
+msgstr "Dev'essere inserita una stringa di comandi!"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Command line"
-msgstr "Nome dominio"
+msgstr "Stringa di comandi"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11586,16 +11862,19 @@ msgid ""
"Here you can specify any arbitrary command line into which the job should be "
"piped instead of being sent directly to a printer."
msgstr ""
+"Qui puoi inserire una qualsiasi stringa di comandi attraverso la quale la "
+"stampa sarà filtrata (con un pipe), invece di essere inviata direttamente "
+"alla stampante."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Pipe into command"
-msgstr "Invia tramite pipe al comando"
+msgstr "Filtra (pipe) tramite comando"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Detected model: %s %s"
-msgstr "Rilevato %s"
+msgstr "Rilevato il modello: %s %s"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11605,7 +11884,7 @@ msgstr "Dev'essere inserito un URI valido!"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer Device URI"
-msgstr "URI della stampante"
+msgstr "URI del dispositivo di stampa"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11614,9 +11893,9 @@ msgid ""
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-"Potete indicare direttamente l'URI di accesso alla stampante. Tale URI deve "
-"essere conforme alle specifiche CUPS o Foomatic. Notate che non tutti i i "
-"tipi di URI sono supportati da tutti gli spooler."
+"Puoi indicare direttamente l'URI di accesso alla stampante. Tale URI deve "
+"essere conforme alle specifiche CUPS o Foomatic. Nota che non tutti i i tipi "
+"di URI sono supportati da tutti gli spooler."
#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
#, c-format
@@ -11624,9 +11903,9 @@ msgid "Port"
msgstr "Porta"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Printer host name or IP"
-msgstr "Nome host della stampante"
+msgstr "Nome host o IP della stampante"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11634,23 +11913,22 @@ msgid "The port number should be an integer!"
msgstr "Il numero della porta dovrebbe essere un numero intero!"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Printer host name or IP missing!"
-msgstr "Nome host della stampante assente!"
+msgstr "Manca il nome host o l'IP della stampante!"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"To print to a TCP or socket printer, you need to provide the host name or IP "
"of the printer and optionally the port number (default is 9100). On HP "
"JetDirect servers the port number is usually 9100, on other servers it can "
"vary. See the manual of your hardware."
msgstr ""
-"Per stampare su una stampante TCP/Socket, dovete indicare il\n"
-"nome host della stampante e opzionalmente il numero della porta.\n"
-"Sui server HP JetDirect il numero della porta in genere è 9100, su\n"
-"altri server potrebbe essere diverso. Consultate il manuale del vostro\n"
-"hardware."
+"Per stampare su una stampante TCP/Socket, devi indicare il nome host o l'IP "
+"della stampante e, opzionalmente, il numero della porta.\n"
+"Sui server HP JetDirect il numero della porta in genere è 9100, su altri "
+"server potrebbe essere diverso. Consulta il manuale del tuo hardware."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11658,16 +11936,19 @@ msgid ""
"Choose one of the auto-detected printers from the list or enter the hostname "
"or IP and the optional port number (default is 9100) in the input fields."
msgstr ""
+"Scegli una stampante tra quelle che sono state rilevate, oppure scrivi "
+"l'hostname o l'IP e, se vuoi, il numero della porta (ora è 9100) negli "
+"appositi spazi."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "TCP/Socket Printer Options"
-msgstr "Opzioni della stampante TCP/Socket"
+msgstr "Opzioni per stampante TCP/Socket"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Host \"%s\", port %s"
-msgstr "Host \"%s\", porta %s"
+msgstr "Host \"%s\", porta %s"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11675,24 +11956,24 @@ msgid ", host \"%s\", port %s"
msgstr ", host \"%s\", porta %s"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Scanning network..."
-msgstr "Sto attivando la connessione di rete ..."
+msgstr "Sto esaminando la rete ..."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Printer auto-detection"
-msgstr "Usa il riconoscimento automatico"
+msgstr "Riconoscimento automatico stampanti"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NCP queue name missing!"
-msgstr "Il nome della coda NCP è assente!"
+msgstr "Manca il nome della coda NCP!"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NCP server name missing!"
-msgstr "Il nome del server NCP è assente"
+msgstr "Manca il nome del server NCP!"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11702,7 +11983,7 @@ msgstr "Nome della coda di stampa"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer Server"
-msgstr "Server della stampante"
+msgstr "Server di stampa"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11712,10 +11993,10 @@ msgid ""
"print queue name for the printer you wish to access and any applicable user "
"name and password."
msgstr ""
-"Per stampare su una stampante NetWare, dovete fornire il nome\n"
-"del server di stampa NetWare (Attenzione! potrebbe essere diverso dal nome\n"
-"del suo host TCP/IP!) insieme al nome della coda di stampa per la\n"
-"stampante cui volete accedere e ogni nome utente e password applicabili."
+"Per stampare su una stampante NetWare, si deve fornire il nome del server di "
+"stampa NetWare (Attenzione! potrebbe essere diverso dal nome del suo host "
+"TCP/IP!); il nome della coda di stampa per la stampante cui si vuole "
+"accedere; il nome e la password di ogni utente interessato."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11730,6 +12011,10 @@ msgid ""
"\n"
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
+"Collega la tua stampante ad un server Linux e permetti al/ai PC Windows di "
+"attaccarsi come client.\n"
+"\n"
+"Vuoi davvero continuare a configurare questa stampante in questo modo?"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11739,6 +12024,10 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Imposta il tuo server Windows in modo da rendere disponibile la stampante "
+"con protocollo IPP e configura la stampa da questa macchina scegliendo una "
+"connessione di tipo \"%s\" in Printerdrake.\n"
+"\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11763,16 +12052,35 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"Stai impostando la stampa per un account Windows con password. Per un "
+"difetto nell'architettura del software del client Samba, la password viene "
+"trasmessa in chiaro con la stringa di comando usata dal client Samba per "
+"sottoporre la stampa al server Windows. Quindi è possibile per chiunque su "
+"questa macchina visualizzare sullo schermo la password usando un comando del "
+"tipo \"ps auxwww\".\n"
+"\n"
+"Si raccomanda di mettere in pratica una di queste precauzioni (in ogni casi "
+"ci si deve assicurare che solo macchine della rete locale possano accedere "
+"al server Windows, per esempio per mezzo di un firewall):\n"
+"\n"
+"Usare un account senza password sul server Windows, ad es. \"GUEST\" o un "
+"utente speciale per le operazioni di stampa. Non rimuovere la protezione "
+"della password ad un account personale o, peggio, all'amministratore.\n"
+"\n"
+"Configurare il server Windows in modo che renda disponibile la stampante con "
+"il protocollo LPD. Poi imposterai la stampa da questo PC in Printerdrake "
+"come connessione di tipo \"%s\".\n"
+"\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SECURITY WARNING!"
-msgstr ""
+msgstr "AVVISO DI SICUREZZA!"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Samba share name missing!"
-msgstr "Il nome della condivisione Samba è assente!"
+msgstr "Manca il nome della condivisione Samba!"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11780,9 +12088,9 @@ msgid "Either the server name or the server's IP must be given!"
msgstr "Devi indicare il nome del server o il numero IP dello stesso!"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Auto-detected"
-msgstr "Usa il riconoscimento automatico"
+msgstr "Riconosciuto automaticamente"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11810,6 +12118,9 @@ msgid ""
" If the desired printer was auto-detected, simply choose it from the list "
"and then add user name, password, and/or workgroup if needed."
msgstr ""
+" se la stampante che interessa è stata rilevata automaticamente, basta "
+"selezionarla nella lista e poi aggiungere il nome dell'utente, la password e "
+"il gruppo di lavoro se necessario."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11819,36 +12130,36 @@ msgid ""
"the print server, as well as the share name for the printer you wish to "
"access and any applicable user name, password, and workgroup information."
msgstr ""
-"Per stampare su una stampante SMB, dovete indicare il nome\n"
+"Per stampare su una stampante SMB, si deve indicare il nome\n"
"dell'host SMB (Attenzione! non sempre corrisponde al nome host TCP/IP\n"
"della macchina!) e possibilmente l'indirizzo IP del server di stampa, come\n"
-"pure il nome di condivisione per la stampante cui volete accedere e ogni\n"
+"pure il nome di condivisione per la stampante cui si vuole accedere e ogni\n"
"informazione utile riguardo nome dell'utente, password e gruppo di lavoro."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Opzioni Stampante SMB (Windows9x/NT)"
+msgstr "Opzioni per stampante SMB (Windows9x/NT)"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Printer \"%s\" on server \"%s\""
-msgstr "Sto stampando con la stampante \"%s\""
+msgstr "Stampante \"%s\" sul server \"%s\""
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ", printer \"%s\" on server \"%s\""
-msgstr "sul server Windows \"%s\", condivisione \"%s\""
+msgstr ", stampante \"%s\" sul server \"%s\""
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote printer name missing!"
-msgstr "Nome della stampante remota assente!"
+msgstr "Manca il nome della stampante remota!"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote host name missing!"
-msgstr "Nome host remoto assente!"
+msgstr "Manca nome host remoto!"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11866,8 +12177,8 @@ msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-"Per usare una stampante lpd remota, dovete indicare\n"
-"il nome dell'host del server della stampante e il nome della stampante\n"
+"Per usare una stampante lpd remota, si deve indicare il nome dell'host del "
+"server della stampante e il nome della stampante\n"
"su quel server."
#: ../../printer/printerdrake.pm:1
@@ -11883,7 +12194,7 @@ msgstr "Configurazione manuale"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "You must choose/enter a printer/device!"
-msgstr "Dovete scegliere/indicare una stampante/un dispositivo!"
+msgstr "Devi scegliere/indicare una stampante/un dispositivo!"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11897,8 +12208,7 @@ msgstr ""
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Please choose the port that your printer is connected to."
-msgstr ""
-"Per favore scegliete la porta alla quale è connessa la vostra stampante."
+msgstr "Per favore scegli la porta a cui è collegata la stampante."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11906,15 +12216,13 @@ msgid ""
"Please choose the port that your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-"Per favore scegliete la porta alla quale è connessa la vostra stampante, "
-"oppure inserite il nome di un dispositivo o di un file nel campo di "
-"immissione testo"
+"Per favore scegli la porta alla quale è collegata la stampante, oppure "
+"scrivi il nome di un dispositivo o di un file nell'apposita riga."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Please choose the printer to which the print jobs should go."
-msgstr ""
-"Per favore scegliete la porta alla quale è connessa la vostra stampante."
+msgstr "Per favore scegli la stampante a cui inviare le stampe."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11924,20 +12232,22 @@ msgid ""
"detected or if you prefer a customized printer configuration, turn on "
"\"Manual configuration\"."
msgstr ""
-"Per favore scegliete la stampante che volete configurare, la configurazione "
-"verrà effettuata in modo del tutto automatico. Se la vostra stampante non è "
-"stata riconosciuta correttamente, o se preferite una configurazione "
-"personalizzata, cliccate su \"Configurazione manuale\"."
+"Per favore scegli la stampante che vuoi configurare, la configurazione verrà "
+"effettuata in modo del tutto automatico. Se la tua stampante non è stata "
+"riconosciuta correttamente, o se preferisci una configurazione "
+"personalizzata, attiva \"Configurazione manuale\"."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Here is a list of all auto-detected printers. "
msgstr ""
+"Ecco una lista di tutte le stampanti che sono state riconosciute "
+"automaticamente."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Currently, no alternative possibility is available"
-msgstr ""
+msgstr "Al momento, non ci sono alternative disponibili"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -11946,63 +12256,59 @@ msgid ""
"printer was not correctly detected or if you prefer a customized printer "
"configuration, turn on \"Manual configuration\"."
msgstr ""
-"La configurazione della stampante verrà effettuata automaticamente. Se la "
-"vostra stampante non è stata riconosciuta in modo corretto, o se preferite "
-"una configurazione personalizzata, cliccate su \"Configurazione manuale\"."
+"La stampante verrà configurata automaticamente. Se la tua stampante non è "
+"stata riconosciuta in modo corretto o se preferisci una configurazione "
+"personalizzata, attiva \"Configurazione manuale\"."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "The following printer was auto-detected. "
-msgstr "I seguenti pacchetti satanno per essere rimossi"
+msgstr "Questa stampante è stata rilevata automaticamente. "
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Please choose the printer to which the print jobs should go or enter a "
"device name/file name in the input line"
msgstr ""
-"Per favore scegliete la porta alla quale è connessa la vostra stampante, "
-"oppure inserite il nome di un dispositivo o di un file nel campo di "
-"immissione testo"
+"Per favore scegli la stampante a cui inviare le stampe, oppure scrivi il "
+"nome di un dispositivo o di un file sull'apposita riga"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Please choose the printer you want to set up or enter a device name/file "
"name in the input line"
msgstr ""
-"Per favore scegliete la porta alla quale è connessa la vostra stampante, "
-"oppure inserite il nome di un dispositivo o di un file nel campo di "
-"immissione testo"
+"Per favore scegli la stampante che vuoi impostare, oppure scrivi il nome di "
+"un dispositivo o di un file sull'apposita riga"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"Alternatively, you can specify a device name/file name in the input line"
msgstr ""
-"Per favore scegliete la porta alla quale è connessa la vostra stampante, "
-"oppure inserite il nome di un dispositivo o di un file nel campo di "
-"immissione testo"
+"Alternativamente, puoi specificare il nome di un dispositivo o file "
+"sull'apposita riga"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"If it is not the one you want to configure, enter a device name/file name in "
"the input line"
msgstr ""
-"La stampante che segue è stata riconosciuta automaticamente, se non è quella "
-"che desiderate configurare inserite un nome di dispositivo o di file nel "
-"campo immissione testo"
+"Se non è quella che desideri configurare, scrivi il nome di un dispositivo "
+"o file nell'apposita riga"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Available printers"
-msgstr "Stampante locale"
+msgstr "Stampanti disponibili"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "No printer found!"
-msgstr "Non ho trovato nessuna stampante locale!\n"
+msgstr "Non ho trovato nessuna stampante!"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12018,7 +12324,7 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
"Non è stata trovata nessuna stampante locale! Per installare manualmente una "
-"stampante indicate il nome di un dispositivo o di un file nel campo di "
+"stampante indica il nome di un dispositivo o di un file nel campo di "
"immissione (porte parallele: /dev/lp0, /dev/"
"lp1, ..., equivalenti a LPT1:, LPT2:, ...; prima stampante USB: /dev/usb/"
"lp0, seconda: /dev/usb/lp1, ...)."
@@ -12039,14 +12345,14 @@ msgid "Printer on parallel port \\#%s"
msgstr "Stampante sulla porta parallela \\#%s"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Stampante su server SMB/Windows95/98/NT"
+msgstr "Stampante \"%s\" sul server SMB/Windows \"%s\""
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Network printer \"%s\", port %s"
-msgstr "Stampante di rete (TCP/Socket)"
+msgstr "Stampante di rete \"%s\", porta\"%s\""
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12054,14 +12360,14 @@ msgid "Detected %s"
msgstr "Rilevato %s"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "Stampante su server SMB/Windows95/98/NT"
+msgstr ",stampante \"%s\" sul server SMB/Windows \"%s\""
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", network printer \"%s\", port %s"
-msgstr ", stampante di rete\"%s\", porta %s"
+msgstr ", stampante di rete \"%s\", porta %s"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12078,30 +12384,34 @@ msgid ""
"Center."
msgstr ""
"\n"
-"Congratulazioni, adesso la vostra stampante è installata e configurata!\n"
+"Congratulazioni, adesso la tua stampante è installata e configurata!\n"
"\n"
-"Potete stampare usando il comando \"Stampa\" delle vostre applicazioni (in "
+"Puoi stampare usando il comando \"Stampa\" delle varie applicazioni (in "
"genere si trova nel menu File\").\n"
"\n"
-"Se desiderate aggiungere, rimuovere o rinominare una stampante, o se volete "
+"Se desideri aggiungere, rimuovere o rinominare una stampante, o se vuoi "
"modificare la configurazione predefinita (cassetto della carta, qualità di "
-"stampa, ecc.), selezionate \"Stampante\" nella sezione \"Hardware\" del "
-"Centro di controllo Mandrake."
+"stampa, ecc.), seleziona \"Stampante\" nella sezione \"Hardware\" del Centro "
+"di controllo Mandrake."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
+"Rilevamento delle stampanti collegate a macchine su cui gira Microsoft "
+"Windows"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
+"Rilevamento automatico delle stampanti collegate direttamente alla rete "
+"locale"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Auto-detect printers connected to this machine"
-msgstr "Riconoscimento automatico stampanti"
+msgstr "Riconoscimento automatico stampanti collegate a questa macchina"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12118,6 +12428,17 @@ msgid ""
" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
"to set up your printer(s) now."
msgstr ""
+"\n"
+"Benvenuto nell'assistente di configurazione delle stampanti\n"
+"\n"
+"Questo assistente ti permetterà di installare stampanti collegate a questo "
+"computer.\n"
+"\n"
+"Se hai una o più stampanti da usare con questa macchina, collegale e "
+"accendile in modo che possano essere rilevate automaticamente.\n"
+"\n"
+" Premi \"Avanti\" quando sei pronto, o \"Annulla\" se non vuoi configurare la"
+"(e) stampante(i) adesso."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12139,6 +12460,22 @@ msgid ""
" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
"to set up your printer(s) now."
msgstr ""
+"\n"
+"Benvenuto nell'assistente di configurazione delle stampanti\n"
+"\n"
+"Questo assistente ti permetterà di installare stampanti collegate a questo "
+"computer o direttamente alla rete.\n"
+"\n"
+"Se hai una o più stampanti da usare con questa macchina, collegale e "
+"accendile in modo che possano essere rilevate automaticamente. Anche le "
+"stampanti in rete dovranno essere collegate e accese.\n"
+"\n"
+"Tieni conto che il rilevamento automatico delle stampanti di rete è più "
+"lento di quello per le stampanti locali. Quindi escludilo se non ne hai "
+"bisogno.\n"
+"\n"
+" Premi \"Avanti\" quando sei pronto, o \"Annulla\" se non vuoi configurare la"
+"(e) stampante(i) adesso."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12162,6 +12499,22 @@ msgid ""
" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
"to set up your printer(s) now."
msgstr ""
+"\n"
+"Benvenuto nell'assistente di configurazione delle stampanti\n"
+"\n"
+"Questo assistente ti permette di installare stampanti collegate a questo "
+"computer,direttamente alla rete o ad una macchina Windows.\n"
+"\n"
+"Se hai una o più stampanti da usare con questa macchina, collegale e "
+"accendile in modo che possano essere rilevate automaticamente. Anche le "
+"stampanti in rete e le macchine Windows dovranno essere collegate e accese.\n"
+"\n"
+"Tieni conto che il rilevamento automatico delle stampanti di rete è più "
+"lento di quello per le stampanti locali. Quindi escludilo se non ne hai "
+"bisogno.\n"
+"\n"
+" Premi \"Avanti\" quando sei pronto, o \"Annulla\" se non vuoi configurare la"
+"(e) stampante(i) adesso."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12177,13 +12530,13 @@ msgid ""
"connection types."
msgstr ""
"\n"
-"Benvenuti nell'assistente di configurazione delle stampanti\n"
+"Benvenuto nell'assistente di configurazione delle stampanti\n"
"\n"
-"Questo assistente vi permette di installare stampanti remote o locali che "
+"Questo assistente ti permette di installare stampanti remote o locali che "
"verranno usate da questa macchina e anche da altre macchine sulla rete.\n"
"\n"
-"Vi chiederà tutte le informazioni necessarie per configurare la stampante, "
-"dandovi accesso a tutti i driver, opzioni dei driver e tipi di connessione "
+"Ti chiederà tutte le informazioni necessarie per configurare la stampante, e "
+"ti darà accesso a tutti i driver, opzioni dei driver e tipi di connessione "
"disponibili."
#: ../../printer/printerdrake.pm:1
@@ -12194,6 +12547,10 @@ msgid ""
"Printerdrake could not determine which model your printer %s is. Please "
"choose the correct model from the list."
msgstr ""
+"\n"
+"\n"
+"Printerdrake non riesce a determinare il modello della stampante %s.\n"
+"Per favore, scegli tu il modello giusto dalla lista."
#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, c-format
@@ -12203,7 +12560,7 @@ msgstr ")"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid " on "
-msgstr ""
+msgstr " su "
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12211,14 +12568,14 @@ msgid "("
msgstr "("
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Configuring printer ..."
-msgstr "Sto configurando la stampante \"%s\" ..."
+msgstr "Sto configurando la stampante ..."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Searching for new printers..."
-msgstr "Stampante locale"
+msgstr "Sto cercando nuove stampanti..."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12226,23 +12583,23 @@ msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr ""
+"ATTENZIONE: a seconda del modello di stampante e del sistema di stampa, "
+"verranno installati fino a %d MB di software aggiuntivo."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr ""
+msgstr "Sei sicuro di voler configurare la stampa su questa macchina?\n"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Vuoi effettuare la connessione all'avvio?"
+msgstr "Vuoi abilitare la stampa sulle stampanti definite prima?\n"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr ""
-"Volete impostare questa stampante (\"%s)\n"
-"come stampante predefinita?"
+msgstr "Vuoi abilitare la stampa su stampanti della rete locale?\n"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12250,18 +12607,20 @@ msgid ""
"Do you want to enable printing on the printers mentioned above or on "
"printers in the local network?\n"
msgstr ""
+"Vuoi abilitare la stampa sulle stampanti definite prima o su quelle della "
+"rete locale?\n"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr ""
-"Per favore scegliete la porta alla quale è connessa la vostra stampante."
+msgstr " (Assicurati che tutte le stampanti siano collegate ed accese).\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"There are no printers found which are directly connected to your machine"
msgstr ""
+"Non sono state trovate stampanti collegate direttamente alla tua macchina"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12269,6 +12628,8 @@ msgid ""
"\n"
"There are %d unknown printers directly connected to your system"
msgstr ""
+"\n"
+"Ci sono %d stampanti sconosciute collegate direttamente al tuo sistema"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12276,98 +12637,113 @@ msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""
+"\n"
+"C'è una stampante sconosciuta collegata direttamente al tuo sistema"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The following printer\n"
"\n"
"%s%s\n"
"is directly connected to your system"
-msgstr "Copia i font sul tuo sistema"
+msgstr ""
+"La stampante\n"
+"\n"
+"%s%s\n"
+"è connessa direttamente al tuo sistema"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The following printer\n"
"\n"
"%s%s\n"
"are directly connected to your system"
-msgstr "Copia i font sul tuo sistema"
+msgstr ""
+"La stampante\n"
+"\n"
+"%s%s\n"
+"sono connesse direttamente al tuo sistema"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"The following printers\n"
"\n"
"%s%s\n"
"are directly connected to your system"
-msgstr "Copia i font sul tuo sistema"
+msgstr ""
+"Le stampanti\n"
+"\n"
+"%s%s\n"
+"sono connesse direttamente al tuo sistema"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "and %d unknown printers"
-msgstr "Aggiungi nuova stampante"
+msgstr "e %d stampanti sconosciute"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "and one unknown printer"
-msgstr "Aggiungi nuova stampante"
+msgstr "e una stampante sconosciuta"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Checking your system..."
-msgstr "Sto riavviando il sistema di stampa ..."
+msgstr "Sto verificando il sistema ..."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Restarting CUPS..."
-msgstr "Riavvia XFS"
+msgstr "Riavvio di CUPS"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "This server is already in the list, it cannot be added again.\n"
-msgstr ""
+msgstr "Questo server è già nell'elenco, non puoi aggiungerlo ancora.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Examples for correct IPs:\n"
-msgstr ""
+msgstr "Esempi di IP corretti:\n"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "The entered IP is not correct.\n"
-msgstr "Il modello è corretto"
+msgstr "L'IP inserito non è corretto.\n"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Server IP missing!"
-msgstr "Il nome del server NCP è assente"
+msgstr "Manca il nome del server IP!"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Enter IP address and port of the host whose printers you want to use."
msgstr ""
+"Fornisci l'indirizzo IP e la porta dell'host di cui vuoi usare le stampanti."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Accessing printers on remote CUPS servers"
-msgstr "Stampante su server CUPS remoto"
+msgstr "Accesso a stampanti su server CUPS remoti"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Remove selected server"
-msgstr "Rimuovi quelli selezionati"
+msgstr "Rimuovi il server selezionato"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Edit selected server"
-msgstr "rilevato %s"
+msgstr "Modifica il server selezionato"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Add server"
-msgstr "Aggiungere un utente"
+msgstr "Aggiungi un server"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12376,26 +12752,29 @@ msgid ""
"do this if the servers do not broadcast their printer information into the "
"local network."
msgstr ""
+"Aggiungi qui i server CUPS di cui vuoi utilizzare le stampanti. Devi farlo "
+"solo se i server non comunicano le informazioni sulle stampanti a loro "
+"connessetramite la rete locale."
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "IP address of host/network:"
-msgstr ""
+msgstr "Indirizzo IP dell'host/rete:"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "This host/network is already in the list, it cannot be added again.\n"
-msgstr ""
+msgstr "Questo host/rete è già nell'elenco, non puoi aggiungerlo ancora.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The entered host/network IP is not correct.\n"
-msgstr ""
+msgstr "L'IP dell'host/rete che è stato inserito non è corretto.\n"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Host/network IP address missing."
-msgstr ""
+msgstr "Manca l'indirizzo IP dell'host/rete."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12403,26 +12782,28 @@ msgid ""
"Choose the network or host on which the local printers should be made "
"available:"
msgstr ""
+"Scegli la rete o l'host su cui le stampanti locali dovranno essere rese "
+"disponibili:"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Sharing of local printers"
-msgstr "Stampante locale"
+msgstr "Condivisione delle stampanti locali"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Remove selected host/network"
-msgstr "Rimuovi quelli selezionati"
+msgstr "Rimuovi l'host/rete selezionato"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Edit selected host/network"
-msgstr ""
+msgstr "Modifica l'host/rete selezionato"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Add host/network"
-msgstr ""
+msgstr "Aggiungi un host o una rete"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12430,6 +12811,8 @@ msgid ""
"These are the machines and networks on which the locally connected printer"
"(s) should be available:"
msgstr ""
+"Queste sono le macchine e le reti sulle quali saranno rese disponibili la/le "
+"stampante(i) di questo PC:"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12447,11 +12830,24 @@ msgid ""
"If some of these measures lead to problems for you, turn this option off, "
"but then you have to take care of these points."
msgstr ""
+"Se questa opzione è attivata, ad ogni avvio di CUPS viene automaticamente "
+"controllato che:\n"
+"\n"
+"- se è installato LPD/LPRng, il file /etc/printcap non sia sovrascritto da "
+"CUPS\n"
+"\n"
+"- se manca /etc/cups/cupsd.conf, venga creato\n"
+"\n"
+"- quando le informazioni sulle stampanti vengono diffuse in broadcast, non "
+"contengano \"localhost\" come nome del server\n"
+"\n"
+"Se qualcuna di queste misure non ti piace, disattiva questa opzione, ma poi "
+"abbi cura che non si verifichino problemi."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Automatic correction of CUPS configuration"
-msgstr "Configurazione automatica di CUPS"
+msgstr "Correzione automatica della configurazione di CUPS"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12465,41 +12861,50 @@ msgid ""
"address(es) and optionally the port number(s) here to get the printer "
"information from the server(s)."
msgstr ""
+"Per avere accesso alle stampanti su server CUPS remoti all'interno della tua "
+"rete locale devi solo attivare l'opzione \"Cerca stampanti disponibili su "
+"macchine remote\". I server CUPS informano automaticamente la tua macchina "
+"in merito alle loro stampanti. Tutte le stampanti attualmente note alla tua "
+"macchina sono elencate nella sezione \"Stampanti remote\" della pagina "
+"principale di Printerdrake. Se il server CUPS non si trova all'interno della "
+"rete locale, devi indicare il suo indirizzo IP e, facoltativamente, il "
+"numero della porta in modo da ottenere dal server le informazioni relative "
+"alla stampante."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "None"
-msgstr "Fatto"
+msgstr "Nessuna"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Additional CUPS servers: "
-msgstr "Sul server CUPS \"%s\""
+msgstr "Server CUPS aggiuntivi:"
#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
-#, fuzzy, c-format
+#, c-format
msgid "No remote machines"
-msgstr "(su questa macchina)"
+msgstr "Nessuna macchina remota"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Custom configuration"
-msgstr "Riconfigurazione automatica"
+msgstr "Configurazione personalizzata"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "Printer sharing on hosts/networks: "
-msgstr "Stampa"
+msgstr "Condivisione stampante con host o reti: "
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Automatically find available printers on remote machines"
-msgstr ""
+msgstr "Cerca stampanti disponibili su macchine remote"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The printers on this machine are available to other computers"
-msgstr ""
+msgstr "Le stampanti di questo computer sono disponibili per altre macchine"
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12507,6 +12912,8 @@ msgid ""
"You can also decide here whether printers on remote machines should be "
"automatically made available on this machine."
msgstr ""
+"Qui puoi decidere se rendere automaticamente disponibili sul tuo computer le "
+"stampanti collegate ad altre macchine."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12514,27 +12921,30 @@ msgid ""
"Here you can choose whether the printers connected to this machine should be "
"accessable by remote machines and by which remote machines."
msgstr ""
+"Qui puoi decidere se rendere automaticamente disponibili ad altre macchine "
+"della rete le stampanti collegate al tuo computer e, se si, a quali altre "
+"macchine."
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid "CUPS printer sharing configuration"
-msgstr "Configurazione di una stampante OKI winprinter"
+msgstr "Configurazione della condivisione di stampanti con CUPS"
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr ""
+msgstr "Rilevamento automatico di stampanti locali, TCP/Socket, e SMB"
#: ../../printer/printerdrake.pm:1
-#, fuzzy, c-format
+#, c-format
msgid ""
"\n"
"Printers on remote CUPS servers do not need to be configured here; these "
"printers will be automatically detected."
msgstr ""
"\n"
-"Con un server remoto CUPS, non devi configurare alcuna stampante\n"
-"adesso: le stampanti saranno individuate automaticamente."
+"Le stampanti su server remoti CUPS, non devono essere configurate;\n"
+"queste stampanti saranno individuate automaticamente."
#: ../../printer/printerdrake.pm:1
#, c-format
@@ -12553,6 +12963,9 @@ msgid ""
"\n"
"Set the user umask."
msgstr ""
+"Argomenti: (umask)\n"
+"\n"
+"Imposta l'umask dell'utente."
#: ../../security/help.pm:1
#, c-format
@@ -12561,6 +12974,9 @@ msgid ""
"\n"
"Set the shell timeout. A value of zero means no timeout."
msgstr ""
+"Argomenti: (val)\n"
+"\n"
+"Imposta il timeout per la shell. Se metti 0, non c'è tempo massimo."
#: ../../security/help.pm:1
#, c-format
@@ -12569,67 +12985,77 @@ msgid ""
"\n"
"Set shell commands history size. A value of -1 means unlimited."
msgstr ""
+"Argomenti: (dimensione)\n"
+"\n"
+"Imposta la lunghezza della cronologia per la shell.\n"
+"Se metti -1, sarà illimitata."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check additions/removals of sgid files."
-msgstr ""
+msgstr "se si imposta \"si\", verifica aggiunte e rimozioni di file sgid."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check open ports."
-msgstr ""
+msgstr "se si imposta \"si\", verifica le porte aperte."
#: ../../security/help.pm:1
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
msgstr ""
+"se impostato, spedisce il messaggio a questo indirizzo,\n"
+"altrimenti lo manda a root."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report check result by mail."
-msgstr ""
+msgstr "se si imposta \"si\", invia per posta il risultato della verifica."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check files/directories writable by everybody."
-msgstr ""
+msgstr "se si imposta \"si\", verifica file e directory scrivibili da tutti."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, reports check result to tty."
-msgstr ""
+msgstr "se si imposta \"si\", mostra i risultati della verifica su tty."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, run some checks against the rpm database."
-msgstr ""
+msgstr "se si imposta \"si\", esegue alcuni controlli sul database di rpm."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""
+"se si imposta \"si\", controlla se i dispositivi di rete sono in modo "
+"promiscuo."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, run chkrootkit checks."
-msgstr ""
+msgstr "se si imposta \"si\", esegue verifiche chkrootkit."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
msgstr ""
+"se si imposta \"si\", verifica i permessi sui file nelle home degli utenti."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
msgstr ""
+"se si imposta \"si\", verifica l'aggiunta e la rimozione di file suid root."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report check result to syslog."
-msgstr ""
+msgstr "se si imposta \"si\", scrive i risultati delle verifiche su syslog."
#: ../../security/help.pm:1
#, c-format
@@ -12637,26 +13063,30 @@ msgid ""
"if set to yes, check for empty passwords, for no password in /etc/shadow and "
"for users with the 0 id other than root."
msgstr ""
+"se si imposta \"si\", controlla le password vuote e gli utenti che non hanno "
+"la password in /etc/shadow o che hanno ID=0 pur non essendo root."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, run the daily security checks."
msgstr ""
+"se si imposta \"si\", esegue ogni giorno le verifiche per la sicurezza."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
-msgstr ""
+msgstr "se si imposta \"si\", verifica il checksum dei file suid e sgid."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check empty password in /etc/shadow."
msgstr ""
+"se si imposta \"si\", controlla eventuali password vuote in /etc/shadow."
#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report unowned files."
-msgstr ""
+msgstr "se si imposta \"si\", controlla i file senza proprietario."
#: ../../security/help.pm:1
#, c-format
@@ -12665,6 +13095,9 @@ msgid ""
"\n"
"Set the root umask."
msgstr ""
+"Argomenti: (umask)\n"
+"\n"
+"Imposta l'umask di root."
#: ../../security/help.pm:1
#, c-format
@@ -12674,6 +13107,10 @@ msgid ""
"Set the password minimum length and minimum number of digit and minimum "
"number of capitalized letters."
msgstr ""
+"Argomenti: (length, ndigits=0, nupper=0)\n"
+"\n"
+"Fissa la lunghezza minima della password, il numero minimo di cifre e quello "
+"di lettere maiuscole."
#: ../../security/help.pm:1
#, c-format
@@ -12682,6 +13119,10 @@ msgid ""
"\n"
"Set the password history length to prevent password reuse."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+" Imposta quante vecchie password vengono ricordate\n"
+"per prevenirne il riutilizzo."
#: ../../security/help.pm:1
#, c-format
@@ -12691,6 +13132,10 @@ msgid ""
"Set password aging to \\fImax\\fP days and delay to change to \\fIinactive"
"\\fP."
msgstr ""
+"Argomenti: (max, inactive=-1)\n"
+"\n"
+"Fissa la durata della password in \\fImax\\fP giorni e aspetta \\fIinactive"
+"\\fP per cambiarla."
#: ../../security/help.pm:1
#, c-format
@@ -12699,6 +13144,10 @@ msgid ""
"\n"
"Add the name as an exception to the handling of password aging by msec."
msgstr ""
+"Argomenti: (nome)\n"
+"\n"
+"Aggiungi questo nome alle eccezioni per come msec gestisce la durata delle "
+"password."
#: ../../security/help.pm:1
#, c-format
@@ -12707,6 +13156,9 @@ msgid ""
"\n"
" Enable/Disable sulogin(8) in single user level."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Abilita o disabilita sulogin(8) nel livello \"singolo utente\"."
#: ../../security/help.pm:1
#, c-format
@@ -12715,6 +13167,9 @@ msgid ""
"\n"
" Activate/Disable daily security check."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Abilita o disabilita i controlli giornalieri per la sicurezza."
#: ../../security/help.pm:1
#, c-format
@@ -12723,6 +13178,9 @@ msgid ""
"\n"
"Activate/Disable ethernet cards promiscuity check."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Abilita o disabilita il controllo di promiscuità sulle schede ethernet."
#: ../../security/help.pm:1
#, c-format
@@ -12731,6 +13189,9 @@ msgid ""
"\n"
"Use password to authenticate users."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Utilizza password per autenticare utenti."
#: ../../security/help.pm:1
#, c-format
@@ -12739,6 +13200,9 @@ msgid ""
"\n"
" Enabling su only from members of the wheel group or allow su from any user."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Permettere il comando \"su\" solo ai membri del gruppo wheel o a chiunque."
#: ../../security/help.pm:1
#, c-format
@@ -12747,6 +13211,9 @@ msgid ""
"\n"
"Enable/Disable msec hourly security check."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Richiedere o meno che msec controlli la sicurezza ogni ora."
#: ../../security/help.pm:1
#, c-format
@@ -12755,6 +13222,9 @@ msgid ""
"\n"
"Enable/Disable the logging of IPv4 strange packets."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Abilita o disabilita la registrazione su log dei pacchetti IPv4 anomali."
#: ../../security/help.pm:1
#, c-format
@@ -12763,6 +13233,9 @@ msgid ""
"\n"
"Enable/Disable libsafe if libsafe is found on the system."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Abilita o disabilita libsave se viene trovato nel sistema."
#: ../../security/help.pm:1
#, c-format
@@ -12771,6 +13244,9 @@ msgid ""
"\n"
"Enable/Disable IP spoofing protection."
msgstr ""
+"Argomenti: (arg, alert=1)\n"
+"\n"
+"Abilita o disabilita la protezione da IP spoofing."
#: ../../security/help.pm:1
#, c-format
@@ -12780,6 +13256,10 @@ msgid ""
"Enable/Disable name resolution spoofing protection. If\n"
"\\fIalert\\fP is true, also reports to syslog."
msgstr ""
+"Argomenti: (arg, alert=1)\n"
+"\n"
+"Abilita/disabilita protezione da spoofing nella risoluzione dei nomi.\n"
+"Se \\fIalert\\fP è vero, invia anche un rapporto a syslog."
#: ../../security/help.pm:1
#, c-format
@@ -12790,6 +13270,11 @@ msgid ""
"expression describing what to log (see syslog.conf(5) for more details) and\n"
"dev the device to report the log."
msgstr ""
+"Argomenti: (arg, expr='*.*', dev='tty12')\n"
+"\n"
+"Abilita o disabilita i messaggi di syslog sulla console 12. \\fIexpr\\fP è\n"
+"l'espressione cosa registrare (vedi syslog.conf(5) per maggiori dettagli)\n"
+"e dev è il dispositivo di cui riferire il log."
#: ../../security/help.pm:1
#, c-format
@@ -12800,6 +13285,11 @@ msgid ""
"allow and /etc/at.allow\n"
"(see man at(1) and crontab(1))."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Abilita o disabilita gli utenti ad usare crontab e at. Metti gli utenti "
+"abilitati in /etc/cron.allow and /etc/at.allow\n"
+"(vedi i man di at(1) e crontab(1))."
#: ../../security/help.pm:1
#, c-format
@@ -12815,6 +13305,15 @@ msgid ""
"the file\n"
"during the installation of packages."
msgstr ""
+"Argomenti: ()\n"
+"\n"
+"Se SERVER_LEVEL (o, se manca, SECURE_LEVEL) è maggiore di 3\n"
+"in /etc/security/msec/security.conf, crea un symlink /etc/security/msec/"
+"server\n"
+"che punta a /etc/security/msec/server.<SERVER_LEVEL>.\n"
+"/etc/security/msec/server è usato da chkconfig (--add per decidere di\n"
+"aggiungere un servizio se è presente nel file) durante l'installazione dei\n"
+"pacchetti."
#: ../../security/help.pm:1
#, c-format
@@ -12827,6 +13326,13 @@ msgid ""
"services you need, use /etc/hosts.allow\n"
"(see hosts.allow(5))."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Autorizza tutti i servizi controllati da tcp_wrappers (vedi hosts.deny(5).se "
+"\\fIarg\\fP = ALL\n"
+"Solo quelli locali se \\fIarg\\fP = LOCAL e nessuno se \\fIarg\\fP = NONE.\n"
+"Per autorizzare i servizi che ti servono, usa /etc/hosts.allow (vedi hosts."
+"allow(5))."
#: ../../security/help.pm:1
#, c-format
@@ -12836,6 +13342,10 @@ msgid ""
"The argument specifies if clients are authorized to connect\n"
"to the X server on the tcp port 6000 or not."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"L'argomento specifica se i client sono autorizzati a connettersi\n"
+"al server X sulla porta tcp 6000 o no."
#: ../../security/help.pm:1
#, c-format
@@ -12846,6 +13356,12 @@ msgid ""
"on the client side: ALL (all connections are allowed), LOCAL (only\n"
"local connection) and NONE (no connection)."
msgstr ""
+"Argomenti: (arg, listen_tcp=None)\n"
+"\n"
+"Permette o nega le connessioni X. Il primo argomento specifica cosa \n"
+"accade dal lato cliente: ALL (tutte le connessioni sono permesse),\n"
+" allowed), LOCAL (sono permesse solo le connessioni locali)\n"
+"e NONE (nessuna connessione)."
#: ../../security/help.pm:1
#, c-format
@@ -12855,6 +13371,10 @@ msgid ""
"Allow/Forbid the list of users on the system on display managers (kdm and "
"gdm)."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Permette o nega l'elencazione degli utenti del sistema sul display manager "
+"(kdm e gdm)."
#: ../../security/help.pm:1
#, c-format
@@ -12863,6 +13383,9 @@ msgid ""
"\n"
"Allow/Forbid direct root login."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Permette o nega la connessione diretta per root."
#: ../../security/help.pm:1
#, c-format
@@ -12871,6 +13394,9 @@ msgid ""
"\n"
"Allow/Forbid remote root login."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Permette o nega la connessione remota per root."
#: ../../security/help.pm:1
#, c-format
@@ -12879,6 +13405,9 @@ msgid ""
"\n"
"Allow/Forbid reboot by the console user."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Permette o vieta agli utenti il ravvio del sistema da console."
#: ../../security/help.pm:1
#, c-format
@@ -12889,6 +13418,11 @@ msgid ""
"\\fP = NONE no issues are\n"
"allowed else only /etc/issue is allowed."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Se \\fIarg\\fP = ALL si consente l'esistenza di /etc/issue e /etc/issue."
+"net.\n"
+"Se \\fIarg\\fP = NONE nessuna \"issue\" è permessa, ma solo /etc/issue."
#: ../../security/help.pm:1
#, c-format
@@ -12897,6 +13431,9 @@ msgid ""
"\n"
"Allow/Forbid autologin."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Permette o vieta il login automatico."
#: ../../security/help.pm:1
#, c-format
@@ -12905,6 +13442,9 @@ msgid ""
"\n"
" Accept/Refuse icmp echo."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Permette o vieta l'eco icmp."
#: ../../security/help.pm:1
#, c-format
@@ -12913,6 +13453,9 @@ msgid ""
"\n"
" Accept/Refuse broadcasted icmp echo."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Permette o vieta l'eco icmp in broadcast."
#: ../../security/help.pm:1
#, c-format
@@ -12921,6 +13464,9 @@ msgid ""
"\n"
"Accept/Refuse bogus IPv4 error messages."
msgstr ""
+"Argomenti: (arg)\n"
+"\n"
+"Permette o inibisce i messaggi simulati di errore IPv4."
#: ../../security/level.pm:1
#, c-format
@@ -12974,13 +13520,12 @@ msgid ""
"connections from many clients. Note: if your machine is only a client on the "
"Internet, you should choose a lower level."
msgstr ""
-"Con questo livello di sicurezza, l'uso di questo sistema come server "
-"diventa\n"
-"possibile. La sicurezza è ora abbastanza alta per consentire l'utilizzo\n"
-"del sistema come server che accetta connessioni da molti clienti. Nota: se "
-"la vostra\n"
-"macchina è un semplice client su Internet, sarebbe meglio scegliere un "
-"livello più basso."
+"A questo livello di sicurezza, diventa possibile l'uso di questo sistema "
+"come server.\n"
+"La sicurezza è ora abbastanza alta per consentire l'utilizzo del sistema\n"
+" come server che accetta connessioni da molti clienti.\n"
+"Nota: se la tua macchina è un semplice client su Internet, sarebbe meglio "
+"scegliere un livello più basso."
#: ../../security/level.pm:1
#, c-format
@@ -13006,7 +13551,8 @@ msgid ""
"Passwords are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-"Ora le password sono abilitate, ma l'uso in rete è ancora sconsigliato."
+"Ora le password sono abilitate, ma è ancora sconsigliato collegarsi a "
+"internet."
#: ../../security/level.pm:1
#, c-format
@@ -13016,7 +13562,7 @@ msgid ""
"or to the Internet. There is no password access."
msgstr ""
"Questo livello va usato con cura. Rende il sistema più facile da usare,\n"
-"ma molto delicato: non deve essere usato per una macchina connessa\n"
+"ma molto vulnerabile. Non deve essere usato per una macchina connessa\n"
" ad altre o ad Internet. Gli accessi non sono regolati da password."
#: ../../security/level.pm:1
@@ -13048,258 +13594,231 @@ msgstr "Benvenuto ai cracker"
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
-"Your new operating system is the result of collaborative work on the part of "
-"the worldwide Linux Community"
+"Your new operating system is the result of collaborative work of the "
+"worldwide Linux Community."
msgstr ""
+"Il successo di MandrakeSoft si basa sull principio del Software Libero. Il "
+"tuo nuovo sistema operativo è il risultato del lavoro collaborativo di tutta "
+"la la Comunità mondiale di Linux."
#: ../../share/advertising/01-thanks.pl:1
#, c-format
-msgid "Welcome to the Open Source world"
-msgstr ""
+msgid "Welcome to the Open Source world."
+msgstr "Benvenuto nel mondo dell'Open Source"
#: ../../share/advertising/01-thanks.pl:1
#, c-format
msgid "Thank you for choosing Mandrake Linux 9.1"
-msgstr ""
+msgstr "Grazie di aver scelto Mandrake Linux 9.1"
#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
-"To share your own knowledge and help build Linux tools, join the discussion "
-"forums you'll find on our \"Community\" webpages"
+"To share your own knowledge and help build Linux software, join our "
+"discussion forums on our \"Community\" webpages."
msgstr ""
+"Per condividere le tue capacità personali e aiutare a sviluppare strumenti "
+"Linux, partecipa ai forum di discussione che trovi sulle nostre pagine web "
+"dedicate alla \"Comunità\""
#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Want to know more about the Open Source community?"
-msgstr ""
-
-#: ../../share/advertising/02-community.pl:1
-#, fuzzy, c-format
-msgid "Get involved in the Free Software world"
-msgstr "Unisciti al mondo del software libero"
-
-#: ../../share/advertising/03-internet.pl:1
-#, c-format
msgid ""
-"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
-"view animations with Mozilla and Konqueror, or read your mail and handle "
-"your personal information with Evolution and Kmail"
+"Want to know more and to contribute to the Open Source community? Get "
+"involved in the Free Software world!"
msgstr ""
+"Vuoi saperne di più sulla comunità dell'Open Source? Unisciti al mondo del "
+"software libero!"
-#: ../../share/advertising/03-internet.pl:1
-#, fuzzy, c-format
-msgid "Get the most from the Internet"
-msgstr "Connetti ad Internet"
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid ""
-"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
-"files, edit and handle your images or photos, and play videos"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
-#, c-format
-msgid "Push multimedia to its limits!"
-msgstr ""
-
-#: ../../share/advertising/04-multimedia.pl:1
+#: ../../share/advertising/02-community.pl:1
#, c-format
-msgid "Discover the most up-to-date graphical and multimedia tools!"
+msgid "Build the future of Linux!"
msgstr ""
-#: ../../share/advertising/05-games.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
-"strategy, ..."
+"And, of course, push multimedia to its limits with the very latest software "
+"to play videos, audio files and to handle your images or photos."
msgstr ""
+"Mandrake Linux 9.1 ti permette di usare i software più recenti per ascoltare "
+"file musicali, modificare e gestire le tue immagini o foto e vedere filmati."
-#: ../../share/advertising/05-games.pl:1
-#, c-format
-msgid "Games"
-msgstr "Giochi"
-
-#: ../../share/advertising/06-mcc.pl:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
msgid ""
-"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
-"your machine"
+"Surf the Web with Mozilla or Konqueror, read your mail with Evolution or "
+"Kmail, create your documents with OpenOffice.org."
msgstr ""
-#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
+#: ../../share/advertising/03-software.pl:1
#, c-format
-msgid "Mandrake Control Center"
-msgstr "Centro di Controllo Mandrake"
-
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
-msgid ""
-"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
-"modified: KDE 3, Gnome 2, WindowMaker, ..."
+msgid "MandrakeSoft has selected the best software for you"
msgstr ""
-#: ../../share/advertising/07-desktop.pl:1
-#, c-format
-msgid "User interfaces"
-msgstr "Interfacce utente"
-
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, c-format
msgid ""
-"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
-"development environments"
+"Mandrake Linux 9.1 provides you with the Mandrake Control Center, a powerful "
+"tool to fully adapt your computer to the use you make of it. Configure and "
+"customize elements such as the security level, the peripherals (screen, "
+"mouse, keyboard...), the Internet connection and much more!"
msgstr ""
-#: ../../share/advertising/08-development.pl:1
-#, c-format
-msgid "Mandrake Linux 9.1 is the ultimate development platform"
-msgstr ""
-
-#: ../../share/advertising/08-development.pl:1
+#: ../../share/advertising/04-configuration.pl:1
#, fuzzy, c-format
-msgid "Development simplified"
-msgstr "Sviluppo"
+msgid "Mandrake's multipurpose configuration tool"
+msgstr "Configurazione del Terminal Server Mandrake"
-#: ../../share/advertising/09-server.pl:1
-#, c-format
+#: ../../share/advertising/05-desktop.pl:1
+#, fuzzy, c-format
msgid ""
-"Transform your machine into a powerful Linux server with a few clicks of "
-"your mouse: Web server, mail, firewall, router, file and print server, ..."
+"Perfectly adapt your computer to your needs thanks to the 11 available "
+"Mandrake Linux user interfaces which can be fully modified: KDE 3.1, GNOME "
+"2.2, Window Maker, ..."
msgstr ""
+"Mandrake Linux 9.1 ti fornisce 11 interfacce utente che possono essere "
+"completamente personalizzate: KDE-3 ,GNOME-2, WindowMaker, ..."
-#: ../../share/advertising/09-server.pl:1
+#: ../../share/advertising/05-desktop.pl:1
#, c-format
-msgid "Turn your machine into a reliable server"
+msgid "A customizable environment"
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid "This product is available on MandrakeStore website"
+msgid ""
+"To modify and to create in different languages such as Perl, Python, C and C+"
+"+ has never been so easy thanks to GNU gcc 3 and the best Open Source "
+"development environments."
msgstr ""
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/06-development.pl:1
#, c-format
-msgid ""
-"This firewall product includes network features that allow you to fulfill "
-"all your security needs"
-msgstr ""
+msgid "Mandrake Linux 9.1: the ultimate development platform"
+msgstr "Mandrake Linux 9.1 è la più avanzata piattaforma di sviluppo."
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
msgid ""
-"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
-"F.)"
+"Transform your computer into a powerful Linux server: Web server, mail, "
+"firewall, router, file and print server (etc.) are just a few clicks away!"
msgstr ""
+"Trasforma la tua macchina in un server Linux potente con pochi clic del "
+"mouse: server web, di posta, di stampa, firewall, router, file server,..."
-#: ../../share/advertising/10-mnf.pl:1
+#: ../../share/advertising/07-server.pl:1
#, c-format
-msgid "Optimize your security"
-msgstr ""
+msgid "Turn your computer into a reliable server"
+msgstr "Trasforma la tua macchina in un server affidabile."
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies,\" are available online on our e-store:"
+"other \"goodies\", are available on our e-store:"
msgstr ""
+"Tutta la nostra offerta di soluzioni Linux, oltre ad offerte speciali di "
+"prodotti e altre \"chicche\", sono disponibili in linea nel nostro negozio "
+"interattivo:"
-#: ../../share/advertising/11-mdkstore.pl:1
+#: ../../share/advertising/08-store.pl:1
#, c-format
-msgid "The official MandrakeSoft store"
-msgstr ""
+msgid "The official MandrakeSoft Store"
+msgstr "Il negozio ufficiale di MandrakeStore"
-#: ../../share/advertising/12-mdkstore.pl:1
-#, c-format
+#: ../../share/advertising/09-mdksecure.pl:1
+#, fuzzy, c-format
msgid ""
-"MandrakeSoft works alongside a selection of companies offering professional "
-"solutions compatible with Mandrake Linux. A list of these partners is "
-"available on the MandrakeStore"
+"Enhance your computer performance with the help of a selection of partners "
+"offering professional solutions compatible with Mandrake Linux"
msgstr ""
+"MandrakeSoft collabora con delle ditte selezionate che offrono soluzioni "
+"professionali compatibili con Mandrake Linux. Su MandrakeStore puoi trovare "
+"un elenco di queste società."
-#: ../../share/advertising/12-mdkstore.pl:1
+#: ../../share/advertising/09-mdksecure.pl:1
#, c-format
-msgid "Strategic partners"
+msgid "Get the best items with Mandrake Linux Strategic partners"
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
msgid ""
-"Whether you choose to teach yourself online or via our network of training "
-"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
-"certification program (worldwide professional technical certification)"
+"MandrakeSoft has designed exclusive tools to create the most secured Linux "
+"version ever: Draksec, a system security management tool, and a strong "
+"firewall are teamed up together in order to highly reduce hacking risks."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/10-security.pl:1
#, c-format
-msgid "Certify yourself on Linux"
-msgstr ""
+msgid "Optimize your security by using Mandrake Linux"
+msgstr "Ottimizza la tua sicurezza"
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
+#, c-format
+msgid "This product is available on the MandrakeStore Web site."
+msgstr "Questo prodotto è disponibile sul sito web MandrakeStore"
+
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
msgid ""
-"The training program has been created to respond to the needs of both end "
-"users and experts (Network and System administrators)"
+"Complete your security setup with this very easy-to-use software which "
+"combines high performance components such as a firewall, a virtual private "
+"network (VPN) server and client, an intrusion detection system and a traffic "
+"manager."
msgstr ""
-#: ../../share/advertising/13-mdkcampus.pl:1
+#: ../../share/advertising/11-mnf.pl:1
#, c-format
-msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
+msgid "Secure your networks with the Multi Network Firewall"
msgstr ""
-#: ../../share/advertising/14-mdkexpert.pl:1
+#: ../../share/advertising/12-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
"your knowledge and help others by becoming a recognized Expert on the online "
"technical support website:"
msgstr ""
+"Unisciti al team che fornisce supporto per MandrakeSoft e alla Comunità "