summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps.pm
blob: f094658e848ef36a3ce1f7aed3e98607b5d37155 (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
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
package install::steps; # $Id$

use diagnostics;
use strict;
use vars qw(@filesToSaveForUpgrade @filesNewerToUseAfterUpgrade);

#-######################################################################################
#- misc imports
#-######################################################################################
use common;
use install::any 'addToBeDone';
use partition_table;
use detect_devices;
use fs::any;
use fs::type;
use fs::partitioning;
use modules;
use run_program;
use lang;
use keyboard;
use fsedit;
use do_pkgs;
use install::pkgs;
use any;
use log;

our @ISA = qw(do_pkgs);

@filesToSaveForUpgrade = qw(
/etc/ld.so.conf /etc/fstab /etc/hosts /etc/conf.modules /etc/modules.conf
);

@filesNewerToUseAfterUpgrade = qw(
/etc/profile
);

#-######################################################################################
#- OO Stuff
#-######################################################################################
sub new($$) {
    my ($type, $o) = @_;

    bless $o, ref($type) || $type;
    return $o;
}

sub charsetChanged {
    my ($_o) = @_;
}

#-######################################################################################
#- In/Out Steps Functions
#-######################################################################################
sub enteringStep {
    my ($_o, $step) = @_;
    log::l("starting step `$step'");
}
sub leavingStep {
    my ($o, $step) = @_;
    log::l("step `$step' finished");

    if (-d "$::prefix/root/drakx") {
	eval { cp_af("/tmp/ddebug.log", "$::prefix/root/drakx") };
	output(install::any::auto_inst_file(), install::any::g_auto_install(1));
    }

    foreach my $s (@{$o->{orderedSteps}}) {
	#- the reachability property must be recomputed each time to take
	#- into account failed step.
	next if $o->{steps}{$s}{done} && !$o->{steps}{$s}{redoable};

	my $reachable = 1;
	if (my $needs = $o->{steps}{$s}{needs}) {
	    my @l = ref($needs) ? @$needs : $needs;
	    $reachable = min(map { $o->{steps}{$_}{done} || 0 } @l);
	}
	$o->{steps}{$s}{reachable} = 1 if $reachable;
    }
    $o->{steps}{$step}{reachable} = $o->{steps}{$step}{redoable};

    while (my $f = shift @{$o->{steps}{$step}{toBeDone} || []}) {
	eval { &$f() };
	if (my $err = $@) {
	    $o->ask_warn(N("Error"), [
N("An error occurred, but I do not know how to handle it nicely.
Continue at your own risk."), formatError($err) || $err ]);
	}
    }
}

sub errorInStep { 
    my ($_o, $err) = @_;
    print "error :(\n"; 
    print "$err\n\n";
    c::_exit(1);
}
sub kill_action {}

#-######################################################################################
#- Steps Functions
#-######################################################################################
#------------------------------------------------------------------------------
sub selectLanguage {
    my ($o) = @_;

    #- for auto_install compatibility with old $o->{lang}
    $o->{locale} = lang::system_locales_to_ourlocale($o->{lang}, $o->{lang}) if $o->{lang};
    $o->{locale}{langs} ||= { $o->{locale}{lang} => 1 };

    if (!exists $o->{locale}{country}) {
	lang::lang_changed($o->{locale});
    }

    add2hash_($o->{locale}, { utf8 => lang::utf8_should_be_needed($o->{locale}) });
    lang::set($o->{locale}, !$o->isa('interactive::gtk'));

    log::l("selectLanguage: pack_langs: ", lang::pack_langs($o->{locale}{langs}), " utf8-flag: ", to_bool($o->{locale}{utf8}));

    #- for auto_install compatibility with old $o->{keyboard} containing directly $o->{keyboard}{KEYBOARD}
    $o->{keyboard} = { KEYBOARD => $o->{keyboard} } if $o->{keyboard} && !ref($o->{keyboard});

    if (!$o->{keyboard} || $o->{keyboard}{unsafe}) {
	$o->{keyboard} = keyboard::default($o->{locale});
	$o->{keyboard}{unsafe} = 1;
	keyboard::setup_install($o->{keyboard});
    }

    $o->charsetChanged;

    addToBeDone {
	lang::write_langs($o->{locale}{langs});
    } 'formatPartitions';
    addToBeDone {
	lang::write_and_install($o->{locale}, $o->do_pkgs);
    } 'installPackages';
}
#------------------------------------------------------------------------------
sub selectKeyboard {
    my ($o) = @_;
    keyboard::setup_install($o->{keyboard});

    addToBeDone {
	keyboard::write($o->{keyboard});
    } 'installPackages' if !$o->{isUpgrade} || !$o->{keyboard}{unsafe};

    if ($o->{raw_X}) {
	require Xconfig::default;
	Xconfig::default::config_keyboard($o->{raw_X}, $o->{keyboard});
	$o->{raw_X}->write;
    }
}
#------------------------------------------------------------------------------
sub acceptLicense {}

#------------------------------------------------------------------------------
sub setupSCSI {
    my ($o) = @_;
    install::any::configure_pcmcia($o);
    modules::load(modules::category2modules('disk/cdrom'));
    modules::load_category($o->{modules_conf}, 'bus/firewire');
    modules::load_category($o->{modules_conf}, 'disk/ide|scsi|hardware_raid|sata|firewire');

    install::any::getHds($o);
}

#------------------------------------------------------------------------------
sub selectInstallClass {
    my ($o) = @_;

    if ($o->{partitioning}{use_existing_root} || $o->{isUpgrade}) {
	# either one root is defined (and all is ok), or we take the first one we find
	my $p = fs::get::root_($o->{fstab}) || (first(install::any::find_root_parts($o->{fstab}, $::prefix)) || die)->{part};
	$o->{migrate_device_names} = install::any::use_root_part($o->{all_hds}, $p);
    } 
}

#------------------------------------------------------------------------------
sub doPartitionDisksBefore {
    my ($o) = @_;
    eval { 
	eval { fs::mount::umount("$::prefix/sys") };
	eval { fs::mount::umount("$::prefix/proc/bus/usb") };
	eval { fs::mount::umount("$::prefix/proc") };
	eval {          fs::mount::umount_all($o->{fstab}) };
	eval { sleep 1; fs::mount::umount_all($o->{fstab}) } if $@; #- HACK
    } if $o->{fstab} && !$::testing;
}

#------------------------------------------------------------------------------
sub doPartitionDisksAfter {
    my ($o) = @_;

    fs::any::write_hds($o->{all_hds}, $o->{fstab}, !$o->{isUpgrade}, sub { $o->rebootNeeded }, $o);

    if ($::local_install) {
	my $p = fs::get::mntpoint2part($::prefix, [ fs::read_fstab('', '/proc/mounts') ]);
	my $part = find { fs::get::is_same_hd($p, $_) } @{$o->{fstab}};
	$part ||= $o->{fstab}[0];
	$part->{mntpoint} = '/';
	$part->{isMounted} = 1;
    }

    fs::any::check_hds_boot_and_root($o->{all_hds}, $o->{fstab});

    if ($o->{partitioning}{use_existing_root}) {
	#- ensure those partitions are mounted so that they are not proposed in choosePartitionsToFormat
	fs::mount::part($_) foreach sort { $a->{mntpoint} cmp $b->{mntpoint} }
				    grep { $_->{mntpoint} && maybeFormatted($_) } @{$o->{fstab}};
    }
}

#------------------------------------------------------------------------------
sub doPartitionDisks {
    my ($o) = @_;

    if ($o->{partitioning}{auto_allocate}) {
	catch_cdie { fsedit::auto_allocate($o->{all_hds}, $o->{partitions}) } sub { 1 };
    }
}

#------------------------------------------------------------------------------

sub rebootNeeded($) {
    my ($_o) = @_;
    log::l("Rebooting...");
    c::_exit(0);
}

sub choosePartitionsToFormat {
    my ($o) = @_;
    fs::partitioning::guess_partitions_to_format($o->{fstab});
}

sub formatMountPartitions {
    my ($o) = @_;
    fs::format::formatMount_all($o->{all_hds}, $o->{fstab}, undef);
}

#------------------------------------------------------------------------------
sub setPackages {
    my ($o) = @_;

    install::any::setPackages($o);
}

sub ask_deselect_media__copy_on_disk {
    my (undef, $_hdlists, $_copy_rpms_on_disk) = @_;
    0;
}

sub ask_change_cd {
    my (undef, $phys_m, $_o_rel_file) = @_;
    log::l("change to medium " . install::media::phys_medium_to_string($phys_m) . " refused (it can't be done automatically)");
    0;
}

sub selectSupplMedia { '' }

sub choosePackages {
    my ($o) = @_;

    #- now for upgrade, package that must be upgraded are
    #- selected first, after is used the same scheme as install.

    #- make sure we kept some space left for available else the system may
    #- not be able to start
    my $available = install::any::getAvailableSpace($o);
    my $availableCorrected = install::pkgs::invCorrectSize($available / sqr(1024)) * sqr(1024);
    log::l(sprintf "available size %s (corrected %s)", formatXiB($available), formatXiB($availableCorrected));

    add2hash_($o, { compssListLevel => 5 }) if !$::auto_install;

    #- !! destroying user selection of packages (they may have done individual selection before)
    exists $o->{compssListLevel}
	  and install::pkgs::setSelectedFromCompssList($o->{packages}, $o->{rpmsrate_flags_chosen}, $o->{compssListLevel}, $availableCorrected);

    $availableCorrected;
}

sub upgrading_redhat() {
    #- remove weird config files that bother Xconfig::* too much
    unlink "$::prefix/etc/X11/XF86Config";
    unlink "$::prefix/etc/X11/XF86Config-4";

    sub prefering_mdk {
	my ($lpkg, $rpkg_ver, $c) = @_;
	my $lpkg_ver = $lpkg->version . '-' . $lpkg->release;
	log::l($lpkg->name . ' ' . ': prefering ' . ($c == 1 ? "$lpkg_ver over $rpkg_ver" : "$rpkg_ver over $lpkg_ver"));
    }

    my $old_compare_pkg = \&URPM::Package::compare_pkg;
    undef *URPM::Package::compare_pkg;
    *URPM::Package::compare_pkg = sub {
	my ($lpkg, $rpkg) = @_;
	my $c = ($lpkg->release =~ /mdk$/ ? 1 : 0) - ($rpkg->release =~ /mdk$/ ? 1 : 0);
	if ($c) {
	    prefering_mdk($lpkg, $rpkg->version . '-' . $rpkg->release, $c);
	    $c;
	} else {
	    &$old_compare_pkg;
	}
    };

    my $old_compare = \&URPM::Package::compare;
    undef *URPM::Package::compare;
    *URPM::Package::compare = sub {
	my ($lpkg, $rpkg_ver) = @_;
	my $c = ($lpkg->release =~ /mdk$/ ? 1 : 0) - ($rpkg_ver =~ /mdk$/ ? 1 : 0);
	if ($c) {
	    prefering_mdk($lpkg, $rpkg_ver, $c);
	    return $c;
	}
	&$old_compare;
    };
}

sub beforeInstallPackages {
    my ($o) = @_;

    read_bootloader_config($o);

    if ($o->{isUpgrade}) {
	$o->{modules_conf}->merge_into(modules::any_conf->read);
    }

    #- save these files in case of upgrade failure.
    if ($o->{isUpgrade}) {
	foreach (@filesToSaveForUpgrade) {
	    unlink "$::prefix/$_.mdkgisave";
	    if (-e "$::prefix/$_") {
		eval { cp_af("$::prefix/$_", "$::prefix/$_.mdkgisave") };
	    }
	}
	foreach (@filesNewerToUseAfterUpgrade) {
	    unlink "$::prefix/$_.rpmnew";
	}
    }

    #- mainly for upgrading redhat packages, but it can help other
    my @should_not_be_dirs = qw(/usr/share/locale/zh_TW/LC_TIME /usr/include/GL);
    my @should_be_dirs = qw(/etc/X11/xkb);
    my @to_remove = (
		     (grep { !-l $_ && -d $_          } map { "$::prefix$_" } @should_not_be_dirs),
		     (grep { -l $_ || !-d $_ && -e $_ } map { "$::prefix$_" } @should_be_dirs),
		    );
    rm_rf(@to_remove);

    if ($o->{isUpgrade} eq 'redhat') {
	upgrading_redhat();
    }

    if ($o->{isUpgrade} =~ /redhat|conectiva/) {
	#- to ensure supermount is removed (???)
	fs::mount_options::set_all_default($o->{all_hds}, %$o, lang::fs_options($o->{locale}));
    }
	

    #- some packages need such files for proper installation.
    install::any::write_fstab($o);

    require network::network;
    network::network::add2hosts("localhost", "127.0.0.1");

    #- resolv.conf will be modified at boot time
    #- the following will ensure we have a working DNS during install
    if (-e "/etc/resolv.conf" && ! -e "$::prefix/etc/resolv.conf") {
	cp_af("/etc/resolv.conf", "$::prefix/etc");
    }

    log::l("setting excludedocs to $o->{excludedocs}");
    substInFile { s/%_excludedocs.*//; $_ .= "%_excludedocs yes\n" if eof && $o->{excludedocs} } "$::prefix/etc/rpm/macros";

    #- add oem theme if the files exists.
    mkdir_p("$::prefix/usr/share");
    install::media::getAndSaveFile_($o->{stage2_phys_medium}, "install/oem-theme.rpm", "$::prefix/usr/share/oem-theme.rpm");

    system("sh", "-c", $o->{preInstallNonRooted}) if $o->{preInstallNonRooted};
}

#- returns number of packages installed, 0 if none were selected.
sub pkg_install {
    my ($o, @l) = @_;
    log::l("selecting packages " . join(" ", @l));

    install::pkgs::select_by_package_names($o->{packages}, \@l);

    my @toInstall = install::pkgs::packagesToInstall($o->{packages});
    if (@toInstall) {
	log::l("installing packages");
	$o->installPackages;
    } else {
	log::l("all packages selected are already installed, nothing to do");
	0;
    }
}

sub installCallback {
#    my (undef, $msg, @para) = @_;
#    log::l("$msg: " . join(',', @para));
}

sub installPackages { #- complete REWORK, TODO and TOCHECK!
    my ($o) = @_;
    my $packages = $o->{packages};

    install::pkgs::remove_marked_ask_remove($packages, \&installCallback);

    #- small transaction will be built based on this selection and depslist.
    my @toInstall = install::pkgs::packagesToInstall($packages);

    my $time = time();
    { 
	local $ENV{DURING_INSTALL} = 1;
	local $ENV{TMPDIR} = '/tmp';
	local $ENV{TMP} = '/tmp';
	install::pkgs::install($o->{isUpgrade}, \@toInstall, $packages, \&installCallback);
    }
    any::writeandclean_ldsoconf($::prefix);

    run_program::rooted_or_die($::prefix, 'ldconfig');

    log::l("Install took: ", formatTimeRaw(time() - $time));
    install::media::log_sizes();
    scalar(@toInstall); #- return number of packages installed.
}

sub afterInstallPackages($) {
    my ($o) = @_;

    read_bootloader_config($o) if $o->{isUpgrade} && is_empty_hash_ref($o->{bootloader});

    die N("Some important packages did not get installed properly.
Either your cdrom drive or your cdrom is defective.
Check the cdrom on an installed computer using \"rpm -qpl media/main/*.rpm\"
") if any { m|read failed: Input/output error| } cat_("$::prefix/root/drakx/install.log");

    if (arch() !~ /^sparc/) { #- TODO restore it as may be needed for sparc
	-x "$::prefix/usr/bin/dumpkeys" or $::testing or die 
"Some important packages did not get installed properly.

Please switch to console 2 (using ctrl-alt-f2)
and look at the log file /tmp/ddebug.log

Consoles 1,3,4,7 may also contain interesting information";
    }

    #-  why not? cuz weather is nice today :-) [pixel]
    common::sync(); common::sync();

    #- generate /etc/lvmtab needed for rc.sysinit
    run_program::rooted($::prefix, 'lvm2', 'vgscan') if -e '/etc/lvmtab';

    require harddrake::autoconf;
    #- configure PCMCIA services if needed.
    harddrake::autoconf::pcmcia($o->{pcmcia});
    #- configure CPU frequency modules
    harddrake::autoconf::cpufreq();

    #- for mandrake_firstime
    touch "$::prefix/var/lock/TMP_1ST";

    any::config_mtools($::prefix);

    #- make sure wins is disabled in /etc/nsswitch.conf
    #- else if eth0 is not existing, glibc segfaults.
    substInFile { s/\s*wins// if /^\s*hosts\s*:/ } "$::prefix/etc/nsswitch.conf";

    #- make sure some services have been enabled (or a catastrophic restart will occur).
    #- these are normally base package post install scripts or important services to start.
    run_program::rooted($::prefix, "chkconfig", "--add", $_) foreach
			qw(netfs network rawdevices sound kheader keytable syslog crond portmap);

    if ($o->{mouse}{device} =~ /ttyS/) {
	log::l("disabling gpm for serial mice (does not get along nicely with X)");
	run_program::rooted($::prefix, "chkconfig", "--del", "gpm"); 
    }

    #- install urpmi before as rpmdb will be opened, this will cause problem with update-menus.
    $o->install_urpmi;

    #- update menu scheme before calling update menus if desktop mode.
    if ($o->{meta_class} eq 'desktop') {
	run_program::rooted($::prefix, "touch", "/etc/menu/do-not-create-menu-link");
	run_program::rooted($::prefix, "touch", "/etc/menu/enable_simplified");
    } elsif (!$o->{isUpgrade}) {
	run_program::rooted($::prefix, "touch", "/etc/menu/do-not-create-menu-link");
    }

    if ($o->{pcmcia}) {
	substInFile { s/.*(TaskBarShowAPMStatus).*/$1=1/ } "$::prefix/usr/lib/X11/icewm/preferences";
	eval { cp_af("$::prefix/usr/share/applnk/System/kapm.kdelnk",
		     "$::prefix/etc/skel/Desktop/Autostart/kapm.kdelnk") };
    }

    if ($o->{brltty}) {
	output("$::prefix/etc/brltty.conf", <<EOF);
braille-driver $o->{brltty}{driver}
braille-device $o->{brltty}{device}
text-table $o->{brltty}{table}
EOF
    }


    install::any::disable_user_view() if $o->{security} >= 3 || $o->{authentication}{NIS};
    run_program::rooted($::prefix, "kdeDesktopCleanup");

    #- move some file after an upgrade that may be seriously annoying.
    #- and rename saved files to .mdkgiorig.
    if ($o->{isUpgrade}) {
	my $pkg = install::pkgs::packageByName($o->{packages}, 'rpm');
	$pkg && ($pkg->flag_selected || $pkg->flag_installed) && $pkg->compare(">= 4.0") and install::pkgs::cleanOldRpmDb();

	log::l("moving previous desktop files that have been updated to Trash of each user");
	install::any::kdemove_desktop_file($::prefix);

	foreach (@filesToSaveForUpgrade) {
	    renamef("$::prefix/$_.mdkgisave", "$::prefix/$_.mdkgiorig")
	      if -e "$::prefix$_.mdkgisave";
	}

	foreach (@filesNewerToUseAfterUpgrade) {
	    if (-e "$::prefix/$_.rpmnew" && -e "$::prefix/$_") {
		renamef("$::prefix/$_", "$::prefix/$_.mdkgiorig");
		renamef("$::prefix/$_.rpmnew", "$::prefix/$_");
	    }
	}
    }

    renamef(install::pkgs::removed_pkgs_to_upgrade_file(), install::pkgs::removed_pkgs_to_upgrade_file() . '.done');
    unlink(glob("$::prefix/root/drakx/*.upgrading"));

    if ($o->{upgrade_by_removing_pkgs_matching}) {
	if (cat_("$::prefix/etc/inittab.rpmsave") =~ /^id:5:initdefault:\s*$/m) {
	    $o->{X}{xdm} = 1;
	    require Xconfig::various;
	    Xconfig::various::runlevel(5);
	}
    }

    any::fix_broken_alternatives($o->{isUpgrade} eq 'redhat');

    #- update theme directly from a package (simplest).
    if (-s "$::prefix/usr/share/oem-theme.rpm") {
	run_program::rooted($::prefix, "rpm", "-U", "/usr/share/oem-theme.rpm");
	unlink "/usr/share/oem-theme.rpm";
    }

    #- call update-menus at the end of package installation
    push @{$o->{waitpids}}, run_program::raw({ root => $::prefix, detach => 1 }, "update-menus", "-n");

    $o->install_hardware_packages;

    if ($o->{updatemodules}) {
	$o->updatemodules($ENV{THIRDPARTY_DEVICE}, $ENV{THIRDPARTY_DIR});
    }
}

sub install_urpmi {
    my ($o) = @_;

    my $pkg = install::pkgs::packageByName($o->{packages}, 'urpmi');
    if ($pkg && ($pkg->flag_selected || $pkg->flag_installed)
	#- this is a workaround. if many urpmi packages are found in the
	#- provides of all media, packagesProviding() might return the wrong
	#- one. This probably needs to be fixed in URPM
	|| run_program::rooted_get_stdout($::prefix, '/bin/rpm', '-q', 'urpmi') =~ /urpmi/
    ) {
	install::media::install_urpmi($o->{method}, $o->{packages});
	install::pkgs::saveCompssUsers($o->{packages}, $o->{compssUsers});
    } else {
	log::l("skipping install_urpmi, urpmi not installed");
    }
}

sub install_hardware_packages {
    my ($o) = @_;
    if ($o->{match_all_hardware}) {
        my @l;

        require Xconfig::card;
        require Xconfig::proprietary;
        my $cards = Xconfig::card::readCardsDB("$ENV{SHARE_PATH}/ldetect-lst/Cards+");
        my @drivers = uniq(map { exists $_->{Driver2} ? Xconfig::proprietary::pkg_name_for_Driver2($_) : () } values %$cards);
        push @l, map { $_, @{$o->do_pkgs->check_kernel_module_packages($_) || []} } @drivers;

        require network::connection;
        require network::thirdparty;
        foreach my $type (network::connection->get_types) {
            $type->can('get_thirdparty_settings') or next;
            foreach my $settings (@{$type->get_thirdparty_settings || []}) {
                foreach (@network::thirdparty::thirdparty_types) {
                    my @packages = network::thirdparty::get_required_packages($_, $settings);
                    push @l, network::thirdparty::get_available_packages($_, $o, @packages);
                }
            }
        }

        $o->do_pkgs->install(@l) if @l;
    }
}

sub updatemodules {
    my ($_o, $dev, $rel_dir) = @_;
    return if $::testing;

    $dev = devices::make($dev) or log::l("updatemodules: bad device $dev"), return;

    my $mount_dir = '/updatemodules';
    find {
	eval { fs::mount::mount($dev, $mount_dir, $_, 0); 1 };
    } 'ext2', 'vfat' or log::l("updatemodules: can't mount $dev"), return;

    my $dir = "$mount_dir$rel_dir";
    foreach my $kernel_version (all("$::prefix/lib/modules")) {
	log::l("examining updated modules for kernel $kernel_version");
	-d "$dir/$kernel_version" or next;
	log::l("found updatable modules");
	run_program::run("cd $dir/$kernel_version ; find -type f | cpio -pdu $::prefix/lib/modules/$kernel_version");
	run_program::rooted($::prefix, 'depmod', '-a', '-F', "/boot/System.map-$kernel_version", $kernel_version);
    }

    my $category;
    foreach (cat_("$dir/to_load")) {
	chomp;
	if (/^#/) {
	    ($category) = $1 if /\[list_modules: (.*?)\]/;
	} elsif ($category) {
	    log::l("adding $_ to $category\n");
	    my $r = \%list_modules::l;
	    $r = $r->{$_} foreach split('/', $category);
	    push @$r, $_;

	    $category = '';
	}
    }

    fs::mount::umount($mount_dir);
}

#------------------------------------------------------------------------------
sub selectMouse($) {
    my ($_o) = @_;
}

#------------------------------------------------------------------------------
sub configureNetwork {
    my ($o) = @_;
    require network::network;
    network::network::configure_network($o->{net}, $o, $o->{modules_conf});
    configure_firewall($o) if !$o->{isUpgrade};

    #- only a http proxy can be used by stage1
    #- the method is http even for ftp connections through a http proxy
    #- use this http proxy for both http and ftp connections
    if ($o->{method} eq "http" && $ENV{PROXY}) {
	my $proxy = "http://$ENV{PROXY}" . ($ENV{PROXYPORT} && ":$ENV{PROXYPORT}");
	add2hash($o->{miscellaneous} ||= {}, {
	    http_proxy => $proxy,
	    ftp_proxy => $proxy,
	});
	network::network::proxy_configure($o->{miscellaneous});
    }
}

sub configure_firewall {
    my ($o) = @_;

    #- set up a firewall if ports have been specified or if the security level is high enough
    $o->{firewall_ports} ||= '' if $o->{security} >= 3 && !exists $o->{firewall_ports};

    if (defined $o->{firewall_ports}) {
	require network::drakfirewall;
	$o->{firewall_ports} ||= ''; #- don't open any port by default
	network::drakfirewall::set_ports($o->do_pkgs, 0, $o->{firewall_ports}, 'log_net_drop');
	network::drakfirewall::set_ifw($o->do_pkgs, 1, [ 'psd' ], '');
    }
}

#------------------------------------------------------------------------------
sub installUpdates {
    my ($o) = @_;
    my $u = $o->{updates} or return; 
    $u->{url} or return;

    upNetwork($o);
    require mirror;

    my $phys_medium = install::media::url2mounted_phys_medium($o, $u->{url} . '/media/main/updates');

    my $update_medium = { name => "Updates for Mandriva Linux " . $o->{product_id}{version}, update => 1 };
    install::media::get_standalone_medium($o, $phys_medium, $o->{packages}, $update_medium);

    $o->pkg_install(@{$u->{packages} || []});

    #- re-install urpmi with update security medium.
    install_urpmi($o);
}

sub summaryBefore {}

sub summary {
    my ($o) = @_;
    configureTimezone($o);
}

sub summaryAfter {
    my ($_o) = @_;
}

#------------------------------------------------------------------------------
sub configureTimezone {
    my ($o) = @_;
    install::any::preConfigureTimezone($o);

    $o->pkg_install('ntp') if $o->{timezone}{ntp};

    require timezone;
    timezone::write($o->{timezone});
}

#------------------------------------------------------------------------------
sub configureServices {
    my ($o) = @_;
    if ($o->{services}) {
	require services;
	services::doit($o, $o->{services});
    }
}

#------------------------------------------------------------------------------
sub setRootPassword {
    my ($o) = @_;
    $o->{superuser} ||= {};
    require authentication;
    authentication::set_root_passwd($o->{superuser}, $o->{authentication});
    install::any::set_authentication($o);
}

#------------------------------------------------------------------------------

sub addUser {
    my ($o) = @_;
    my $users = $o->{users} ||= [];

    if ($::prefix) {
	#- getpwnam, getgrnam, getgrid works
	symlinkf("$::prefix/etc/passwd", '/etc/passwd');
	symlinkf("$::prefix/etc/group", '/etc/group');
    }

    any::add_users($users, $o->{authentication});

    if ($o->{autologin}) {
	$o->{desktop} ||= first(any::sessions());
	$o->pkg_install("autologin") if !member($o->{desktop}, 'KDE', 'GNOME');
    }
    any::set_autologin($o->do_pkgs, $o->{autologin}, $o->{desktop});

    install::any::disable_user_view() if @$users == ();
}

#------------------------------------------------------------------------------
sub read_bootloader_config {
    my ($o) = @_;

    require bootloader;
    eval { add2hash($o->{bootloader} ||= {}, bootloader::read($o->{all_hds})) };
    $@ && $o->{isUpgrade} and log::l("read_bootloader_config failed: $@");

    $o->{bootloader}{bootUnsafe} = 0 if $o->{bootloader}{boot}; #- when upgrading, do not ask where to install the bootloader (mbr vs boot partition)
}

sub setupBootloaderBefore {
    my ($o) = @_;
    any::setupBootloaderBefore($o->do_pkgs, $o->{bootloader}, $o->{all_hds}, $o->{fstab}, $o->{keyboard},
                               $o->{allowFB}, $o->{vga}, $o->{meta_class} ne 'server');
}

sub setupBootloader {
    my ($o) = @_;

    any::install_acpi_pkgs($o->do_pkgs, $o->{bootloader});

    require bootloader;
    bootloader::install($o->{bootloader}, $o->{all_hds});
}

#------------------------------------------------------------------------------
sub configureXBefore {
    my ($o) = @_;

    #- keep this here if the package has to be updated.
    $o->pkg_install("task-x11");
}
sub configureX {
    my ($o) = @_;
    configureXBefore($o);

    require Xconfig::default;
    $o->{raw_X} = Xconfig::default::configure($o->do_pkgs, $o->{keyboard}, $o->{mouse});

    require Xconfig::main;
    Xconfig::main::configure_everything_auto_install($o->{raw_X}, $o->do_pkgs, $o->{X}, install::any::X_options_from_o($o));
    configureXAfter($o);
}
sub configureXAfter {
    my ($_o) = @_;
}

#------------------------------------------------------------------------------
sub miscellaneousBefore {
    my ($o) = @_;

    require security::level;
    require security::various;
    $o->{security} ||= security::level::get();
    $o->{security_user} ||= security::various::config_security_user($::prefix);
    $o->{libsafe} ||= security::various::config_libsafe($::prefix);

    log::l("security level is $o->{security}");
}
sub miscellaneous {
    my ($_o) = @_;
    #- keep some given parameters
    #-TODO
}
sub miscellaneousAfter {
    my ($o) = @_;

    $ENV{SECURE_LEVEL} = $o->{security}; #- deprecated with chkconfig 1.3.4-2mdk, uses /etc/sysconfig/msec

    addToBeDone {
	addVarsInSh("$::prefix/etc/sysconfig/system", { META_CLASS => $o->{meta_class} });
	substInFile { s/KEYBOARD_AT_BOOT=.*/KEYBOARD_AT_BOOT=yes/ } "$::prefix/etc/sysconfig/usb" if detect_devices::usbKeyboards();

	eval { install::any::set_security($o) };

    } 'installPackages';
}

#------------------------------------------------------------------------------
sub exitInstall { 
    my ($o) = @_;

    install::any::deploy_server_notify($o) if exists $o->{deploy_server};

    #- mainly for auto_install's
    #- do not use run_program::xxx because it does not leave stdin/stdout unchanged
    system("bash", "-c", $o->{postInstallNonRooted}) if $o->{postInstallNonRooted};
    system("chroot", $::prefix, "bash", "-c", $o->{postInstall}) if $o->{postInstall};

    eval { 
	my $report = '/root/drakx/report.bug';
	unlink "$::prefix$report", "$::prefix$report.gz";
	output "$::prefix$report", install::any::report_bug();
	run_program::rooted($::prefix, 'gzip', $report);
    };
    eval { install::any::getAndSaveAutoInstallFloppies($o, 1) } if arch() !~ /^ppc/;
    eval { output "$::prefix/root/drakx/README", "This directory contains several installation-related files,
mostly log files (very useful if you ever report a bug!).

Beware that some Mandriva Linux tools rely on the contents of some
of these files... so remove any file from here at your own
risk!
" };
    #- wait for remaining processes.
    foreach (@{$o->{waitpids}}) {
	waitpid $_, 0;
	log::l("pid $_ returned $?");
    }
    install::media::umount_media($o->{packages});
    install::media::openCdromTray(install::media::first_medium($o->{packages})->{phys_medium}{device}) if !detect_devices::is_xbox() && $o->{method} eq 'cdrom';
    install::media::log_sizes();
}

#------------------------------------------------------------------------------
sub hasNetwork {
    my ($o) = @_;
    $o->{net}{type} && $o->{net}{network}{NETWORKING} ne 'no' and return 1;
    log::l("no network seems to be configured for internet ($o->{net}{type},$o->{net}{network}{NETWORKING})");
    0;
}

sub network_is_cheap {
    my ($o) = @_;
    member($o->{net}{type}, qw(adsl lan cable));
}

sub start_network_interface {
    my ($o) = @_;
    require network::tools;
    network::tools::start_net_interface($o->{net}, 0);
}

sub stop_network_interface {
    my ($o) = @_;
    require network::tools;
    network::tools::stop_net_interface($o->{net}, 0);
}

#------------------------------------------------------------------------------
sub upNetwork {
    my ($o, $b_pppAvoided) = @_;

    install::any::is_network_install($o) || $::local_install and return 1;
    $o->{modules_conf}->write;
    if (! -e "/etc/resolv.conf") {
        #- symlink resolv.conf in install root too so that updates and suppl media can be added
        symlink "$::prefix/etc/resolv.conf", "/etc/resolv.conf";
    }
    if (hasNetwork($o)) {
	if (network_is_cheap($o)) {
	    log::l("starting network ($o->{net}{type})");
	    start_network_interface($o);
	    return 1;
	} elsif (!$b_pppAvoided) {
	    log::l("starting network (ppp: $o->{net}{type})");
	    eval { modules::load(qw(serial ppp bsd_comp ppp_deflate)) };
	    run_program::rooted($::prefix, "/etc/rc.d/init.d/syslog", "start");
	    start_network_interface($o);
	    return 1;
	} else {
	    log::l(qq(not starting network (b/c ppp avoided and type is "$o->{net}{type})"));
	}
    }
    $::testing;
}

#------------------------------------------------------------------------------
sub downNetwork {
    my ($o, $costlyOnly) = @_;

    install::any::is_network_install($o) || $::local_install and return 1;
    $o->{modules_conf}->write;
    if (hasNetwork($o)) {
	if (!$costlyOnly) {
	    stop_network_interface($o);
	    return 1;
	} elsif (!network_is_cheap($o)) {
	    stop_network_interface($o);
	    run_program::rooted($::prefix, "/etc/rc.d/init.d/syslog", "stop");
	    eval { modules::unload(qw(ppp_deflate bsd_comp ppp serial)) };
	    return 1;
	}
    }
    $::testing;
}

#------------------------------------------------------------------------------
sub cleanIfFailedUpgrade($) {
    my ($o) = @_;

    #- if an upgrade has failed, there should be .mdkgisave files around.
    if ($o->{isUpgrade}) {
	foreach (@filesToSaveForUpgrade) {
	    if (-e "$::prefix/$_" && -e "$::prefix/$_.mdkgisave") {
		rename "$::prefix/$_", "$::prefix/$_.mdkginew"; #- keep new files around in case !
		rename "$::prefix/$_.mdkgisave", "$::prefix/$_";
	    }
	}
    }
}


1;
#n4749'>4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980
# SOME DESCRIPTIVE TITLE
# Copyright (C) YEAR Mageia
# This file is distributed under the same license as the Mageia Control Center Help package.
#
# Translators:
# Marja van Waes <marja@mageia.org>, 2013-2015
# Rodolfo_Jadon, 2014
# Yuri Chornoivan <yurchor@ukr.net>, 2013
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: doc-discuss@ml.mageia.org\n"
"POT-Creation-Date: 2014-09-30 20:33+0300\n"
"PO-Revision-Date: 2015-01-26 19:58+0000\n"
"Last-Translator: Marja van Waes <marja@mageia.org>\n"
"Language-Team: Dutch <i18n-nl@ml.mageia.org>\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#. type: Content of: <section><info><title>
#: en/diskdrake--dav.xml:11
msgid "Access WebDAV shared drives and directories"
msgstr "Toegang tot gedeelde stations en mappen over WebDAV"

#. type: Content of: <section><info><subtitle>
#: en/diskdrake--dav.xml:14
msgid "diskdrake --dav"
msgstr "diskdrake --dav"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/diskdrake--dav.xml:19
msgid "diskdrake--dav1.png"
msgstr "diskdrake--dav1.png"

#. type: Content of: <section><para><footnote><para>
#: en/diskdrake--dav.xml:24
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">diskdrake --dav</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">diskdrake --dav</emphasis> te typen."

#. type: Content of: <section><para>
#: en/diskdrake--dav.xml:24
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> is found in the Mageia "
"Control Center, under the Network Sharing tab, labeled <guilabel>Configure "
"WebDAV shares</guilabel>."
msgstr ""
"Deze tool<placeholder type=\"footnote\" id=\"0\"/> vindt u in het Mageia "
"Configuratiecentrum, in de \"Gedeeld netwerk\"-tab, onder het label "
"<guilabel>Gedeelde WebDAV-bronnen configureren</guilabel>."

#. type: Content of: <section><section><title>
#: en/diskdrake--dav.xml:30 en/diskdrake--nfs.xml:22 en/diskdrake--smb.xml:21
#: en/drak3d.xml:15 en/drakconnect.xml:16 en/draknetcenter.xml:29
#: en/draksambashare.xml:27 en/drakvpn.xml:16 en/drakwizard_apache2.xml:27
#: en/drakwizard_dhcp.xml:41 en/drakwizard_proftpd.xml:27
#: en/drakwizard_squid.xml:46 en/keyboarddrake.xml:17
#: en/system-config-printer.xml:21
msgid "Introduction"
msgstr "Introductie"

#. type: Content of: <section><section><para>
#: en/diskdrake--dav.xml:32
msgid ""
"<link xlink:href=\"http://en.wikipedia.org/wiki/WebDAV\">WebDAV</link> is a "
"protocol that allows to mount a web server's directory locally, so that it "
"appears as a local directory. It is necessary that the remote machine run a "
"WebDAV server. This is not the aim of this tool to configure the WebDAV "
"server."
msgstr ""
"<link xlink:href=\"http://nl.wikipedia.org/wiki/WebDAV\">WebDAV</link> is "
"een protocol dat het mogelijk maakt een map op een webserver lokaal te "
"koppelen, zodat het zich als een lokale map gedraagt. Voorwaarde is, dat de "
"externe machine een WebDAV server draait. Het configureren van een WebDAV "
"server is niet het doel van deze tool."

#. type: Content of: <section><section><title>
#: en/diskdrake--dav.xml:40
msgid "Creating a new entry"
msgstr "Een nieuwe ingang maken"

#. type: Content of: <section><section><para>
#: en/diskdrake--dav.xml:42
msgid ""
"The first screen of the tool displays the already configured entries, if "
"any, and a <guibutton>New</guibutton> button. Use it to create a new entry. "
"Insert the server URL in the field of the new screen."
msgstr ""
"Het eerste scherm van de tool laat de reeds geconfigureerde ingangen zien, "
"indien aanwezig, en een <guibutton>\"Nieuw\"</guibutton> toets. Gebruik die "
"om een nieuwe ingang te creëren. Geef de URL van de server in het nieuwe "
"scherm."

#. type: Content of: <section><section><para>
#: en/diskdrake--dav.xml:46
msgid ""
"Then you get a screen with radio buttons to select some actions.  Continue "
"with the action <guibutton>Mount point</guibutton> by clicking "
"<guibutton>OK</guibutton> after selecting the radio button, as the "
"<guibutton>Server</guibutton> is already configured. You can however correct "
"it, if needed."
msgstr ""
"Vervolgens krijgt u een scherm met keuzerondjes waar u bepaalde acties kunt "
"selecteren. Ga, door het  betreffende keuzerondje te selecteren en dan op "
"<guibutton>OK</guibutton> te klikken, verder met de actie <guibutton>"
"\"Koppelpunt\"</guibutton>. De <guibutton>Server</guibutton> is reeds "
"geconfigureerd. Indien nodig kunt u deze echter corrigeren."

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/diskdrake--dav.xml:54
msgid "diskdrake--dav3.png"
msgstr "diskdrake--dav3.png"

#. type: Content of: <section><section><para>
#: en/diskdrake--dav.xml:58
msgid ""
"The content of the remote directory will be accessible through this mount "
"point."
msgstr "De inhoud van de externe map zal via dit koppelpunt toegankelijk zijn."

#. type: Content of: <section><section><para>
#: en/diskdrake--dav.xml:61
msgid ""
"In the next step, give your user name and password. If you need some other "
"options, you can give them in the <guibutton>advanced</guibutton> screen."
msgstr ""
"Geef in de volgende stap, na het keuzerondje \"Opties\" te selecteren, uw "
"gebruikersnaam en wachtwoord. Indien u nog andere opties nodig heeft, klik "
"dan in het Koppel-opties-scherm op <guibutton>\"Geavanceerd\"</guibutton>."

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/diskdrake--dav.xml:67
msgid "diskdrake--dav4.png"
msgstr "diskdrake--dav4.png"

#. type: Content of: <section><section><para>
#: en/diskdrake--dav.xml:71
msgid ""
"The option <guibutton>Mount</guibutton> allows you to mount immediately the "
"access."
msgstr ""
"Het keuzerondje <guibutton>Koppelen</guibutton> laat u de externe map "
"onmiddellijk aankoppelen."

#. type: Content of: <section><section><para>
#: en/diskdrake--dav.xml:74
msgid ""
"After you accepted the configuration with the radio button <guibutton>Done</"
"guibutton>, the first screen is displayed again and your new mount point is "
"listed. After you choose <guibutton>Quit</guibutton>, you are asked whether "
"or not to save the modifications in <emphasis>/etc/fstab</emphasis>. Choose "
"this option if you want that the remote directory is available at each boot. "
"If your configuration is for one-time usage, do not save it."
msgstr ""
"Nadat u de configuratie geaccepteerd heeft door op het keuzerondje "
"<guibutton>\"Klaar\"</guibutton> te klikken, ziet u het beginscherm weer met "
"uw nieuwe koppelpunt erop. Als u <guibutton>\"Afsluiten\"</guibutton> kiest, "
"wordt u gevraagd of u de aanpassingen in <emphasis>/etc/fstab</emphasis> "
"wilt bewaren. Kies hiervoor als u wilt dat de externe map elke keer dat u uw "
"computer start, beschikbaar is. Kies \"Nee\" als uw configuratie slechts "
"voor éénmalig gebruik is."

#. type: Content of: <section><info><title>
#: en/diskdrake--fileshare.xml:3
msgid "Share your hard disk partitions"
msgstr "Uw schijfpartities delen"

#. type: Content of: <section><info><subtitle>
#: en/diskdrake--fileshare.xml:6
msgid "diskdrake --fileshare"
msgstr "diskdrake --fileshare"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/diskdrake--fileshare.xml:11
msgid "diskdrake--fileshare.png"
msgstr "diskdrake--fileshare.png"

#. type: Content of: <section><para><footnote><para>
#: en/diskdrake--fileshare.xml:15
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">diskdrake --fileshare</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">diskdrake --fileshare</emphasis> te typen."

#. type: Content of: <section><para>
#: en/diskdrake--fileshare.xml:15
msgid ""
"This simple tool<placeholder type=\"footnote\" id=\"0\"/> allows you, the "
"administrator, to allow users to share parts of their own /home "
"subdirectories with other users of a same local network which may have "
"computers running either Linux or Windows operating system."
msgstr ""
"Deze eenvoudige tool<placeholder type=\"footnote\" id=\"0\"/> geeft u, de "
"beheerder, de mogelijkheid gebruikers toe te staan een deel van hun /home "
"submappen te delen met gebruikers op hetzelfde lokale netwerk, die een Linux "
"of Windows besturingssysteem hebben draaien."

#. type: Content of: <section><para>
#: en/diskdrake--fileshare.xml:20
msgid ""
"It is found in the Mageia Control Center, under the Local Disk tab, labelled "
"\"Share your hard disk partitions\"."
msgstr ""
"Het is in het Mageia Configuratiecentrum te vinden, onder de tab \"Lokale "
"schijven\", en gelabeld \"Uw schijfpartities delen\"."

#. type: Content of: <section><para>
#: en/diskdrake--fileshare.xml:23
msgid ""
"First, answer the question : \"<guilabel>Would you like to allow users to "
"share some of their directories ?</guilabel>\", click on <guibutton>No "
"sharing</guibutton> if the answer is no for all users, click on "
"<guibutton>Allow all users</guibutton> for all users and click on "
"<guibutton>Custom</guibutton> if the answer is no for some users and yes for "
"the others. In this last case, the users that are authorised to share their "
"directories must belong to the fileshare group, which is automatically "
"created by the system. You will be asked about this later."
msgstr ""
"Beantwoord allereerst de vraag : \"<guilabel>Wilt U gebruikers toestaan om "
"enkele eigen mappen te delen?</guilabel>\". Zo nee, klik dan op "
"<guibutton>Niet delen</guibutton>. Klik op <guibutton>Alle gebruikers "
"toestaan</guibutton> om allen dat recht te geven en op <guibutton>Aangepast</"
"guibutton> als het antwoord \"nee\" is voor sommige gebruikers en \"ja\" "
"voor de rest. In het laatste geval moeten de gebruikers die submappen mogen "
"delen aan de groep \"fileshare\" toegevoegd worden, die automatisch door het "
"systeem gemaakt wordt. U krijgt hier nog een vraag over."

#. type: Content of: <section><para>
#: en/diskdrake--fileshare.xml:32
msgid ""
"Click on <guilabel>OK</guilabel>, a second screen appears which asks you "
"choose between <guibutton>NFS</guibutton> or <guibutton>SMB</guibutton>.  "
"Check <guibutton>NFS</guibutton> if Linux is the only operating system on "
"the network, check <guibutton>SMB</guibutton> if the network includes both "
"Linux and Windows machines and then click on <guibutton>OK</guibutton>. Any "
"required packages will be installed if necessary."
msgstr ""
"Klik op <guilabel>OK</guilabel>, een tweede scherm verschijnt waarin u "
"gevraagd wordt <guibutton>NFS</guibutton> en/of <guibutton>SMB</guibutton> "
"te kiezen. Check <guibutton>NFS</guibutton> als Linux het enige "
"besturingssysteem is op het netwerk, check <guibutton>SMB</guibutton> als "
"het netwerk ook Windows machines bevat. Klik vervolgens op <guibutton>OK</"
"guibutton>. Zo nodig zullen benodigde pakketten geïnstalleerd worden."

#. type: Content of: <section><para>
#: en/diskdrake--fileshare.xml:39
msgid ""
"The configuration is now complete unless the Custom option was chosen.  In "
"this case, an extra screen prompts you to open Userdrake. This tool allows "
"you to add users authorised to share their directories to the fileshare "
"group. In the User tab, click on the user to add to the fileshare group, "
"then on <guimenuitem>Edit</guimenuitem>, In the Groups tab. Check the "
"fileshare group and click on <guibutton>OK</guibutton>. For more information "
"about Userdrake, see <link ns2:href=\"userdrake.xml\">this page</link>"
msgstr ""
"De configuratie is nu gereed, tenzij voor een aangepaste configuratie werd "
"gekozen. In dat geval nodigt een extra scherm u uit Userdrake te op te "
"starten. Daarmee kunt u gebruikers die u toe wil staan mappen te delen, aan "
"de fileshare groep toevoegen. Klik hiertoe in de tab \"Gebruikers\" op de "
"betreffende gebruiker, dan op \"Bewerken\" en zet vervolgens in de tab "
"\"Groepen\" een vinkje voor \"fileshare\".  Klik daarna op OK. Voor meer "
"informatie over Userdrake, zie <link ns2:href=\"userdrake.xml\">deze pagina</"
"link>."

#. type: Content of: <section><note><para>
#: en/diskdrake--fileshare.xml:50
msgid ""
"When adding a new user to the fileshare group, you have to disconnect and "
"reconnect the network for the modifications to be taken into account."
msgstr ""
"Als u een nieuwe gebruiker aan de fileshare groep heeft toegevoegd, moet u "
"de netwerkverbinding verbreken en opnieuw starten om de aanpassing te "
"verwerken."

#. type: Content of: <section><para>
#: en/diskdrake--fileshare.xml:55
msgid ""
"From now on each user belonging to the fileshare group can select in his/her "
"file manager the directories to be shared, although not all file managers "
"have this facility."
msgstr ""
"Van nu af aan kan elke gebruiker die tot de fileshare-groep hoort, in de "
"belangijkste bestandsbeheerders aangeven welke mappen gedeeld moeten worden. "
"Helaas bieden niet alle bestandsbeheerders deze mogelijkheid."

#. type: Attribute 'xml:lang' of: <section>
#: en/diskdrake--nfs.xml:1 en/mcc-network.xml:1 en/MCC.xml:1
#: en/software-management.xml:2 en/transfugdrake.xml:1
msgid "en"
msgstr "nl"

#. type: Content of: <section><info><title>
#: en/diskdrake--nfs.xml:3
msgid "Access NFS shared drives and directories"
msgstr "Toegang to gedeelde NFS-stations en -mappen"

#. type: Content of: <section><info><subtitle>
#: en/diskdrake--nfs.xml:6
msgid "diskdrake --nfs"
msgstr "diskdrake --nfs"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/diskdrake--nfs.xml:11
msgid "diskdrake--nfs.png"
msgstr "diskdrake--nfs.png"

#. type: Content of: <section><para>
#: en/diskdrake--nfs.xml:17
msgid "."
msgstr "."

#. type: Content of: <section><section><para><footnote><para>
#: en/diskdrake--nfs.xml:25
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">diskdrake --nfs</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">diskdrake --nfs</emphasis> te typen."

#. type: Content of: <section><section><para>
#: en/diskdrake--nfs.xml:24
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> allows you to declare "
"some shared directories to be accessible to all users on the machine. The "
"protocol used for this is NFS which is available on most Linux or Unix "
"systems. The shared directory will be thus available directly at boot. "
"Shared directories can be also accessible directly in a single session for a "
"user with tools such as file browsers."
msgstr ""
"Deze tool<placeholder type=\"footnote\" id=\"0\"/> laat u enige gedeelde "
"mappen instellen die voor alle gebruikers van het systeem toegankelijk zijn. "
"Het gebruikte protocol is NFS, dat beschikbaar is op de meeste Linux en Unix "
"systemen. De gedeelde map is meteen na het starten van het systeem "
"beschikbaar. Gedeelde mappen kunnen ook via bestandsbrowsers toegankelijk "
"zijn."

#. type: Content of: <section><section><title>
#: en/diskdrake--nfs.xml:36 en/diskdrake--smb.xml:38
msgid "Procedure"
msgstr "Procedure"

#. type: Content of: <section><section><para>
#: en/diskdrake--nfs.xml:38
msgid ""
"Select <guibutton>search servers</guibutton> to obtain a list of servers "
"which share directories."
msgstr ""
"Selecteer <guibutton>Servers zoeken</guibutton> om een lijst te krijgen van "
"servers die mappen delen."

#. type: Content of: <section><section><para>
#: en/diskdrake--nfs.xml:41
msgid ""
"Click on the > symbol before the server name to display the list of the "
"shared directories and select the directory you want to access."
msgstr ""
"Klik op het > symbool voor de naam van de server, om een lijst te zien van "
"de gedeelde mappen en de map te selecteren die toegankelijk moet worden. "

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/diskdrake--nfs.xml:47
msgid "diskdrake--nfs2.png"
msgstr "diskdrake--nfs2.png"

#. type: Content of: <section><section><para>
#: en/diskdrake--nfs.xml:51
msgid ""
"The button <guibutton>Mount point</guibutton> will be available and you have "
"to specify where to mount the directory."
msgstr ""
"Klik op de knop <guibutton>Koppelpunt</guibutton> om te specificeren waar u "
"de map wilt aankoppelen."

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/diskdrake--nfs.xml:56
msgid "diskdrake--nfs3.png"
msgstr "diskdrake--nfs3.png"

#. type: Content of: <section><section><para>
#: en/diskdrake--nfs.xml:60
msgid ""
"After choosing the mount point, You can mount it. You can also verify and "
"change some options with the <guibutton>Options</guibutton> button. After "
"mounting the directory, you can unmount it with the same button."
msgstr ""
"Nadat u het koppelpunt heeft gekozen, kunt u de map aankoppelen. U kunt ook "
"enkele opties controleren en veranderen via de <guibutton>Opties</guibutton> "
"knop. Na het aankoppelen van de map, kunt u hem ontkoppelen met dezelfde "
"knop."

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/diskdrake--nfs.xml:67
msgid "diskdrake--nfs4.png"
msgstr "diskdrake--nfs4.png"

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/diskdrake--nfs.xml:73
msgid "diskdrake--nfs5.png"
msgstr "diskdrake--nfs5.png"

#. type: Content of: <section><section><para>
#: en/diskdrake--nfs.xml:77
msgid ""
"On accepting the configuration with the <guibutton>Done</guibutton> button, "
"a message will displayed, asking \"Do you want to save the /etc/fstab "
"modifications\". This will make the directory available at each boot, if the "
"network is accessible. The new directory is then available in your file "
"browser, for example in Dolphin."
msgstr ""
"Na het aanvaarden van de configuratie met de <guibutton>Klaar</guibutton>-"
"knop, verschijnt er een bericht met de vraag of u de /etc/fstab aanpassingen "
"wilt opslaan. Dit zal de map na elke systeemstart beschikbaar maken, als het "
"netwerk beschikbaar is. De nieuwe map is dan zichtbaar in uw "
"bestandsbrowser, bijvoorbeeld in Dolphin."

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/diskdrake--nfs.xml:85
msgid "diskdrake--nfs6.png"
msgstr "diskdrake--nfs6.png"

#. type: Content of: <section><info><title>
#: en/diskdrake--removable.xml:3
msgid "CD/DVD burner"
msgstr "CD/DVD-brander"

#. type: Content of: <section><info><subtitle>
#: en/diskdrake--removable.xml:5
msgid "diskdrake --removable"
msgstr "diskdrake --removable"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/diskdrake--removable.xml:10
msgid "diskdrake--removable.png"
msgstr "diskdrake--removable.png"

#. type: Content of: <section><para><footnote><para>
#: en/diskdrake--removable.xml:15
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">diskdrake --removable</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">diskdrake --removable</emphasis> te typen."

#. type: Content of: <section><para>
#: en/diskdrake--removable.xml:14
msgid ""
"This tool <placeholder type=\"footnote\" id=\"0\"/>is found under the tab "
"Local disks in the Mageia Control Center labelled accordingly with your "
"removable hardware (CD/DVD players and burners and floppy drives only)."
msgstr ""
"Deze tool<placeholder type=\"footnote\" id=\"0\"/> vindt u in het Mageia "
"Configuratiecentrum, in de \"Locale schijven\"-tab, onder het label dat "
"overeenkomt met uw verwijderbare CD/DVD-speler of -brander of "
"diskettestation."

#. type: Content of: <section><para>
#: en/diskdrake--removable.xml:20
msgid "Its goal is to define the way your removable disk is mounted."
msgstr ""
"Het doel is de manier te bepalen waarop uw verwijderbare schijf aangekoppeld "
"is."

#. type: Content of: <section><para>
#: en/diskdrake--removable.xml:22
msgid ""
"At the top of the window there is a short description of your hardware and "
"the chosen options to mount it. Use the menu on the bottom to change them. "
"Check the item to be changed and then on the <guibutton>OK</guibutton> "
"button."
msgstr ""
"Bovenin het venster ziet u een korte beschrijving van uw schijf en de "
"gekozen opties voor het aankoppelen. Gebruik het menu onderin om de opties "
"te wijzigen. Klik op het item dat u wilt veranderen en dan op de "
"<guibutton>OK</guibutton> knop."

#. type: Content of: <section><section><title>
#: en/diskdrake--removable.xml:28
msgid "Mount point"
msgstr "Koppelpunt"

#. type: Content of: <section><section><para>
#: en/diskdrake--removable.xml:30
msgid ""
"Check this box to change the mount point. The default one is /media/cdrom."
msgstr "Vink dit hokje aan om het koppelpunt te wijzigen."

#. type: Content of: <section><section><para><bridgehead>
#: en/diskdrake--removable.xml:37 en/harddrake2.xml:66
msgid "Options"
msgstr "Opties"

#. type: Content of: <section><section><para>
#: en/diskdrake--removable.xml:39
msgid ""
"Many mount options can be chosen here either directly in the list or via the "
"<guilabel>Advanced</guilabel> submenu. The main are:"
msgstr ""
"Vele mount opties kunnen hier gekozen worden, hetzij direct via de lijst, "
"hetzij via het <guilabel>Geavanceerd</guilabel> submenu. De belangrijkste "
"zijn:"

#. type: Content of: <section><section><section><title>
#: en/diskdrake--removable.xml:45
msgid "user/nouser"
msgstr "user"

#. type: Content of: <section><section><section><para>
#: en/diskdrake--removable.xml:47
msgid ""
"user allows an ordinary user (not root) to mount the removable disk, this "
"option involves noexec, nosuid and nodev. The user who mounted the disk is "
"the only one who can umount it."
msgstr ""
"'user' staat toe dat een gewone gebruiker (niet root) de verwijderbare "
"schijf aankoppelt. Deze optie gebruikt noexec, nosuid en nodev. De gebruiker "
"die de schijf aankoppelde, is de enige die deze kan ontkoppelen."

#. type: Content of: <section><info><title>
#: en/diskdrake--smb.xml:11
msgid "Access Windows (SMB) shared drives and directories"
msgstr "Toegang tot gedeelde Windows (SMB)-stations en -mappen."

#. type: Content of: <section><info><subtitle>
#: en/diskdrake--smb.xml:14
msgid "diskdrake --smb"
msgstr "diskdrake --smb"

#. type: Content of: <section><section><para><footnote><para>
#: en/diskdrake--smb.xml:24
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">diskdrake --smb</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">diskdrake --smb</emphasis> te typen."

#. type: Content of: <section><section><para>
#: en/diskdrake--smb.xml:23
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> allows you to declare "
"which shared directories to be accessible to all users on the machine. The "
"protocol used for this is SMB which has been popularized on Windows(R) "
"systems. The shared directory will be available directly at boot. Shared "
"directories can be also accessed directly in a single session by a user with "
"tools such as file browsers."
msgstr ""
"Deze tool<placeholder type=\"footnote\" id=\"0\"/> maakt het mogelijk aan te "
"geven welke mappen voor alle gebruikers van het systeem toegankelijk moeten "
"zijn. Het hiervoor gebruikte protocol is SMB, dat door Windows (R) populair "
"werd. De gedeelde map zal bij het starten van het systeem beschikbaar zijn. "
"Gedeelde mappen zijn ook toegankelijk via tools als bestandsbrowsers. "

#. type: Content of: <section><section><para>
#: en/diskdrake--smb.xml:33
msgid ""
"Before starting the tool, it is a good idea to declare the names of "
"available servers, for example with <xref linkend=\"drakhosts\"/>"
msgstr ""
"Alvorens deze tool te starten, is het een goed idee de namen van de "
"beschikbare servers vast te leggen, bijvoorbeeld met <xref linkend="
"\"drakhosts\"/>"

#. type: Content of: <section><section><para>
#: en/diskdrake--smb.xml:40
msgid ""
"Select <guibutton>search servers</guibutton> to obtain a list of servers who "
"share directories."
msgstr ""
"Klik op <guibutton>Servers zoeken</guibutton> om een lijst te krijgen van "
"servers die mappen delen."

#. type: Content of: <section><section><para>
#: en/diskdrake--smb.xml:43
msgid ""
"Click on the server name and on &gt; before the server name to display the "
"list of the shared directories and select the directory you want to access."
msgstr ""
"Klik op de naam van de server en op &gt; voor de servernaam, om de lijst van "
"gedeelde mappen te zien en de map die u wilt openen te selecteren."

#. type: Content of: <section><section><para>
#: en/diskdrake--smb.xml:47
msgid ""
"The <guibutton>Mount point</guibutton> button will become available, you "
"have to specify where to mount the directory."
msgstr ""
"De <guibutton>Koppelpunt</guibutton>-knop is nu beschikbaar, het is nodig "
"dat u aangeeft waar u de map wilt aankoppelen."

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/diskdrake--smb.xml:52
msgid "diskdrake--smb2.png"
msgstr "diskdrake--smb2.png"

#. type: Content of: <section><section><para>
#: en/diskdrake--smb.xml:56
msgid ""
"After choosing the mount point, it can be mounted with the <guimenu>Mount "
"button</guimenu>. You can also verify and change some options with the "
"<guibutton>Options</guibutton> button."
msgstr ""
"Na het kiezen van het koppelpunt, kunt u de map aankoppelen met de "
"<guibutton>Koppelen</guibutton>-knop. U kunt ook enkele opties checken en "
"veranderen via de <guibutton>Opties</guibutton>-knop."

#. type: Content of: <section><section><para>
#: en/diskdrake--smb.xml:60
msgid ""
"In options, you can specify the user name and the password of those able to "
"connect to the SMB server. After mounting the directory, you can unmount it "
"with the same button."
msgstr ""
"Via <guibutton>Opties</guibutton> kunt u de gebruikersnaam en het wachtwoord "
"invoeren voor de SMB-server. Nadat de map aangekoppeld is, kunt u hem weer "
"loskoppelen met dezelfde knop als waarmee u hem aankoppelde."

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/diskdrake--smb.xml:66
msgid "diskdrake--smb3.png"
msgstr "diskdrake--smb3.png"

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/diskdrake--smb.xml:72
msgid "diskdrake--smb4.png"
msgstr "diskdrake--smb4.png"

#. type: Content of: <section><section><para>
#: en/diskdrake--smb.xml:76
msgid ""
"After accepting the configuration with the Done button, a message will ask "
"\"Do you want to save the /etc/fstab modifications\". Saving, will allow "
"directory to made available at each boot, if the network is accessible. The "
"new directory is then available in your file browser, for example in dolphin."
msgstr ""
"Na het aanvaarden van de configuratie met de <guibutton>Klaar</guibutton>-"
"knop, verschijnt er een bericht met de vraag of u de /etc/fstab aanpassingen "
"wilt opslaan. Dit zal de map na elke systeemstart beschikbaar maken, als het "
"netwerk beschikbaar is. De nieuwe map is dan zichtbaar in uw "
"bestandsbrowser, bijvoorbeeld in Dolphin."

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/diskdrake--smb.xml:84
msgid "diskdrake--smb5.png"
msgstr "diskdrake--smb5.png"

#. type: Content of: <section><info><title>
#: en/drak3d.xml:3
msgid "3D Desktop Effects"
msgstr "3D-bureaubladeffecten"

#. type: Content of: <section><info><subtitle>
#: en/drak3d.xml:5
msgid "drak3d"
msgstr "drak3d"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drak3d.xml:10
msgid "drak3d.png"
msgstr "drak3d.png"

#. type: Content of: <section><section><para><footnote><para>
#: en/drak3d.xml:18
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drak3d</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drak3d</emphasis> te typen."

#. type: Content of: <section><section><para>
#: en/drak3d.xml:17
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> lets you manage the 3D "
"desktop effects on your operating system. 3D effects are turned off by "
"default."
msgstr ""
"Deze tool<placeholder type=\"footnote\" id=\"0\"/> laat u de 3D-bureaublad-"
"effecten op uw besturingssysteem beheren. Standaard staan 3D-effecten uit."

#. type: Content of: <section><section><title>
#: en/drak3d.xml:25
msgid "Getting Started"
msgstr "Aan de slag"

#. type: Content of: <section><section><para>
#: en/drak3d.xml:27
msgid ""
"To use this tool, you need to have the glxinfo package installed. If the "
"package is not installed, you will be prompted to do so before drak3d can "
"start."
msgstr ""
"Om deze tool te gebruiken, moet het glxinfo-pakket geïnstalleerd zijn.Indien "
"dat nog niet gebeurd is, wordt u uitgenodigd het te installeren als u drak3d "
"start."

#. type: Content of: <section><section><para>
#: en/drak3d.xml:31
msgid ""
"After starting drak3d, you will be presented with a menu window.  Here you "
"can choose either <guilabel>No 3D Desktop Effects</guilabel> or "
"<guilabel>Compiz Fusion</guilabel>. Compiz Fusion is part of a composite/"
"window manager, which includes hardware-accelerated special effects for your "
"desktop. Choose <guilabel>Compiz Fusion</guilabel> to turn it on."
msgstr ""
"Na het starten van drak3d, ziet u een venster waarin u kunt kiezen tussen "
"<guilabel>Geen 3D bureaublad-effecten</guilabel> of <guilabel>Compiz Fusion</"
"guilabel>. Compiz Fusion is een compositing windowmanager die dankzij "
"hardware-acceleratie voor speciale effecten voor uw bueaublad zorgt. Kies "
"<guilabel>Compiz Fusion</guilabel> om het aan te zetten."

#. type: Content of: <section><section><para>
#: en/drak3d.xml:38
msgid ""
"If this is your first time using this program after a clean installation of "
"Mageia, you will get a warning message telling you which packages need to be "
"installed in order to use Compiz Fusion. Click on the <guibutton>Ok</"
"guibutton> button to continue."
msgstr ""
"Als dit de eerste keer is dat u dit programma gebruikt na een schone "
"installatie van Mageia, krijgt u een bericht te zien over de pakketten die "
"geïnstalleerd moeten worden om Compiz Fusion te gebruiken. Klik op "
"<guibutton>Ok</guibutton> om verder te gaan."

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/drak3d.xml:45
msgid "drak3d_installing_CompizFusion.png"
msgstr "drak3d_installing_CompizFusion.png"

#. type: Content of: <section><section><para>
#: en/drak3d.xml:49
msgid ""
"Once the appropriate packages are installed, you will notice that Compiz "
"Fusion is selected in the drak3d menu, but you must log out and log back in "
"for the changes to take effect."
msgstr ""
"Zodra de benodigde pakketten zijn geïnstalleerd, zult u zien dat Compiz "
"Fusion is geselecteerd in het drak3d-menu, maar u moet eerst uit- en in-"
"loggen om de wijziging te activeren."

#. type: Content of: <section><section><para>
#: en/drak3d.xml:53
msgid ""
"After logging back in, Compiz Fusion will be activated. To configure Compiz "
"Fusion, see the page for the ccsm (CompizConfig Settings Manager)  tool."
msgstr ""
"Nadat u opnieuw inlogt, is Compiz Fusion geactiveerd. Raadpleeg de pagina "
"voor de ccsm(CompizFusionSettingsManager)-tool om Compiz Fusion te "
"configureren."

#. type: Content of: <section><section><title>
#: en/drak3d.xml:59
msgid "Troubleshooting"
msgstr "Probleemoplossing"

#. type: Content of: <section><section><section><title>
#: en/drak3d.xml:62
msgid "Can't See Desktop after Logging in"
msgstr "Er is geen bureaublad na het inloggen"

#. type: Content of: <section><section><section><para>
#: en/drak3d.xml:64
msgid ""
"If after turning on Compiz Fusion you attempt to log back into your desktop "
"but can't see anything, restart your computer to get back to the log in "
"screen. Once there, click on the Desktop icon and select drak3d."
msgstr ""
"Indien u, na het activeren van Compiz Fusion, probeert in te loggen op uw "
"bureaublad maar niets ziet, herstart uw computer dan om weer bij het "
"inlogscherm te komen. Klik, daar aangeland, op het bureaubladicoon en kies "
"drak3d."

#. type: Attribute 'fileref' of: <section><section><section><mediaobject><imageobject><imagedata>
#: en/drak3d.xml:71
msgid "drak3d_troubleshooting_login_option.png"
msgstr "drak3d_troubleshooting_login_option.png"

#. type: Content of: <section><section><section><para>
#: en/drak3d.xml:75
msgid ""
"When you log in, if your account is listed as an administrator, you will be "
"prompted for your password again. Otherwise, use the administrator login "
"with his/her account. Then you can undo any changes that may have caused the "
"log in problem."
msgstr ""
"Als u inlogt en uw account als beheerder te boek staat, wordt u nogmaals om "
"uw wachtwoord gevraagd. Log anders in als beheerder. Vervolgens kunt u alle "
"veranderingen ongedaan maken die het loginprobleem veroorzaakt kunnen hebben."

#. type: Content of: <section><info><title>
#: en/drakauth.xml:9
msgid "Authentication"
msgstr "Authenticatie"

#. type: Content of: <section><info><subtitle>
#: en/drakauth.xml:11
msgid "drakauth"
msgstr "drakauth"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakauth.xml:16
msgid "drakauth.png"
msgstr "drakauth.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakauth.xml:21
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakauth</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakauth</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakauth.xml:21
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> enables you to modify the "
"manner in which you can be recognized as user of the machine or on the net."
msgstr ""
"Deze tool<placeholder type=\"footnote\" id=\"0\"/> stelt u in staat de wijze "
"waarop u als gebruiker van de machine of het netwerk herkend wordt, aan te "
"passen."

#. type: Content of: <section><para>
#: en/drakauth.xml:25
msgid ""
"By default, information for your authentication is stored in a file on your "
"computer. Modify it only if your network administrator invites you to do so "
"and give information about that."
msgstr ""
"Standaard is de informatie over uw authenticatie opgeslagen in een bestand "
"op uw computer. Pas het alleen aan als uw netwerkbeheerder u daar om vraagt "
"en er informatie over geeft."

#. type: Content of: <section><info><title>
#: en/drakboot--boot.xml:3
msgid "Set up boot system"
msgstr "Stel het opstartsysteem in"

#. type: Content of: <section><info><subtitle>
#: en/drakboot--boot.xml:5
msgid "drakboot --boot"
msgstr "drakboot --boot"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakboot--boot.xml:10
msgid "drakboot--boot.png"
msgstr "drakboot--boot.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakboot--boot.xml:15
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakboot --boot</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakboot --boot</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:14
msgid ""
"this tool<placeholder type=\"footnote\" id=\"0\"/> allows you to configure "
"the boot options (choice of the bootloader, set a password, the default "
"boot, etc.)"
msgstr ""
"deze tool<placeholder type=\"footnote\" id=\"0\"/> stelt u in staat de "
"opstartopties (keuze van de opstartlader, een wachtwoord instellen of de "
"opstartstandaard enz.) te configuren."

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:19
msgid ""
"It is found under the Boot tab in the Mageia Control Center labelled \"Set "
"up boot system\"."
msgstr ""
"Het bevindt zich in het Opstartentabblad in het Mageia Configuratiecentrum "
"en heet \"Opstartsysteem instellen\"."

#. type: Content of: <section><warning><para>
#: en/drakboot--boot.xml:23
msgid ""
"Don't use this tool if you don't know exactly what you are doing.  Changing "
"some settings may prevent your machine from booting again !"
msgstr ""
"Gebruik deze tool niet als u niet precies weet wat u doet. Het veranderen "
"van sommige instellingen kan verhinderen dat uw machine weer opstart!"

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:28
msgid ""
"In the first part, called <guilabel>Bootloader</guilabel>, it is possible to "
"choose which <guibutton>Bootloader to use</guibutton>, Grub or Lilo, and "
"with a graphical or a text menu. It is just a question of taste, there are "
"no other consequences. You can also set the <guibutton>Boot device</"
"guibutton>, don't change anything here unless you are an expert. The boot "
"device is where the bootloader is installed and any modification can prevent "
"you machine from booting."
msgstr ""
"In het eerste deel, <guilabel>Opstartlader</guilabel>, kunt u kiezen welke "
"<guibutton>opstartlader te gebruiken</guibutton>, GRUB, GRUB2, of LILO, en "
"met een grafisch of een tekstmenu. Het is een kwestie van smaak, er zijn "
"geen verdere consequenties. U kunt ook het <guibutton>Opstartapparaat</"
"guibutton> kiezen, verander dit niet als u geen expert bent. Het "
"opstartapparaat is waar de opstarlader is geïnstalleerd, het wijzigen kan "
"het opstarten van uw machine onmogelijk maken."

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:36
msgid ""
"In the second part, called <guilabel>Main options</guilabel>, you can set "
"the <guibutton>Delay before booting default image</guibutton>, in seconds. "
"During this delay, grub or Lilo will display the list of available operating "
"systems, prompting you to make your choice, if no selection is made, the "
"bootloader will boot the default one once the delay elapses."
msgstr ""
"In het tweede deel, <guilabel>Hoofdopties</guilabel>, kunt u de "
"<guibutton>Wachttijd voor het opstarten van standaard image</guibutton> "
"instellen in seconden. Gedurende deze wachttijd, zal GRUB(2) of LILO de "
"lijst met beschikbare besturingssystemen laten zien, waaruit u kunt kiezen. "
"Als geen keuze gemaakt wordt, zal de opstartlader de standaard keuze starten "
"zodra de wachttijd verstreken is."

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:43
msgid ""
"In the third and last part, called <guibutton>Security</guibutton>, it is "
"possible to set a password."
msgstr ""
"In het derde en laatste deel, <guibutton>Beveiliging</guibutton>, kunt u een "
"wachwoord instellen."

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:46
msgid "The <guibutton>Advanced</guibutton> button gives some extra options."
msgstr "De <guibutton>Geavanceerd</guibutton>knop geeft wat extra opties."

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:49
msgid "<guibutton>Enable ACPI:</guibutton>"
msgstr "<guibutton>ACPI inschakelen</guibutton>"

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:51
msgid ""
"ACPI (Advanced Configuration and Power Interface) is a standard for the "
"power management. It can save energy by stopping unused devices, this was "
"the method used before APM. Check this box if your hardware is ACPI "
"compatible."
msgstr ""
"ACPI (Advanced Configuration and Power Interface) is een standaard voor "
"energiebeheer. Het kan energie besparen door ongebruikte apparaten uit te "
"schakelen. Dit was de methode die gebruikt werd voor APM. Vink dit hokje aan "
"als u ACPI-compatibele apparaten heeft. "

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:56
msgid "<guibutton>Enable SMP:</guibutton>"
msgstr "<guibutton>SMP inschakelen</guibutton>:"

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:58
msgid ""
"SMP stands for Symmetric Multi Processors, it's an architecture for "
"multicore processors."
msgstr ""
"SMP betekent Symmetrische MultiProcessors, het is een architectuur voor "
"multicore processors."

#. type: Content of: <section><note><para>
#: en/drakboot--boot.xml:62
msgid ""
"If you have a processor with HyperThreading, Mageia will see it as a dual "
"processor and enable SMP."
msgstr ""
"Als u een processor met HyperThreading heeft, zal Mageia deze zien als een "
"dual processor en SMP inschakelen."

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:66
msgid ""
"<guibutton>Enable APIC</guibutton> and <guibutton>Enable Local APIC:</"
"guibutton>"
msgstr ""
"<guibutton>APIC inschakelen</guibutton> en <guibutton>Lokale APIC "
"inschakelen</guibutton>."

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:69
msgid ""
"APIC stands for Advanced Programmable Interrupt Controller. There are two "
"components in the Intel APIC system, the local APIC (LAPIC) and the I/O "
"APIC. This one routes the interrupts it receives them from peripheral buses "
"to one or more local APICs that are in the processor. It is really useful "
"for multi-processor systems. Some computers have problems with the APIC "
"system which can cause freezes or incorrect device detection (error message "
"\"spurious 8259A interrupt: IRQ7\"). In this case, disable APIC and/or Local "
"APIC."
msgstr ""
"APIC staat voor Advanced Programmable Interrupt Controller. Er zijn twee "
"componenten in het Intel-APIC-systeem, de lokale APIC (LAPIC) en de I/O "
"APIC. Deze leidt de interrupts van perifere bussen naar één of meer lokale "
"APIC's in the processor. Dit is erg handig voor multi-processorsystemen. "
"Sommige computers hebben problemen met het APIC systeem, wat tot crashes kan "
"leiden of tot incorrecte apparaatdetectie (foutmelding \"spurious 8259A "
"interrupt: IRQ7\"). Schakel in dit geval APIC en/of lokale APIC uit."

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakboot--boot.xml:80
msgid "drakboot1.png"
msgstr "drakboot1.png"

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:84
msgid ""
"In the <guibutton>Next</guibutton> screen, you can see the list of all the "
"available entries at boot time. The default one is asterisked. To change the "
"order of the menu entries, click on the up or down arrows to move the "
"selected item. If you click on the <guibutton>Add</guibutton> or "
"<guibutton>Modify </guibutton>buttons, a new window appears to add a new "
"entry in the Grub menu or to modify an existing one. You need to be familiar "
"with Lilo or Grub to be able to use these tools."
msgstr ""
"In het <guibutton>Volgende</guibutton> scherm ziet u een lijst met alle "
"beschikbare opties voor tijdens het opstarten. De standaard optie heeft een "
"sterretje. Klik op de pijl omhoog of omlaag om de volgorde van de menu-"
"ingangen te wijzigen door het geselecteerde item te verplaatsen. Als u op de "
"<guibutton>Toevoegen</guibutton>- of <guibutton>Aanpassen</guibutton>-knop "
"klikt, verschijnt een nieuw venster om een nieuwe ingang aan het Grubmenu "
"toe te voegen of om een bestaande aan te passen. U dient bekend te zijn met "
"Lilo of Grub om deze tools te kunnen gebruiken."

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakboot--boot.xml:94
msgid "drakboot2.png"
msgstr "drakboot2.png"

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:98
msgid ""
"The <guilabel>Label</guilabel> field is freeform, write here what you want "
"to be displayed in the menu. It matches the Grub command \"title\". For "
"example: Mageia3."
msgstr ""
"Het <guilabel>Naam</guilabel>veld kan naar wens ingevuld worden, typ hier "
"wat u in het menu wil zien. Het komt overeen met het Grubcommando \"title\". "
"Bijv.: Mageia3."

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:102
msgid ""
"The <guilabel>Image</guilabel> field contains the kernel name. It matches "
"the Grub command \"kernel\". For example /boot/vmlinuz."
msgstr ""
"Het <guilabel>Beeldbestand</guilabel>veld bevat de kernelnaam. Het komt "
"overeen met het Grubcommando \"kernel\". Bijv. /boot/vmlinuz."

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:105
msgid ""
"The <guilabel>Root</guilabel> field contains the device name where the "
"kernel is stored. It matches the Grub command \"root\". For example (hd0,1)."
msgstr ""
"Het <guilabel>Root</guilabel>veld bevat de apparaatnaam waar de kernel is "
"opgeslagen. Het komt overeen met het Grubcommando \"root\". Bijv. (hd0,1)."

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:109
msgid ""
"The <guilabel>Append</guilabel> field contains the options to be given to "
"the kernel at boot time."
msgstr ""
"Het <guilabel>Toevoegen</guilabel>veld bevat de opties die bij het opstarten "
"aan de kernel gegeven worden."

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:112
msgid ""
"If the box <guilabel>Default</guilabel> is checked, Grub will boot this "
"entry by default."
msgstr ""
"Als het <guilabel>Standaard</guilabel>hokje is aangevinkt, zal Grub "
"standaard deze ingang opstarten."

#. type: Content of: <section><para>
#: en/drakboot--boot.xml:115
msgid ""
"In the extra screen called <guilabel>Advanced</guilabel>, it is possible to "
"choose the <guilabel>Video mode</guilabel>, an <guilabel>initrd</guilabel> "
"file and a <xref linkend=\"draknetprofile\"></xref> in the drop-down lists."
msgstr ""
"In het extra <guilabel>Geavanceerd</guilabel>scherm kunt u de <guilabel>"
"Videomodus</guilabel>, een <guilabel>initrd</guilabel>bestand en een "
"<xref linkend=\"draknetprofile\"></xref> kiezen in de uitvouwlijsten."

#. type: Content of: <section><info><title>
#: en/drakboot.xml:3
msgid "Set up autologin to automatically log in"
msgstr "Automatische aanmelding instellen"

#. type: Content of: <section><info><subtitle>
#: en/drakboot.xml:6
msgid "drakboot"
msgstr "drakboot"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakboot.xml:11
msgid "drakboot.png"
msgstr "drakboot.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakboot.xml:16
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakboot</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakboot</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakboot.xml:15
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> allows you to "
"automatically login the same user, in her/his desktop environment, without "
"asking for any password. It's called autologin.  This is generally a good "
"idea when there is only one user like to be using the machine."
msgstr ""
"Deze tool<placeholder type=\"footnote\" id=\"0\"/> laat één gebruiker "
"automatisch inloggen op zijn/haar werkomgeving, zonder een wachtwoord te "
"hoeven geven. Dat heet autologin.  Dit kan een goed idee zijn als het "
"systeem slechts door één persoon gebruikt wordt."

#. type: Content of: <section><para>
#: en/drakboot.xml:22
msgid ""
"It is found under the <emphasis role=\"bold\">Boot</emphasis> tab in the "
"Mageia Control Center labelled \"Set up autologin to automatically log in\"."
msgstr ""
"U vindt hem in de <emphasis role=\"bold\">Opstarten</emphasis>tab van het "
"Mageia Configuratiecentrum, het heet \"Automatische aanmelding instellen\"."

#. type: Content of: <section><para>
#: en/drakboot.xml:26
msgid "The interface buttons are pretty obvious:"
msgstr "De knoppen van de interface spreken voor zich:"

#. type: Content of: <section><para>
#: en/drakboot.xml:28
msgid ""
"Check <guibutton>Launch the graphical environment when your system starts</"
"guibutton>, if you want X Window System to be executed after the boot. If "
"not, the system will start in text mode. Nevertheless, it will be possible "
"to launch the graphic interface manually. This can be done by launching the "
"command 'startx' or 'systemctl start dm'."
msgstr ""
"Vink <guibutton>Open het X-Windowsysteem bij opstarten</guibutton> aan, als "
"u wilt dat het X-Windowsysteem bij het opstarten wordt uitgevoerd. Zo niet, "
"dan start de computer in tekstmodus. Overigens kan de grafische omgeving dan "
"handmatig gestart worden, met het commando 'startx' of 'systemctl start dm'."

#. type: Content of: <section><para>
#: en/drakboot.xml:34
msgid ""
"If the first box is checked, two other options are available, check either "
"<guibutton>No, I don't want autologin</guibutton>, if you want the system to "
"continue to ask for which user to connect (and password) or check "
"<guibutton>Yes, I want autologin with this (user, desktop)</guibutton>, if "
"needed. In this case, you also need to supply the <guilabel>Default "
"username</guilabel> and the <guilabel>Default desktop</guilabel>."
msgstr ""
"Als het eerste hokje is aangevinkt, zijn er nog twee opties beschikbaar. "
"Vink <guibutton>Nee, ik wil niet automatisch aanmelden</guibutton> aan, als "
"u een inlogscherm wilt krijgen waarin om gebruiker en wachtwoord gevraagd "
"wordt. Kies anders <guibutton>Ja, ik wil automatisch aanmelden met deze "
"(gebruiker, werkomgeving)</guibutton>. In dat geval dient u ook de <guilabel>"
"Standaard gebruiker</guilabel> en <guilabel>Standaard werkomgeving</"
"guilabel> te kiezen."

#. type: Content of: <section><info><title>
#: en/drakbug_report.xml:11
msgid "Collect Logs and System Information for Bug Reports"
msgstr "Verzamel logs en systeeminformatie voor foutrapporten"

#. type: Content of: <section><info><subtitle>
#: en/drakbug_report.xml:12
msgid "drakbug_report"
msgstr "drakbug_report"

#. type: Content of: <section><para><footnote><para>
#: en/drakbug_report.xml:15
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakbug_report</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakbug_report</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakbug_report.xml:15
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> can only be started and "
"used on the command line."
msgstr ""
"Deze tool<placeholder type=\"footnote\" id=\"0\"/> kan enkel op de "
"commandoregel gestart en gebruikt worden."

#. type: Content of: <section><para>
#: en/drakbug_report.xml:20
msgid ""
"It is advised to write the output of this command to a file, for instance by "
"doing <emphasis role=\"bold\">drakbug_report > drakbugreport.txt</emphasis>, "
"but make sure you have enough disk space first: the file can easily be "
"several GBs large."
msgstr ""
"Het wordt aanbevolen de output van dit commando naar een bestand te "
"schrijven, bijv. door <emphasis role=\"bold\">drakbug_report > "
"drakbugreport.txt</emphasis> in te voeren, maar verzeker u er eerst van dat "
"u voldoende schijfruimte heeft: het bestand kan gemakkelijk een paar GB's "
"groot worden."

#. type: Content of: <section><note><para>
#: en/drakbug_report.xml:24
msgid ""
"The output is far too large to attach to a bug report without first removing "
"the unneeded parts."
msgstr ""
"De uitvoer is veel te groot om aan een bugrapport te hangen zonder vooraf de "
"overbodige stukken te verwijderen."

#. type: Content of: <section><para>
#: en/drakbug_report.xml:26
msgid "This command collects the following information on your system:"
msgstr "Dit commando verzamelt de volgende gegevens op uw systeem:"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:29
msgid "lspci"
msgstr "lspci"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:30
msgid "pci_devices"
msgstr "pci_devices"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:31
msgid "dmidecode"
msgstr "dmidecode"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:32
msgid "fdisk"
msgstr "fdisk"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:33
msgid "scsi"
msgstr "scsi"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:34
msgid "/sys/bus/scsi/devices"
msgstr "/sys/bus/scsi/devices"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:35
msgid "lsmod"
msgstr "lsmod"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:36
msgid "cmdline"
msgstr "cmdline"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:37
msgid "pcmcia: stab"
msgstr "pcmcia: stab"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:38
msgid "usb"
msgstr "usb"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:39
msgid "partitions"
msgstr "partities"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:40
msgid "cpuinfo"
msgstr "cpuinfo"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:41
msgid "syslog"
msgstr "syslog"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:42
msgid "Xorg.log"
msgstr "Xorg.log"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:43
msgid "monitor_full_edid"
msgstr "monitor_full_edid"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:44
msgid "stage1.log"
msgstr "stage1.log"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:45
msgid "ddebug.log"
msgstr "ddebug.log"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:46
msgid "install.log"
msgstr "install.log"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:47
msgid "fstab"
msgstr "fstab"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:48
msgid "modprobe.conf"
msgstr "modprobe.conf"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:49
msgid "lilo.conf"
msgstr "lilo.conf"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:50
msgid "grub: menu.lst"
msgstr "grub: menu.lst"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:51
msgid "grub: install.sh"
msgstr "grub: install.sh"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:52
msgid "grub: device.map"
msgstr "grub: device.map"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:53
msgid "xorg.conf"
msgstr "xorg.conf"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:54
msgid "urpmi.cfg"
msgstr "urpmi.cfg"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:55
msgid "modprobe.preload"
msgstr "modprobe.preload"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:56
msgid "sysconfig/i18n"
msgstr "sysconfig/i18n"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:57
msgid "/proc/iomem"
msgstr "/proc/iomem"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:58
msgid "/proc/ioport"
msgstr "/proc/ioport"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:59
msgid "mageia version"
msgstr "Mageia versie"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:60
msgid "rpm -qa"
msgstr "rpm -qa"

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakbug_report.xml:61
msgid "df"
msgstr "df"

#. type: Content of: <section><note><para>
#: en/drakbug_report.xml:65
msgid ""
"At the time this help page was written, the \"syslog\" part of this "
"command's output was empty, because this tool had not yet been adjusted to "
"our switch to systemd. If it is still empty, you can retrieve the \"syslog\" "
"by doing (as root) <emphasis role=\"bold\"> journalctl -a > journalctl.txt</"
"emphasis>. If you don't have a lot of diskspace, you can, for instance, take "
"the last 5000 lines of the log instead with: <emphasis role=\"bold"
"\">journalctl -a | tail -n5000 > journalctl5000.txt</emphasis>."
msgstr ""
"Toen deze hulppagina werd geschreven, was het \"syslog\"deel van de output "
"van dit commando leeg, omdat deze tool nog niet aangepast was aan onze "
"overstap naar systemd. Als het nog steeds leeg is, kunt u de \"syslog\" "
"krijgen door (als root) <emphasis role=\"bold\"> journalctl -a > journalctl."
"txt</emphasis> te typen. Als u weinig schijfruimte heeft, neem dan bijv. de "
"laatste 5000 regels van de log met: <emphasis role=\"bold\">journalctl -a | "
"tail -n5000 > journalctl5000.txt</emphasis>."

#. type: Content of: <section><info><title>
#: en/drakbug.xml:9
msgid "Mageia Bug Report Tool"
msgstr "Mageia foutrapportage-tool"

#. type: Content of: <section><info><subtitle>
#: en/drakbug.xml:9
msgid "drakbug"
msgstr "drakbug"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakbug.xml:15
msgid "drakbug.png"
msgstr "drakbug.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakbug.xml:19
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakbug</emphasis>."
msgstr ""
"U kunt deze tool op de commandoregel starten, door <emphasis role=\"bold"
"\">drakbug</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakbug.xml:19
msgid ""
"Usually, this tool<placeholder type=\"footnote\" id=\"0\"/> starts "
"automatically when a Mageia tool crashes. However, it is also possible that, "
"after filing a bug report, you are asked to start this tool to check some of "
"the information it gives, and then provide that in that existing bug report."
msgstr ""
"Gewoonlijk start deze tool<placeholder type=\"footnote\" id=\"0\"/> vanzelf "
"als een Mageia tool crasht. Het is echter ook mogelijk dat u, na het "
"indienen van een foutrapport, gevraagd wordt deze tool te starten om "
"informatie die deze geeft in dat bestaande foutrapport te verstrekken."

#. type: Content of: <section><para>
#: en/drakbug.xml:21
msgid ""
"If a new bug report needs to be filed and you are not used to doing that, "
"then please read <link xlink:href=\"https://wiki.mageia.org/en/"
"How_to_report_a_bug_properly\">How to report a bug report properly</link> "
"before clicking on the \"Report\" button."
msgstr ""
"Als een nieuw foutrapport ingediend moet worden en u dat niet gewend bent, "
"lees dan a.u.b. <link xlink:href=\"https://wiki.mageia.org/en/"
"How_to_report_a_bug_properly\">How to report a bug report properly</link> "
"alvorens op de \"Rapporteren\" knop te klikken."

#. type: Content of: <section><para>
#: en/drakbug.xml:23
msgid ""
"In case the bug has already been filed by someone else (the error message "
"that drakbug gave will be the same, then), it is useful to add a comment to "
"that existing report that you saw the bug, too."
msgstr ""
"Indien de fout al door iemand anders gerapporteerd is (het foutbericht dat "
"drakbug gaf zal dan identiek zijn), is het zinvol in dat bestaande rapport "
"vermelden dat u de bug ook zag."

#. type: Content of: <section><info><title>
#: en/drakclock.xml:3
msgid "Manage date and time"
msgstr "Datum en tijd beheren"

#. type: Content of: <section><info><subtitle>
#: en/drakclock.xml:5
msgid "drakclock"
msgstr "drakclock"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakclock.xml:10
msgid "drakclock.png"
msgstr "drakclock.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakclock.xml:15
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakclock</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakclock</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakclock.xml:14
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> is found under the tab "
"System in the Mageia Control Center labelled <guilabel>\"Manage date and time"
"\"</guilabel>. In some desktop environments it is also available by a right "
"click / Adjust date and Time ... on the clock in the system tray."
msgstr ""
"Deze tool<placeholder type=\"footnote\" id=\"0\"/> bevindt zich in de tab "
"Systeem in het Mageia Configuratiecentrum, met de naam <guilabel>\"Datum- en "
"tijdsinstellingen\"</guilabel>. In enkele werkomgevingen kan het ook gestart "
"worden na een rechtsklik op de taakbalkklok, kies 'Datum en tijd aanpassen'."

#. type: Content of: <section><para>
#: en/drakclock.xml:21
msgid "It's a very simple tool."
msgstr "Het is een zeer eenvoudige tool"

#. type: Content of: <section><para>
#: en/drakclock.xml:23
msgid ""
"On the upper left part, is the <emphasis role=\"bold\">calendar</emphasis>. "
"On the screenshot above, the date is September (on the upper left), 2012 (on "
"the upper right), the 2nd (in blue)  and it is a Sunday. Select the month "
"(or year) by clicking on the little arrows on each side of September (or "
"2012). Select the day by clicking on its number."
msgstr ""
"Links bovenaan is de <emphasis role=\"bold\">kalender</emphasis>. Hierboven "
"in de schermafbeelding is de datum 8 (in het blauw) februari (linksboven) "
"2014 (rechtsboven) en het is een zaterdag. Kies maand (of jaar) door op het "
"pijltje links of recht van februari (of 2014) te klikken. Kies de dag door "
"op zijn nummer te klikken."

#. type: Content of: <section><para>
#: en/drakclock.xml:29
msgid ""
"On the bottom left is the <emphasis role=\"bold\">Network Time Protocol</"
"emphasis> synchronising, it is possible to have a clock always on time by "
"synchronising it with a server. Check <guilabel>Enable Network Time "
"Protocol</guilabel> and choose the closest server."
msgstr ""
"Linksonder is de <emphasis role=\"bold\">Network Time Protocol</emphasis> "
"synchronisatie. De klok loopt altijd gelijk, als hij met een NTP-server "
"gesynchroniseerd wordt. Vink <guilabel>Network Time Protocol inschakelen</"
"guilabel> aan en kies de dichtstbijzijnde server."

#. type: Content of: <section><para>
#: en/drakclock.xml:34
msgid ""
"On the right part is the <emphasis role=\"bold\">clock</emphasis>. It's "
"useless to set the clock if NTP is enabled. Three boxes display hours, "
"minutes and seconds (15, 28 and 22 on the screenshot). Use the little arrows "
"to set the clock to the correct time. The format can't be changed here, see "
"your desktop environment settings for that."
msgstr ""
"Rechts ziet u de <emphasis role=\"bold\">klok</emphasis>. Het is zinloos "
"deze gelijk te zetten als NTP ingeschakeld is. De drie vakken laten uren, "
"minuten en secondes zien (22, 10 en 25 in de afbeelding). Gebruik de kleine "
"pijltjes om uw klok gelijk te zetten. De opmaak kan hier niet gewijzigd "
"worden, zie daarvoor uw werkomgevingsinstellingen."

#. type: Content of: <section><para>
#: en/drakclock.xml:40
msgid ""
"At least, on the bottom right, select your time zone by clicking on the "
"<guibutton>Change Time Zone</guibutton> button and choosing in the list the "
"nearest town."
msgstr ""
"Zorg dat uw tijdzone correct is, door zonodig op de knop <guibutton>Tijdzone "
"wijzigen</guibutton> te klikken en de dichtstbijzijnde stad in uw land en "
"zone te kiezen."

#. type: Content of: <section><note><para>
#: en/drakclock.xml:45
msgid ""
"Even if it isn't possible to choose a date or time format in this tool, they "
"will be displayed on your desktop in accordance with the localisation "
"settings."
msgstr ""
"Ook al kunt u hier geen opmaak kiezen voor datum en tijd, zoals deze in uw "
"werkomgeving getoond worden zal in overeenstemming zijn met uw "
"lokalisatie-instellingen."

#. type: Content of: <section><info><title>
#: en/drakconnect--del.xml:3
msgid "Remove a connection"
msgstr "Verbinding verwijderen"

#. type: Content of: <section><info><subtitle>
#: en/drakconnect--del.xml:3
msgid "drakconnect --del"
msgstr "drakconnect --del"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakconnect--del.xml:8
msgid "drakconnect--del.png"
msgstr "drakconnect--del.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakconnect--del.xml:12
msgid ""
"You can also start this tool from the command line, by typing <emphasis role="
"\"bold\">drakconnect --del</emphasis> as root."
msgstr ""
"U kunt deze tool ook via de commandoregel starten, door als root <emphasis "
"role=\"bold\">drakconnect --del</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakconnect--del.xml:12
msgid ""
"Here, you can delete a network interface<placeholder type=\"footnote\" id="
"\"0\"/>."
msgstr ""
"Hier kunt u een netwerkverbinding<placeholder type=\"footnote\" id=\"0\"/> "
"verwijderen."

#. type: Content of: <section><para>
#: en/drakconnect--del.xml:14
msgid ""
"Click on the drop down menu, choose the one you want to remove and then "
"click <emphasis>next</emphasis>."
msgstr ""
"Klik op de uitvouwlijst, kies welke u verwijderen wilt en klik dan op "
"<emphasis>Volgende</emphasis>."

#. type: Content of: <section><para>
#: en/drakconnect--del.xml:15
msgid ""
"You'll see a message that the network interface has been deleted "
"successfully."
msgstr ""
"U zult een bericht zien dat de netwerkverbinding met succes verwijderd is."

#. type: Content of: <section><info><title>
#: en/drakconnect.xml:3
msgid "Set up a new network interface (LAN, ISDN, ADSL, ...)"
msgstr "Nieuwe netwerkinterface instellen (LAN, ISDN, ADSL, ...)"

#. type: Content of: <section><info><subtitle>
#: en/drakconnect.xml:6
msgid "drakconnect"
msgstr "drakconnect"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakconnect.xml:11
msgid "drakconnect.png"
msgstr "drakconnect.png"

#. type: Content of: <section><section><para><footnote><para>
#: en/drakconnect.xml:19
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakconnect</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakconnect</emphasis> te typen."

#. type: Content of: <section><section><para>
#: en/drakconnect.xml:18
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> allows to configure much "
"of local network or Internet access. You have to know some information from "
"your access provider or your network administrator."
msgstr ""
"Met deze tool<placeholder type=\"footnote\" id=\"0\"/> kunt u veel instellen "
"voor uw lokale netwerk- of internettoegang. U dient sommige gegevens te "
"weten van uw internetprovider of uw netwerkbeheerder."

#. type: Content of: <section><section><para>
#: en/drakconnect.xml:25
msgid ""
"Select the type of connection you want to set, according to which hardware "
"and provider you have."
msgstr ""
"Kies het verbindingstype dat u in wilt stellen, afhankelijk van de hardware "
"en de provider die u heeft."

#. type: Content of: <section><section><title>
#: en/drakconnect.xml:30
msgid "A new Wired connection (Ethernet)"
msgstr "Een nieuwe bekabelde verbinding (Ethernet)"

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/drakconnect.xml:34 en/drakconnect.xml:162
msgid ""
"The first window lists the interfaces which are available.  Select the one "
"to configure."
msgstr ""
"Het eerste venster laat de interfaces zien die beschikbaar zijn. Kies welke "
"ingesteld moet worden."

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/drakconnect.xml:39 en/drakconnect.xml:167
msgid ""
"At this point, the choice is given between an automatic or a manual IP "
"address."
msgstr ""
"Hier wordt de keuze gegeven tussen zelf, handmatig, een IP-adres invoeren, "
"of er automatisch een toegewezen krijgen."

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/drakconnect.xml:44 en/drakconnect.xml:187 en/drakconnect.xml:557
msgid "Automatic IP"
msgstr "Automatisch IP"

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><para>
#: en/drakconnect.xml:48
msgid ""
"<emphasis>Ethernet/IP settings</emphasis>: you have to select if DNS servers "
"are declared by the DHCP server or are manually specified, as explained "
"below. In the last case, the IP address of DNS servers has to be set. The "
"HOSTNAME of the computer can be specified here. If no HOSTNAME is specified, "
"the name <literal>localhost.localdomain</literal> is attributed by default.  "
"The Hostname can also be provided by the DHCP server with the option "
"<emphasis>Assign host name from DHCP server</emphasis>. Not all DHCP servers "
"have such a function and if you're setting up your PC to get an IP address "
"from a domestic ADSL router, it is unlikely."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><orderedlist><listitem><orderedlist><listitem><mediaobject><imageobject><imagedata>
#: en/drakconnect.xml:62
msgid "drakconnect5.png"
msgstr "drakconnect5.png"

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><para>
#: en/drakconnect.xml:68 en/drakconnect.xml:205 en/drakconnect.xml:572
msgid "The advanced button give the opportunity to specify:"
msgstr "De 'Geavanceerd'-knop geeft u de mogelijkheid te specificeren:"

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:72 en/drakconnect.xml:209 en/drakconnect.xml:576
msgid "Search domain (not accessible, as provided by the DHCP server)"
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:77 en/drakconnect.xml:214 en/drakconnect.xml:581
msgid "the DHCP client"
msgstr "de DHCP-client"

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:81 en/drakconnect.xml:218 en/drakconnect.xml:585
msgid "DHCP timeout"
msgstr "DHCP-wachttijd"

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:85 en/drakconnect.xml:222
msgid "Get YP server from DHCP (checked by default): specify the NIS server"
msgstr ""
"YP-server van DHCP ophalen (standaard aangevinkt): specificeer de NIS-server"

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:90 en/drakconnect.xml:227 en/drakconnect.xml:594
msgid "Get NTPD server from DHCP (synchronisation of clocks)"
msgstr "NTPD-servers van DHCP ophalen (klokkensynchronisatie)"

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:95 en/drakconnect.xml:232 en/drakconnect.xml:599
msgid ""
"the HOSTNAME required by DHCP. Only use this option if the DHCP server "
"requires the client to specify a hostname before receiving an IP address. "
"This option is not dealt by some DHCP servers."
msgstr ""
"DHCP-hostnaam: gebruik deze optie alleen als de DHCP-server vereist dat de "
"client een hostnaam heeft alvorens een IP-adres te ontvangen. Deze optie "
"werkt niet bij sommige DHCP-servers."

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><para>
#: en/drakconnect.xml:104 en/drakconnect.xml:241
msgid ""
"After accepting, the last steps which are common to all connection "
"configurations are explained: <xref linkend=\"drakconnect-end\"/>"
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/drakconnect.xml:111 en/drakconnect.xml:248 en/drakconnect.xml:615
msgid "Manual configuration"
msgstr "Handmatige configuratie"

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><para>
#: en/drakconnect.xml:115
msgid ""
"<emphasis>Ethernet/IP settings</emphasis>: you need to declare what DNS "
"servers to use. The HOSTNAME of the computer can be specified here. If no "
"HOSTNAME is specified, the name <literal>localhost.localdomain</literal> is "
"attributed by default."
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><para>
#: en/drakconnect.xml:121 en/drakconnect.xml:258
msgid ""
"For a residential network, the IP address usually looks like "
"<emphasis>192.168.x.x</emphasis>, Netmask is <emphasis>255.255.255.0</"
"emphasis>, and the Gateway and DNS servers are available from your service "
"provider's website."
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><para>
#: en/drakconnect.xml:126
msgid ""
"In advanced settings, you can specified a <emphasis>Search domain</"
"emphasis>. It would usually be your home domain, i.e. if your computer is "
"called \"splash\", and it's full domain name is \"splash.boatanchor.net\", "
"the Search Domain would be \"boatanchor.net\". Unless you specifically need "
"it, it's ok not to define this setting. Again, domestic ADSL would not need "
"this setting."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><orderedlist><listitem><orderedlist><listitem><mediaobject><imageobject><imagedata>
#: en/drakconnect.xml:136
msgid "drakconnect30.png"
msgstr "drakconnect30.png"

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/drakconnect.xml:142 en/drakconnect.xml:279 en/drakconnect.xml:351
#: en/drakconnect.xml:458 en/drakconnect.xml:636 en/drakconnect.xml:688
#: en/drakconnect.xml:780
msgid "The next steps are exposed at <xref linkend=\"drakconnect-end\"/>"
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakconnect.xml:150
msgid "A new Satellite connection (DVB)"
msgstr "Een nieuwe Satellietverbinding (DVB)"

#. type: Content of: <section><section><para>
#: en/drakconnect.xml:152 en/drakconnect.xml:696 en/draknetcenter.xml:136
#: en/draknetcenter.xml:142 en/draknetcenter.xml:203
msgid ""
"This section hasn't been written yet for lack of resources. If you think you "
"can write this help, please contact <link ns2:href=\"https://wiki.mageia.org/"
"en/Documentation_team\"> the Doc team.</link> Thanking you in advance."
msgstr ""
"Dit deel werd nog niet geschreven door gebrek aan middelen. Als u denkt dat "
"u dit deel kan schrijven, contacteer dan a.u.b. <link ns2:href=\"https://"
"wiki.mageia.org/en/Documentation_team\"> het Documentatieteam.</link> Bij "
"voorbaat dank."

#. type: Content of: <section><section><title>
#: en/drakconnect.xml:158
msgid "A new Cable modem connection"
msgstr "Een nieuwe Kabelmodemverbinding"

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/drakconnect.xml:172
msgid "You have to specify a authentication method:"
msgstr "U dient een authenticatiemethode in te stellen:"

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:176
msgid "None"
msgstr "Geen"

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:180
msgid ""
"BPALogin (necessary for Telstra). In this case you have to provide User name "
"and password."
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><para>
#: en/drakconnect.xml:191
msgid ""
"<emphasis>Cable/IP settings</emphasis>: you have to select if DNS servers "
"are declared by the DHCP server or are manually specified, as explained "
"below. In the last case, the IP address of DNS servers has to be set. The "
"HOSTNAME of the computer can be specified here. If no HOSTNAME is specified, "
"the name <literal>localhost.localdomain</literal> is attributed by default.  "
"The Hostname can also be provided by the DHCP server with the option "
"<emphasis>Assign host name from DHCP server</emphasis>. Not all DHCP servers "
"have such a function and if you're setting up your PC to get an IP address "
"from a domestic ADSL router, it is unlikely."
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><para>
#: en/drakconnect.xml:252
msgid ""
"<emphasis>Cable/IP settings</emphasis>: you need to declare what DNS servers "
"to use. The HOSTNAME of the computer can be specified here. If no HOSTNAME "
"is specified, the name <literal>localhost.localdomain</literal> is "
"attributed by default."
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><para>
#: en/drakconnect.xml:263
msgid ""
"In advanced settings, you can specified a <emphasis>Search domain</"
"emphasis>. It would usually be your home domain, i.e. if your computer is "
"called \"splash\", and it's full domain name is \"splash.boatanchor.net\", "
"the Search Domain would be \"boatanchor.net\". Unless you specifically need "
"it, it's ok not to define this setting. Again, domestic connection would not "
"need this setting."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><orderedlist><listitem><orderedlist><listitem><mediaobject><imageobject><imagedata>
#: en/drakconnect.xml:273
msgid "drakconnect32.png"
msgstr "drakconnect32.png"

#. type: Content of: <section><section><title>
#: en/drakconnect.xml:287
msgid "A new DSL connection"
msgstr "Een nieuwe DSL-verbinding"

#. type: Content of: <section><section><para><orderedlist><listitem><para>
#: en/drakconnect.xml:291
msgid ""
"If the tool detects network interfaces, it offers to select one and to "
"configure it."
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><para>
#: en/drakconnect.xml:296 en/drakconnect.xml:663
msgid ""
"A list of providers is proposed, classified by countries.  Select your "
"provider. If it is not listed, select the option <guilabel>Unlisted</"
"guilabel> and then enter the options your provider gave."
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><para>
#: en/drakconnect.xml:303 en/drakconnect.xml:380
msgid "Select one of the protocols available:"
msgstr "Kies een van de beschikbare protocollen:"

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:307
msgid "Dynamic Host Configuration Protocol (DHCP)"
msgstr "Dynamic Host Configuration Protocol (DHCP)"

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:311
msgid "Manual TCP/IP configuration"
msgstr "Handmatige TCP/IP-configuratie"

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:315
msgid "PPP over ADSL (PPPoA)"
msgstr "PPP over ADSL (PPPoA)"

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:319
msgid "PPP over Ethernet (PPPoE)"
msgstr "PPP over Ethernet (PPPoE)"

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:323
msgid "Point to Point Tunneling Protocol (PPTP)"
msgstr "Point to Point Tunneling Protocol (PPTP)"

#. type: Content of: <section><section><para><orderedlist><listitem><para>
#: en/drakconnect.xml:329
msgid "Access settings"
msgstr "Toegangsinstellingen"

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:333 en/drakconnect.xml:678
msgid "Account Login (user name)"
msgstr "Account-aanmelding (gebruikersnaam)"

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:337 en/drakconnect.xml:414 en/drakconnect.xml:682
msgid "Account password"
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:341
msgid "(Advanced) Virtual Path ID (VPI)"
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:345
msgid "(Advanced) Virtual Circuit ID (VCI)"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakconnect.xml:289 en/drakconnect.xml:359 en/drakconnect.xml:646
msgid "<placeholder type=\"orderedlist\" id=\"0\"/>"
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakconnect.xml:357
msgid "A new ISDN connection"
msgstr "Een nieuwe ISDN-verbinding"

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/drakconnect.xml:361 en/drakconnect.xml:706
msgid "The wizard asks which device to configure:"
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:365
msgid "Manual choice (internal ISDN card)"
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:369
msgid "External ISDN modem"
msgstr "Extern ISDN modem"

#. type: Content of: <section><section><para><orderedlist><listitem><para>
#: en/drakconnect.xml:375
msgid ""
"A list of hardware is proposed, classified by category and manufacturer. "
"Select your card."
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:384
msgid "Protocol for the rest of the world, except Europe (DHCP)"
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:389
msgid "Protocol for Europe (EDSS1)"
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><para>
#: en/drakconnect.xml:395
msgid ""
"A list of providers is then offered, classified by countries.  Select your "
"provider. If it is not listed, select the option <guilabel>Unlisted</"
"guilabel> and then enter the options your provider gave you. Then it is "
"asked for parameters:"
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:402
msgid "Connection name"
msgstr "Verbindingsnaam"

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:406
msgid "Phone number"
msgstr "Telefoonnummer"

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:410
msgid "Login ID"
msgstr "Aanmeldingsnaam"

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:418
msgid "Authentication method"
msgstr "Aanmeldingscontrole-methode"

#. type: Content of: <section><section><para><orderedlist><listitem><para>
#: en/drakconnect.xml:424
msgid ""
"After that, you have to select if you get the IP address by automatic or "
"manual method. In the last case, specify IP address and Subnet mask."
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><para>
#: en/drakconnect.xml:430
msgid ""
"The next step is to choose how DNS servers address are obtained, by "
"automatic or manual method. In the case of manual configuration, you have to "
"put:"
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:436
msgid "Domain name"
msgstr "Domeinnaam"

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:440
msgid "First and second DNS Server"
msgstr "Eerste en tweede DNS-server"

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:444
msgid ""
"Select if the hostname is set from IP. This option is to select only if you "
"are sure that your provider is configured to accept it."
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><para>
#: en/drakconnect.xml:452
msgid ""
"The next step is to choose how the gateway address is obtained, by automatic "
"or manual method. In the case of manual configuration, you have to enter the "
"IP address."
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakconnect.xml:464
msgid "A new Wireless connection (WiFi)"
msgstr "Een nieuwe Draadloze verbinding (Wi-Fi)"

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/drakconnect.xml:468
msgid ""
"A first window lists the interfaces which are available and an entry for "
"Windows driver (ndiswrapper). Select the one to configure.  Use ndiswrapper "
"only if the other configuration methods did not work."
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/drakconnect.xml:475
msgid ""
"At this step, the choice is given between the different access points that "
"the card has detected."
msgstr ""
"Hier wordt de keuze gegeven tussen de verschillende toegangspunten die de "
"kaart ontdekt heeft."

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/drakconnect.xml:480
msgid "Specific parameter for the wireless card are to provide:"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><orderedlist><listitem><mediaobject><imageobject><imagedata>
#: en/drakconnect.xml:484
msgid "drakconnect31.png"
msgstr "drakconnect31.png"

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:490
msgid "Operating mode:"
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><variablelist><varlistentry><term>
#: en/drakconnect.xml:494
msgid "Managed"
msgstr "Beheerd"

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><variablelist><varlistentry><listitem><para>
#: en/drakconnect.xml:497
msgid "To access to an existing access point (the most frequent)."
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><variablelist><varlistentry><term>
#: en/drakconnect.xml:503
msgid "Ad-Hoc"
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><variablelist><varlistentry><listitem><para>
#: en/drakconnect.xml:506
msgid "To configure direct connection between computers."
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:514
msgid "Network Name (ESSID)"
msgstr "Netwerknaam (ESSID)"

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:518
msgid "Encryption mode: it depends of how the access point is configured."
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><variablelist><varlistentry><term>
#: en/drakconnect.xml:523
msgid "WPA/WPA2"
msgstr "WPA/WPA2"

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><variablelist><varlistentry><listitem><para>
#: en/drakconnect.xml:526
msgid "This encryption mode is to prefer if your hardware allows it."
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><variablelist><varlistentry><term>
#: en/drakconnect.xml:532
msgid "WEP"
msgstr "WEP"

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><variablelist><varlistentry><listitem><para>
#: en/drakconnect.xml:535
msgid "Some old hardware deals only this encryption method."
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:543
msgid "Encryption key"
msgstr "Vercijferingssleutel"

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:545
msgid "It is generally provided with the hardware which give the access point."
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/drakconnect.xml:552
msgid ""
"At this step, the choice is given between an automatic IP address or a "
"manual IP address."
msgstr ""
"Hier kunt u kiezen tussen automatisch een IP-adres krijgen, of dat handmatig "
"instellen."

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><para>
#: en/drakconnect.xml:561
msgid ""
"<emphasis>IP settings</emphasis>: you have to select if DNS servers are "
"declared by the DHCP server or are manually specified, as explained below. "
"In the last case, IP address of DNS servers has to be set. The HOSTNAME of "
"the computer can be specified here.  If no HOSTNAME is specified, the name "
"localhost.localdomain is attributed by default. The Hostname can also be "
"provided by the DHCP server with the option <emphasis>Assign host name from "
"DHCP server</emphasis>"
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:589
msgid "Get YP server from DHCP (checked by default): specify the NIS servers"
msgstr ""
"YP-server van DHCP ophalen (standaard aangevinkt): specificeer de NIS-servers"

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><para>
#: en/drakconnect.xml:608
msgid ""
"After accepting the configuration the step, which is common to all "
"connection configurations, is explained: <xref linkend=\"drakconnect-end\"/>"
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><para>
#: en/drakconnect.xml:619
msgid ""
"<emphasis>IP settings</emphasis>: you have to declare DNS servers. The "
"HOSTNAME of the computer can be specified here. If no HOSTNAME is specified, "
"the name <literal>localhost.localdomain</literal> is attributed by default."
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><para>
#: en/drakconnect.xml:625
msgid ""
"For a residential network, the IP address always looks like "
"<emphasis>192.168.x.x</emphasis>, Netmask is <emphasis>255.255.255.0</"
"emphasis>, and the Gateway and DNS servers are available from your providers "
"website."
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><orderedlist><listitem><para>
#: en/drakconnect.xml:630
msgid ""
"In advanced settings, you can specified a <emphasis>Search domain</"
"emphasis>. It must seem to your hostname without the first name, before the "
"period."
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakconnect.xml:644
msgid "A new GPRS/Edge/3G connection"
msgstr "Een nieuwe GPRS/Edge/3G-verbinding"

#. type: Content of: <section><section><para><orderedlist><listitem><para>
#: en/drakconnect.xml:648
msgid ""
"If the tool detects wireless interfaces, it offers to select one and to "
"configure it."
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><para>
#: en/drakconnect.xml:653
msgid "The PIN is asked. Leave empty if the PIN is not required."
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><para>
#: en/drakconnect.xml:658
msgid ""
"The wizard asks for network. If it is not detected, select the option "
"<guilabel>Unlisted</guilabel>."
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><para>
#: en/drakconnect.xml:670
msgid "Provide access settings"
msgstr ""

#. type: Content of: <section><section><para><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:674
msgid "Access Point Name"
msgstr "Naam toegangspunt"

#. type: Content of: <section><section><title>
#: en/drakconnect.xml:694
msgid "A new Bluetooth Dial-Up Networking connection"
msgstr "Een nieuwe Bluetooth-inbelnetwerkverbinding"

#. type: Content of: <section><section><title>
#: en/drakconnect.xml:702
msgid "A new Analog telephone modem connection (POTS)"
msgstr "Een nieuwe Analoog-telefoonmodemverbinding (POTS)"

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:710
msgid "Manual choice"
msgstr "Handmatige keuze"

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:714
msgid "Detected hardware, if any."
msgstr "Gevonden hardware, indien van toepassing."

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/drakconnect.xml:720
msgid "A list of ports is proposed. Select your port."
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/drakconnect.xml:724
msgid ""
"If not yet installed, it will be suggested that you install the package "
"<emphasis>kppp-provider</emphasis>."
msgstr ""
"Indien dat nog niet gebeurd is, zal voorgesteld worden dat u het pakket "
"<emphasis>kppp-provider</emphasis> installeert."

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/drakconnect.xml:729
msgid ""
"A list of providers is proposed, classified by countries. Select your "
"provider. If it is not listed, select the option <guilabel>Unlisted</"
"guilabel> and then enter the options your provider gave. Then it is asked "
"for Dialup options:"
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:736
msgid "<emphasis>Connection name</emphasis>"
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:740
msgid "<emphasis>Phone number</emphasis>"
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:744
msgid "<emphasis>Login ID</emphasis>"
msgstr ""

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:748
msgid "<emphasis>Password</emphasis>"
msgstr "<emphasis>Wachtwoord</emphasis>"

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:752
#, fuzzy
msgid "<emphasis>Authentication</emphasis>, choose between:"
msgstr "<emphasis>Authenticatie</emphasis>, kies tussen:"

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:756
msgid "PAP/CHAP"
msgstr "PAP/CHAP"

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:760
msgid "Script-based"
msgstr "Script-gebaseerd"

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:764
msgid "PAP"
msgstr "PAP"

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:768
msgid "Terminal-based"
msgstr "Gebaseerd op een terminal"

#. type: Content of: <section><section><orderedlist><listitem><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakconnect.xml:772
msgid "CHAP"
msgstr "CHAP"

#. type: Content of: <section><section><title>
#: en/drakconnect.xml:786
msgid "Ending the configuration"
msgstr "De configuratie beëindigen"

#. type: Content of: <section><section><para>
#: en/drakconnect.xml:788
msgid "In the next step, you can specify:"
msgstr "In de volgende stap kunt u instellen:"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakconnect.xml:792
msgid "<emphasis>Allow users to manage the connection</emphasis>"
msgstr "<emphasis>Gebruikers toestaan de verbinding te beheren</emphasis>"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakconnect.xml:796
msgid "<emphasis>Start the connection at boot</emphasis>"
msgstr "<emphasis>De verbinding bij het opstarten maken</emphasis>"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakconnect.xml:800
msgid "<emphasis>Enable traffic accounting</emphasis>"
msgstr "<emphasis>Schakel 'traffic-accounting' in</emphasis>"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakconnect.xml:804
msgid ""
"<emphasis>Allow interface to be controlled by Network Manager</emphasis>"
msgstr ""
"<emphasis>Sta toe dat deze interface door Network Manager beheerd wordt</"
"emphasis>"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakconnect.xml:809
msgid ""
"In the case of a wireless connection, a supplemental box is <emphasis>Allow "
"access point roaming</emphasis> which give the possibility to switch "
"automatically between access point according to the signal strength."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakconnect.xml:816
msgid "With the advanced button, you can specify:"
msgstr "Met de 'Geavanceerd'-knop kunt u instellen:"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakconnect.xml:820
msgid "Metric (10 by default)"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakconnect.xml:824
msgid "MTU"
msgstr "MTU"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakconnect.xml:828
msgid "Network Hotplugging"
msgstr "\"Hot\"-aansluiten van netwerk"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakconnect.xml:832
msgid "Enable IPv6 to IPv4 tunnel"
msgstr "Schakel IPv6 naar IPv4 tunnel in"

#. type: Content of: <section><section><para>
#: en/drakconnect.xml:836
msgid ""
"The last step allows you to specify if the connection is to start "
"immediately or not."
msgstr ""
"De laatste stap laat u instellen of de verbinding meteen moet starten, of "
"niet."

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/drakconnect.xml:841
msgid "drakconnect9.png"
msgstr "drakconnect9.png"

#. type: Content of: <section><info><title>
#: en/drakconsole.xml:3
msgid "Open a console as administrator"
msgstr "Terminalvenster openen als beheerder"

#. type: Content of: <section><info><subtitle>
#: en/drakconsole.xml:5
msgid "drakconsole"
msgstr "drakconsole"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakconsole.xml:10
msgid "drakconsole.png"
msgstr "drakconsole.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakconsole.xml:15
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakconsole</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakconsole</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakconsole.xml:14
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> gives you access to a "
"console which is directly opened as root. We do not think that you need more "
"information about that."
msgstr ""
"Deze tool<placeholder type=\"footnote\" id=\"0\"/> start een konsole als "
"root. We denken dat u niet meer informatie nodig heeft."

#. type: Content of: <section><info><title>
#: en/drakdisk.xml:8
msgid "Manage disk partitions"
msgstr "Schijfpartities beheren"

#. type: Content of: <section><info><subtitle>
#: en/drakdisk.xml:10
msgid "drakdisk or diskdrake"
msgstr "drakdisk of diskdrake"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakdisk.xml:15
msgid "drakdiskBackup.png"
msgstr "drakdiskBackup.png"

#. type: Content of: <section><warning><para><footnote><para>
#: en/drakdisk.xml:21
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakdisk</emphasis> or <emphasis role=\"bold\">diskdrake</emphasis> "
"as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakdisk</emphasis> or <emphasis role=\"bold\">diskdrake</emphasis> "
"te typen."

#. type: Content of: <section><warning><para>
#: en/drakdisk.xml:20
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> is very powerful, a tiny "
"error or a cat jumping on your keyboard can lead to losing all data on a "
"partition or even to erasing the entire hard disk. For that reason, you'll "
"see the screen above on top of the tool screen. Click on <emphasis>Exit</"
"emphasis> if you're not sure you want to continue."
msgstr ""

#. type: Content of: <section><para>
#: en/drakdisk.xml:30
msgid ""
"If you have more than one hard disk, you can switch to the hard disk you "
"want to work on by selecting the correct tab (sda, sdb, sdc etc)."
msgstr ""

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakdisk.xml:35
msgid "drakdisk.png"
msgstr "drakdisk.png"

#. type: Content of: <section><para>
#: en/drakdisk.xml:39
msgid ""
"You can choose from many actions to adjust your hard disk to your "
"preferences. Wiping an entire hard disk, splitting or merging partitions, "
"resizing them or changing the filesystem, formatting or viewing what is in a "
"partition: it is all possible. The <emphasis><guibutton>Clear all</"
"guibutton></emphasis> button at the bottom is to erase the complete disk, "
"the other buttons become visible on the right after you click on a partition."
msgstr ""

#. type: Content of: <section><para>
#: en/drakdisk.xml:47
msgid ""
"If the selected partition is mounted, like in the example below, you cannot "
"choose to resize, format or delete it. To be able to do that the partition "
"must be unmounted first."
msgstr ""

#. type: Content of: <section><para>
#: en/drakdisk.xml:51
msgid "It is only possible to resize a partition on its right side"
msgstr "U kunt een partitie alleen aan de rechterkant van grootte veranderen"

#. type: Content of: <section><para>
#: en/drakdisk.xml:53
msgid ""
"To change a partition type (change ext3 to ext4 for example) you have to "
"delete the partition and then re-create it with the new type. The button "
"<guibutton role=\"bold\">Create</guibutton> appears when a disk empty part "
"is selected"
msgstr ""

#. type: Content of: <section><para>
#: en/drakdisk.xml:58
msgid "You can choose a mount point that doesn't exist, it will be created."
msgstr ""

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakdisk.xml:63
msgid "drakdiskMountedPartition.png"
msgstr "drakdiskMountedPartition.png"

#. type: Content of: <section><para>
#: en/drakdisk.xml:67
msgid ""
"Selecting <emphasis><guibutton>Toggle to expert mode</guibutton></emphasis> "
"gives some extra available actions, like labelling the partition, as can be "
"seen in the screenshot below."
msgstr ""

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakdisk.xml:73
msgid "drakdiskExpertUnmounted.png"
msgstr "drakdiskExpertUnmounted.png"

#. type: Content of: <section><info><title>
#: en/drakedm.xml:5
msgid "Set up display manager"
msgstr "Displaybeheer instellen"

#. type: Content of: <section><info><subtitle>
#: en/drakedm.xml:7
msgid "drakedm"
msgstr "drakedm"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakedm.xml:12
msgid "drakedm.png"
msgstr "drakedm.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakedm.xml:17
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakedm</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakedm</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakedm.xml:16
msgid ""
"Here<placeholder type=\"footnote\" id=\"0\"/> you can choose which display "
"manager to use to log into your desktop environment. Only the ones available "
"on your system will be shown."
msgstr ""

#. type: Content of: <section><para>
#: en/drakedm.xml:24
msgid ""
"Most users will only notice that the provided login screens look different. "
"However, there are differences in supported features, too. LXDM is a "
"lightweight display manager, KDM and GDM have more extras."
msgstr ""

#. type: Content of: <section><info><title>
#: en/drakfirewall.xml:3
msgid "Set up your personal firewall"
msgstr "Uw persoonlijke firewall instellen"

#. type: Content of: <section><info><subtitle>
#: en/drakfirewall.xml:5
msgid "drakfirewall"
msgstr "drakfirewall"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakfirewall.xml:10
msgid "drakfirewall.png"
msgstr "drakfirewall.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakfirewall.xml:15
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakfirewall</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakfirewall</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakfirewall.xml:14
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> is found under the "
"Security tab in the Mageia Control Center labelled \"Set up your personal "
"firewall\". It is the same tool in the first tab of \"Configure system "
"security, permissions and audit\"."
msgstr ""
"Deze tool<placeholder type=\"footnote\" id=\"0\"/> vindt u in het Mageia "
"Configuratiecentrum, in de \"Beveiliging\"-tab, onder het label \"Uw "
"persoonlijke firewall instellen\". Het is dezelfde tool als \"Firewall\" in "
"het eerste tabblad van \"Beveiliging, rechten en audit van het systeem "
"afregelen\"."

#. type: Content of: <section><para>
#: en/drakfirewall.xml:20
msgid ""
"A basic firewall is installed by default with Mageia. All the incoming "
"connections from the outside are blocked if they aren't authorised. In the "
"first screen above, you can select the services for which outside connection "
"attempts are accepted. For your security, uncheck the first box - "
"<guilabel>Everything (no firewall)</guilabel> - unless you want to disable "
"the firewall, and only check the needed services."
msgstr ""
"Bij default wordt in Mageia een basisfirewall geïnstalleerd. Alle inkomende "
"verbindingen van buiten zijn geblokkeerd als ze niet toegestaan zijn. In het "
"eerste scherm hierboven kunt u de diensten selecteren voor welke "
"verbindingen van buiten aanvaard worden. Zorg, voor uw veiligheid, dat het "
"bovenste hokje - <guilabel>Alles (geen firewall)</guilabel> - geen vinkje "
"heeft (tenzij u de firewall wilt uitschakelen), en vink alleen de benodigde "
"diensten aan."

#. type: Content of: <section><para>
#: en/drakfirewall.xml:27
msgid ""
"It is possible to manually enter the port numbers to open. Click on "
"<guibutton>Advanced</guibutton> and a new window is opened. In the field "
"<guilabel>Other ports</guilabel>, enter the needed ports following these "
"examples :"
msgstr ""
"Het is mogelijk handmatig poorten open te zetten. Klik op <guibutton> "
"Geavanceerd</guibutton>. In het nieuwe scherm dat u ziet, kunt u de "
"benodigde poorten invoeren zoals in deze voorbeelden: "

#. type: Content of: <section><para>
#: en/drakfirewall.xml:32
msgid "80/tcp : open the port 80 tcp protocol"
msgstr "80/tcp: open poort 80 voor het tcp protocol"

#. type: Content of: <section><para>
#: en/drakfirewall.xml:34
msgid "24000:24010/udp : open all the ports from 24000 to 24010 udp protocol"
msgstr ""
"24000:24010/udp : open alle poorten van 24000 t/m 24010 voor het udp protocol"

#. type: Content of: <section><para>
#: en/drakfirewall.xml:37
msgid "The listed ports should be separated by a space."
msgstr "Tussen ingevoerde poorten moet een spatie staan."

#. type: Content of: <section><para>
#: en/drakfirewall.xml:39
msgid ""
"If the box <guilabel>Log firewall messages in system logs</guilabel> is "
"checked, the firewall messages will be saved in system logs"
msgstr ""
"Als het hokje <guilabel>Verslag van firewall meldingen vastleggen in het "
"systeemlogboek</guilabel> aangevinkt is, zullen de firewallberichten "
"opgeslagen worden in de systeemlogs."

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakfirewall.xml:44
msgid "drakfirewall2.png"
msgstr "drakfirewall2.png"

#. type: Content of: <section><note><para>
#: en/drakfirewall.xml:49
msgid ""
"If you don't host specific services (web or mail server, file sharing, ...) "
"it is completely possible to have nothing checked at all, it is even "
"recommended, it won't prevent you from connecting to the internet."
msgstr ""
"Als u geen specifieke diensten host (web- of mailserver, bestanden "
"delen, ...) is het prima om helemaal niets aangevinkt te hebben, het wordt "
"zelfs aanbevolen en zal u niet hinderen om verbinding met internet te maken. "

#. type: Content of: <section><para>
#: en/drakfirewall.xml:55
msgid ""
"The next screen deals with the Interactive Firewall options. These feature "
"allow you to be warned of connection attempts if at least the first box "
"<guilabel>Use Interactive Firewall </guilabel>is checked. Check the second "
"box to be warned if the ports are scanned (in order to find a failure "
"somewhere and enter your machine). Each box from the third one onwards "
"corresponds to a port you opened in the two first screens; in the screenshot "
"below, there are two such boxes: SSH server and 80:150/tcp. Check them to be "
"warned each time a connection is attempted on those ports."
msgstr ""
"Het volgende scherm gaat over de opties voor de interactieve firewall. Deze "
"waarschuwt u bij verbindingspogingen als tenminste het bovenste hokje "
"<guilabel>Interactieve firewall gebruiken</guilabel> aangevinkt is. Vink het "
"tweede hokje aan als u gewaarschuwt wilt worden als uw poorten gescand "
"worden. (Dat kan gedaan worden om een zwakke plek te vinden en dan in uw "
"computer binnen te dringen). Elk van de eventueel volgende hokjes is voor "
"een poort die u in de bovengenoemde schermen opende; in het screenshot "
"hieronder zijn twee dergelijke hokjes: SSH server en 80:150/tcp. Vink deze "
"aan om elke keer gewaarschuwt te worden als gepoogd wordt een verbinding te "
"maken via deze poorten."

#. type: Content of: <section><para>
#: en/drakfirewall.xml:64
msgid "These warning are given by alert popups through the network applet."
msgstr "Deze waarschuwingen worden gegeven door popups via de netwerk applet."

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakfirewall.xml:69
msgid "drakfirewall3.png"
msgstr "drakfirewall3.png"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakfirewall.xml:75
msgid "drakfirewall4.png"
msgstr "drakfirewall4.png"

#. type: Content of: <section><para>
#: en/drakfirewall.xml:79
msgid ""
"In the last screen, choose which network interfaces are connected to the "
"Internet and must be protected. Once the OK button is clicked, the necessary "
"packages are downloaded."
msgstr ""
"Kies in het laatste scherm welke netwerk adapters met internet verbonden "
"zijn en beschermd moeten worden. Zodra op de OK knop geklikt wordt worden, "
"als dat niet bij een eerder gebruik van deze tool gebeurd was, de benodigde "
"pakketten gedownload en geïnstalleerd."

#. type: Content of: <section><tip><para>
#: en/drakfirewall.xml:84
msgid ""
"If you don't know what to choose, have a look in MCC tab Network &amp; "
"Internet, icon Set up a new network interface."
msgstr ""

#. type: Content of: <section><info><title>
#: en/drakfont.xml:3
msgid "Manage, add and remove fonts. Import Windows(TM) fonts"
msgstr ""
"Lettertypen beheren, toevoegen en verwijderen. Windows®-lettertypen "
"importeren"

#. type: Content of: <section><info><subtitle>
#: en/drakfont.xml:6
msgid "drakfont"
msgstr "drakfont"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakfont.xml:11
msgid "drakfont.png"
msgstr "drakfont.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakfont.xml:16
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakfont</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakfont</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakfont.xml:15
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> is present in the Mageia "
"Control Center under the <emphasis role=\"bold\">System</emphasis> tab. It "
"allows you to manage the fonts available on the computer. The main screen "
"above shows:"
msgstr ""

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakfont.xml:22
msgid "the installed font names, styles and sizes."
msgstr ""

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakfont.xml:26
msgid "a preview of the selected font."
msgstr ""

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/drakfont.xml:30
msgid "some buttons explained here later."
msgstr ""

#. type: Content of: <section><para>
#: en/drakfont.xml:36
msgid "<emphasis role=\"bold\">Get Windows Fonts: <emphasis/></emphasis>"
msgstr ""

#. type: Content of: <section><para>
#: en/drakfont.xml:38
msgid ""
"This button automatically adds the fonts found on the Windows partition. You "
"must have Microsoft Windows installed."
msgstr ""

#. type: Content of: <section><para>
#: en/drakfont.xml:41
msgid "<emphasis role=\"bold\">Options:</emphasis>"
msgstr ""

#. type: Content of: <section><para>
#: en/drakfont.xml:43
msgid ""
"It allows you to specify the applications or devices (printers mostly)  able "
"to use the fonts."
msgstr ""

#. type: Content of: <section><para>
#: en/drakfont.xml:46
msgid "<emphasis role=\"bold\">Uninstall:</emphasis>"
msgstr ""

#. type: Content of: <section><para>
#: en/drakfont.xml:48
msgid ""
"This button is to remove installed fonts and possibly save some place.  Be "
"careful when removing fonts because it may have serious consequences on the "
"documents that use them."
msgstr ""

#. type: Content of: <section><para>
#: en/drakfont.xml:52
msgid "<emphasis role=\"bold\">Import:</emphasis>"
msgstr ""

#. type: Content of: <section><para>
#: en/drakfont.xml:54
msgid ""
"Allows you to add fonts from a third party (CD, internet, ...). The "
"supported formats are ttf, pfa, pfb, pcf, pfm and gsf. Click on the "
"<emphasis role=\"bold\">Import</emphasis> button and then on <emphasis role="
"\"bold\">Add</emphasis>, a file manager pops up where you can select the "
"fonts to install, click on <emphasis role=\"bold\">Install</emphasis> when "
"done. They are installed in the folder /usr/share/fonts."
msgstr ""

#. type: Content of: <section><para>
#: en/drakfont.xml:60
msgid ""
"If the newly installed (or removed) fonts doesn't appear in the Drakfont "
"main screen, close and re open it to see the modifications."
msgstr ""

#. type: Content of: <section><info><title>
#: en/drakguard.xml:3
msgid "Parental Controls"
msgstr "Controle voor ouders"

#. type: Content of: <section><info><subtitle>
#: en/drakguard.xml:5
msgid "drakguard"
msgstr "drakguard"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakguard.xml:10
msgid "drakguard.png"
msgstr "drakguard.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakguard.xml:15
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakguard</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakguard</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakguard.xml:14
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> is found in the Mageia "
"Control Center, under the Security tab, labelled <guilabel>Parental Control</"
"guilabel>. If you don't see this label, you have to install the drakguard "
"package (not installed by default)."
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakguard.xml:21 en/msecgui.xml:19
msgid "Presentation"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakguard.xml:23
msgid ""
"Drakguard is an easy way to set up parental controls on your computer to "
"restrict who can do what, and at which times of day. Drakguard has three "
"useful capabilities:"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakguard.xml:29
msgid ""
"It restricts web access to named users to set times of day. It does this by "
"controlling the shorewall firewall built into Mageia."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakguard.xml:35
msgid ""
"It blocks execution of particular commands by named users so these users can "
"only execute what you accept them to execute."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakguard.xml:40
msgid ""
"It restricts access to websites, both manually defined through blacklists/"
"whitelists, but also dynamically based on the content of the website. To "
"achieve this Drakguard uses the leading opensource parental control blocker "
"DansGuardian."
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakguard.xml:49
msgid "Configuring Parental controls"
msgstr ""

#. type: Content of: <section><section><para><warning><para>
#: en/drakguard.xml:52
msgid ""
"If your computer contains hard drive partitions that are formatted in Ext2, "
"Ext3, or ReiserFS format you will see a pop up offering to configure ACL on "
"your partitions. ACL stands for Access Control Lists, and is a Linux kernel "
"feature that allows access to individual files to be restricted to named "
"users. ACL is built into Ext4 and Btrfs file systems, but must be enabled by "
"an option in Ext2, Ext3, or Reiserfs partitions. If you select 'Yes' to this "
"prompt drakguard will configure all your partitions to support ACL, and will "
"then suggest you reboot."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakguard.xml:61
msgid ""
"<guibutton>Enable parental control</guibutton>: If checked, the parental "
"control is enabled and the access to <guilabel>Block programs</guilabel> tab "
"is opened."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakguard.xml:65
msgid ""
"<guibutton>Block all network traffic</guibutton>: If checked, all the "
"websites are blocked, except the ones in the whitelist tab. Otherwise, all "
"the websites are allowed, except the ones in the blacklist tab."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakguard.xml:69
msgid ""
"<guibutton>User access</guibutton>: Users on the left hand side will have "
"their access restricted according to the rules you define. Users on the "
"right hand side have unrestricted access so adult users of the computer are "
"not inconvenienced. Select a user in the left hand side and click on "
"<guibutton>Add</guibutton> to add him/her as an allowed user.  Select an "
"user in the right hand side and click on <guibutton>Remove</guibutton> to "
"remove him/her from the allowed users."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakguard.xml:77
msgid ""
"<guibutton>Time control:</guibutton> If checked, internet access is allowed "
"with restrictions between the <guilabel>Start</guilabel> time and "
"<guilabel>End</guilabel> time. It is totally blocked outside these time "
"window."
msgstr ""

#. type: Content of: <section><section><section><title>
#: en/drakguard.xml:83
msgid "Blacklist/Whitelist tab"
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/drakguard.xml:85
msgid ""
"Enter the website URL in the first field at the top and click on the "
"<guibutton>Add</guibutton> button."
msgstr ""

#. type: Content of: <section><section><section><title>
#: en/drakguard.xml:90
msgid "Block Programs Tab"
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/drakguard.xml:92
msgid ""
"<guibutton>Block Defined Applications</guibutton>: Enables the use of ACL to "
"restrict access to specific applications. Insert the path to the "
"applications you wish to block."
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/drakguard.xml:96
msgid ""
"<guibutton>Unblock Users list</guibutton>: Users listed on the right hand "
"side will not be subject to acl blocking."
msgstr ""

#. type: Content of: <section><info><title>
#: en/drakgw.xml:9
msgid "Share the Internet connection with other local machines"
msgstr "Internetverbinding delen met andere lokale computers"

#. type: Content of: <section><info><subtitle>
#: en/drakgw.xml:12
msgid "drakgw"
msgstr "drakgw"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakgw.xml:17
msgid "drakgw.png"
msgstr "drakgw.png"

#. type: Content of: <section><section><title>
#: en/drakgw.xml:25
msgid "Principles"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><para><mediaobject><imageobject><imagedata>
#: en/drakgw.xml:29
msgid "drakgw-net.png"
msgstr "drakgw-net.png"

#. type: Content of: <section><section><para>
#: en/drakgw.xml:27
msgid ""
"<placeholder type=\"mediaobject\" id=\"0\"/>This is useful when you have a "
"computer (3) which has Internet (2) access and is connected also to a local "
"network (1). You can use computer (3) as a gateway to give that access to "
"other workstations (5) and (6) in the local network (1). For this, the "
"gateway must have two interfaces; the first one such as an ethernet card "
"must be connected to the local network, and the second one (4) connected to "
"the Internet (2)."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakgw.xml:39
msgid ""
"The first step is to verify that the network and the access to Internet are "
"set up, as documented in <xref linkend=\"draknetcenter\"/>."
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakgw.xml:45
msgid "Gateway wizard"
msgstr ""

#. type: Content of: <section><section><para><footnote><para>
#: en/drakgw.xml:48
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakgw</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakgw</emphasis> te typen."

#. type: Content of: <section><section><para>
#: en/drakgw.xml:47
msgid ""
"The wizard<placeholder type=\"footnote\" id=\"0\"/> offers successive steps "
"which are shown below:"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakgw.xml:54
msgid ""
"If the wizard does not detect at least two interfaces, it warns about this "
"and asks to stop the network and configure the hardware."
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakgw.xml:60
msgid ""
"specify the interface used for the Internet connection. The wizard "
"automatically suggests one of the interfaces, but you should verify that "
"what is proposed is correct."
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakgw.xml:66
msgid ""
"specify which interface is used for the Lan access. The wizard also proposes "
"one, check that this is correct."
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakgw.xml:71
msgid ""
"The wizard proposes parameters for the Lan network, such as IP address, mask "
"and domain name. Check that these parameters are compatible with the actual "
"configuration. It is recommended that you accept these values."
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakgw.xml:78
msgid ""
"specify if the computer has to be used as a DNS server. If yes, the wizard "
"will check that <code>bind</code> is installed.  Otherwise, you have to "
"specify the address of a DNS server."
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakgw.xml:84
msgid ""
"specify if the computer is to be used as a DHCP server. If yes, the wizard "
"will check that <code>dhcp-server</code> is installed and offer to configure "
"it, with start and end addresses in the DHCP range."
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakgw.xml:91
msgid ""
"specify if the computer is to be used as a proxy server. If yes, the wizard "
"will check that <code>squid</code> is installed and offer to configure it, "
"with the address of the administrator (admin@mydomain.com), name of the "
"proxy (myfirewall@mydomaincom), the port (3128) and the cache size (100 Mb)."
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakgw.xml:99
msgid ""
"The last step allows you to check if the gateway machine is connected to "
"printers and to share them."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakgw.xml:104
msgid ""
"You will be warned about the need to check the firewall if it is active."
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakgw.xml:109
msgid "Configure the client"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakgw.xml:111
msgid ""
"If you have configured the gateway machine with DHCP, you only need to "
"specify in the network configuration tool that you get an address "
"automatically (using DHCP). The parameters will be obtained when connecting "
"to the network. This method is valid whatever operating system the client is "
"using."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakgw.xml:117
msgid ""
"If you must manually specify the network parameters, you must in particular "
"specify the gateway by entering the IP-address of the machine acting as the "
"gateway."
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakgw.xml:123
msgid "Stop connection sharing"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakgw.xml:125
msgid ""
"If you want to stop sharing the connection on the Mageia computer, launch "
"the tool. It will offer to reconfigure the connection or to stop the sharing."
msgstr ""

#. type: Content of: <section><info><title>
#: en/drakhosts.xml:3
msgid "Hosts definitions"
msgstr "Hosts-definities"

#. type: Content of: <section><info><subtitle>
#: en/drakhosts.xml:5
msgid "drakhosts"
msgstr "drakhosts"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakhosts.xml:10
msgid "drakhosts.png"
msgstr "drakhosts.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakhosts.xml:16
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakhosts</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakhosts</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakhosts.xml:14
msgid ""
"If some systems on your network grant you services, and have fixed IP-"
"addresses, this tool<placeholder type=\"footnote\" id=\"0\"/> allows to "
"specify a name to access them more easily. Then you can use that name "
"instead of the IP-address."
msgstr ""

#. type: Content of: <section><para>
#: en/drakhosts.xml:20
msgid "<guibutton>Add</guibutton>"
msgstr ""

#. type: Content of: <section><para>
#: en/drakhosts.xml:22
msgid ""
"With this button, you add the name for a new system. You will get a window "
"to specify the IP-address, the host name for the system, and optionally an "
"alias which can be used in the same way that the name is."
msgstr ""

#. type: Content of: <section><para>
#: en/drakhosts.xml:27
msgid "<guibutton>Modify</guibutton>"
msgstr ""

#. type: Content of: <section><para>
#: en/drakhosts.xml:29
msgid ""
"You can access the parameters of an entry previously defined. You get the "
"same window."
msgstr ""

#. type: Content of: <section><info><title>
#: en/drakinvictus.xml:3
msgid "Advanced setup for network interfaces and firewall"
msgstr "Geavanceerde instellingen voor netwerkinterfaces en firewall"

#. type: Content of: <section><info><subtitle>
#: en/drakinvictus.xml:3
msgid "drakinvictus"
msgstr "drakinvuctus"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakinvictus.xml:8
msgid "drakinvictus.png"
msgstr "drakinvictus.png"

#. type: Content of: <section><para>
#: en/drakinvictus.xml:12 en/draknetcenter.xml:187 en/draknetprofile.xml:12
#: en/drakups.xml:12 en/drakwizard_bind.xml:12 en/drakxservices.xml:12
msgid ""
"This page hasn't been written yet for lack of resources. If you think you "
"can write this help, please contact <link ns2:href=\"https://wiki.mageia.org/"
"en/Documentation_team\"> the Doc team.</link> Thanking you in advance."
msgstr ""
"Deze pagina is nog ongeschreven door gebrek aan middelen. Als u denkt dat "
"u de pagina kunt schrijven, contacteer dan a.u.b. <link ns2:href=\"https://"
"wiki.mageia.org/en/Documentation_team\"> het Documentatieteam.</link> Bij "
"voorbaat dank."

#. type: Content of: <section><para>
#: en/drakinvictus.xml:15
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakinvictus</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakinvictus</emphasis> te typen."

#. type: Content of: <section><info><title>
#: en/draknetcenter.xml:10
msgid "Network Center"
msgstr "Netwerkcentrum"

#. type: Content of: <section><info><subtitle>
#: en/draknetcenter.xml:12
msgid "draknetcenter"
msgstr "draknetcenter"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/draknetcenter.xml:17
msgid "draknetcenter.png"
msgstr "draknetcenter.png"

#. type: Content of: <section><para><footnote><para>
#: en/draknetcenter.xml:22
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">draknetcenter</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakconsole</emphasis> te typen."

#. type: Content of: <section><para>
#: en/draknetcenter.xml:21
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> is found under the "
"Network &amp; Internet tab in the Mageia Control Center labelled \"Network "
"Center\""
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:31
msgid ""
"When this tool is launched, a window opens listing all the networks "
"configured on the computer, whatever their type (wired, wireless, satellite, "
"etc.). When clicking on one of them, three or four buttons appear, depending "
"on the network type, to allow you to look after the network, change its "
"settings or connect/disconnect. This tool isn't intended to create a "
"network, for this see <guilabel>Set up a new network interface (LAN, ISDN, "
"ADSL, ...)</guilabel> in the same MCC tab."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><para><inlinemediaobject><imageobject><imagedata>
#: en/draknetcenter.xml:43
msgid "draknetcenterEthernet-on.png"
msgstr "../draknetcenterEthernet-on.png"

#. type: Attribute 'fileref' of: <section><section><para><inlinemediaobject><imageobject><imagedata>
#: en/draknetcenter.xml:47
msgid "draknetcenterEthernet-off.png"
msgstr "../draknetcenterEthernet-off.png"

#. type: Attribute 'fileref' of: <section><section><para><inlinemediaobject><imageobject><imagedata>
#: en/draknetcenter.xml:52
msgid "draknetcenterWireless-off.png"
msgstr "../draknetcenterWireless-off.png"

#. type: Attribute 'fileref' of: <section><section><para><inlinemediaobject><imageobject><imagedata>
#: en/draknetcenter.xml:56
msgid "draknetcenterWireless-on.png"
msgstr "../draknetcenterWireless-on.png"

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:39
msgid ""
"In the screenshot below, given as example, we can see two networks, the "
"first one is wired and connected, recognizable by this icon <placeholder "
"type=\"inlinemediaobject\" id=\"0\"/> (this one is not connected<placeholder "
"type=\"inlinemediaobject\" id=\"1\"/> ) and the second section shows "
"wireless networks, not connected recognizable by this icon <placeholder type="
"\"inlinemediaobject\" id=\"2\"/> and this one <placeholder type="
"\"inlinemediaobject\" id=\"3\"/>if connected. For the other network types, "
"the colour code is always the same, green if connected and red if not "
"connected."
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:62
msgid ""
"In the wireless part of the screen, you can also see all the detected "
"networks, with the <guilabel>SSID</guilabel>, the <guilabel>Signal strengh</"
"guilabel>, if they are encrypted (in red) or not (in green), and the "
"<guilabel>Operating mode</guilabel>. Click on the chosen one and then either "
"on <guibutton>Monitor</guibutton>, <guibutton>Configure</guibutton> or "
"<guibutton>Connect</guibutton>. It is possible here to go from a network to "
"another one. If a private network is selected, the Network Settings window "
"(see below) will open and ask you for extra settings ( an encryption key in "
"particular)."
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:72
msgid "Click on <guibutton>Refresh</guibutton> to update the screen."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draknetcenter.xml:76
msgid "draknetcenter1.png"
msgstr "draknetcenter1.png"

#. type: Content of: <section><section><title>
#: en/draknetcenter.xml:84
msgid "The Monitor button"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draknetcenter.xml:88
msgid "draknetcenter4.png"
msgstr "draknetcenter4.png"

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:92
msgid ""
"This button allows you to watch the network activity, downloads (toward the "
"PC, in red) and uploads (toward the Internet, in green). The same screen is "
"available by right clicking on the <guimenu>Internet icon in the system tray "
"-> Monitor Network</guimenu>."
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:97
msgid ""
"There is a tab for each network (here eth0 is the wired network, lo the "
"local loopback and wlan0 the wireless network) and a tab connection which "
"gives details about connection status."
msgstr ""

#. type: Content of: <section><section><note><para>
#: en/draknetcenter.xml:102
msgid ""
"At the bottom of the window is a title <guilabel>Traffic accounting</"
"guilabel>, we will look at that in the next section."
msgstr ""

#. type: Content of: <section><section><title>
#: en/draknetcenter.xml:108
msgid "The Configure button"
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:110
msgid "<emphasis role=\"bold\">A - For a wired network</emphasis>"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draknetcenter.xml:114
msgid "draknetcenter2.png"
msgstr "draknetcenter2.png"

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:118
msgid ""
"It is possible to change all the settings given during network creation. "
"Most of the time, checking <guibutton>Automatic IP</guibutton> "
"<guibutton>(BOOTP/DHCP)</guibutton> will do, but in case of problems, manual "
"configuration may give better results."
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:123
msgid ""
"For a residential network, the <guilabel>IP address</guilabel> always looks "
"like 192.168.0.x, <guilabel>Netmask</guilabel> is 255.255.255.0, and the "
"<guilabel>Gateway</guilabel> and <guilabel>DNS servers</guilabel> are "
"available from your providers website."
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:128
msgid ""
"<guibutton>Enable traffic accounting</guibutton> if checked this will count "
"the traffic on a hourly, daily or monthly basis. The results are visible in "
"the Network monitor detailed in the previous section. Once enabled, you may "
"have to reconnect to the network."
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:133
msgid ""
"<emphasis role=\"bold\">Allow interface to be controlled by Network Manager:"
"</emphasis>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:140 en/draknetcenter.xml:185
msgid "<guibutton>The button Advanced:</guibutton>"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draknetcenter.xml:148
msgid "draknetcenter5.png"
msgstr "draknetcenter5.png"

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:152
msgid "<emphasis role=\"bold\">B - For a wireless network</emphasis>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:154
msgid "Only the items not already seen above are explained."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draknetcenter.xml:158
msgid "draknetcenter3.png"
msgstr "draknetcenter3.png"

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:162
msgid "<emphasis role=\"bold\">Operating mode:</emphasis>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:164
msgid ""
"Select <guilabel>Managed</guilabel> if the connection is via an access "
"point, there is an <emphasis role=\"bold\">ESSID</emphasis> detected.  "
"Select <guilabel>Ad-hoc</guilabel> if it is a peer to peer network. Select "
"<emphasis role=\"bold\">Master</emphasis> if your network card is used as "
"the access point, your network card needs to support this mode."
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:170
msgid "<emphasis role=\"bold\">Encryption mode and Encryption key:</emphasis>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:173
msgid "If it is a private network, you need to know these settings."
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:175
msgid ""
"<guilabel>WEP</guilabel> uses a password and is weaker than WPA which uses a "
"passphrase. <guilabel>WPA Pre-Shared Key</guilabel> is also called WPA "
"personal or WPA home. <guilabel>WPA Enterprise</guilabel> is not often used "
"in private networks."
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:180
msgid "<emphasis role=\"bold\">Allow access point roaming</emphasis>:"
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknetcenter.xml:182
msgid ""
"Roaming is a technology which enables allows computer to change its access "
"point while remaining connected to the network."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draknetcenter.xml:193
msgid "draknetcenter6.png"
msgstr "draknetcenter6.png"

#. type: Content of: <section><section><title>
#: en/draknetcenter.xml:201
msgid "The Advanced Settings button"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draknetcenter.xml:209
msgid "draknetcenter7.png"
msgstr "draknetcenter7.png"

#. type: Content of: <section><info><title>
#: en/draknetprofile.xml:3
msgid "Manage different network profiles"
msgstr "Netwerkprofielen beheren"

#. type: Content of: <section><info><subtitle>
#: en/draknetprofile.xml:3
msgid "draknetprofile"
msgstr "draknetprofile"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/draknetprofile.xml:8
msgid "draknetprofile.png"
msgstr "draknetprofile.png"

#. type: Content of: <section><para>
#: en/draknetprofile.xml:15
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">draknetprofile</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">draknetprofile</emphasis> te typen."

#. type: Content of: <section><info><title>
#: en/draknfs.xml:9
msgid "Share drives and directories using NFS"
msgstr "Stations en mappen delen over NFS"

#. type: Content of: <section><info><subtitle>
#: en/draknfs.xml:11
msgid "draknfs"
msgstr "draknfs"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/draknfs.xml:16
msgid "draknfs.png"
msgstr "draknfs.png"

#. type: Content of: <section><section><title>
#: en/draknfs.xml:24
msgid "Prerequisites"
msgstr ""

#. type: Content of: <section><section><para><footnote><para>
#: en/draknfs.xml:27
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">draknfs</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">draknfs</emphasis> te typen."

#. type: Content of: <section><section><para>
#: en/draknfs.xml:26
msgid ""
"When the wizard<placeholder type=\"footnote\" id=\"0\"/> is launched for the "
"first time, it may display the following message:"
msgstr ""

#. type: Content of: <section><section><blockquote><para>
#: en/draknfs.xml:33
msgid "The package nfs-utils needs to be installed. Do you want to install it?"
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknfs.xml:37
msgid ""
"After completing the installation, a window with an empty list is displayed."
msgstr ""

#. type: Content of: <section><section><title>
#: en/draknfs.xml:42
msgid "Main window"
msgstr ""

#. type: Content of: <section><section><para>
#: en/draknfs.xml:44
msgid ""
"A list of directories which are shared is displayed. At this step, the list "
"is empty. The <guibutton>Add</guibutton> button gives access to a "
"configuration tool."
msgstr ""

#. type: Content of: <section><section><title>
#: en/draknfs.xml:50
msgid "Modify entry"
msgstr "Ingang wijzigen"

#. type: Content of: <section><section><para>
#: en/draknfs.xml:52
msgid ""
"The configuration tool is labeled \"Modify entry\". It may be also launched "
"with the <guibutton>Modify</guibutton> button. The following parameters are "
"available."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draknfs.xml:58
msgid "draknfs4.png"
msgstr "draknfs4.png"

#. type: Content of: <section><section><section><title>
#: en/draknfs.xml:64
msgid "NFS Directory"
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/draknfs.xml:66
msgid ""
"Here you can specify which directory is to be shared. The "
"<guibutton>Directory</guibutton> button gives access to a browser to choose "
"it."
msgstr ""

#. type: Content of: <section><section><section><title>
#: en/draknfs.xml:72
msgid "Host access"
msgstr "Host toegang"

#. type: Content of: <section><section><section><para>
#: en/draknfs.xml:74
msgid ""
"Here you can specify the hosts that are authorized to access the shared "
"directory."
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/draknfs.xml:77
msgid "NFS clients may be specified in a number of ways:"
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/draknfs.xml:79
msgid ""
"<emphasis>single host</emphasis>: a host either by an abbreviated name "
"recognized be the resolver, fully qualified domain name, or an IP address"
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/draknfs.xml:83
msgid "<emphasis>netgroups</emphasis>: NIS netgroups may be given as @group."
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/draknfs.xml:86
msgid ""
"<emphasis>wildcards</emphasis>: machine names may contain the wildcard "
"characters * and ?. For instance: *.cs.foo.edu matches all hosts in the "
"domain cs.foo.edu."
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/draknfs.xml:90
msgid ""
"<emphasis>IP networks</emphasis>: you can also export directories to all "
"hosts on an IP (sub-)network simultaneously. For example, either "
"`/255.255.252.0' or `/22' appended to the network base address."
msgstr ""

#. type: Content of: <section><section><section><title>
#: en/draknfs.xml:96
msgid "User ID Mapping"
msgstr "Gebruikers-ID omzetting"

#. type: Content of: <section><section><section><para>
#: en/draknfs.xml:98
msgid ""
"<emphasis>map root user as anonymous</emphasis>: maps requests from uid/gid "
"0 to the anonymous uid/gid (root_squash). The root user from the client "
"cannot read or write to the files on the server which are created by root on "
"the server itself."
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/draknfs.xml:103
msgid ""
"<emphasis>allow real remote root access</emphasis>: turn off root squashing. "
"This option is mainly useful for diskless clients (no_root_squash)."
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/draknfs.xml:107
msgid ""
"<emphasis>map all users to anonymous user</emphasis>: maps all uids and gids "
"to the anonymous user (all_squash). Useful for NFS-exported public FTP "
"directories, news spool directories, etc. The opposite option is no user UID "
"mapping (no_all_squash), which is the default setting."
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/draknfs.xml:113
msgid ""
"<emphasis>anonuid and anongid</emphasis>: explicitly set the uid and gid of "
"the anonymous account."
msgstr ""

#. type: Content of: <section><section><section><title>
#: en/draknfs.xml:118
msgid "Advanced options"
msgstr "Geavanceerde opties"

#. type: Content of: <section><section><section><para>
#: en/draknfs.xml:120
msgid ""
"<emphasis>Secured Connection</emphasis>: this option requires that requests "
"originate on an internet port less than IPPORT_RESERVED (1024).  This option "
"is on by default."
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/draknfs.xml:124
msgid ""
"<emphasis>Read-Only share</emphasis>: allow either only read or both read "
"and write requests on this NFS volume. The default is to disallow any "
"request which changes the filesystem. This can also be made explicit by "
"using this option."
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/draknfs.xml:129
msgid ""
"<emphasis>Synchronous access</emphasis>: prevents the NFS server from "
"violating the NFS protocol and to reply to requests before any changes made "
"by these requests have been committed to stable storage (e.g. disc drive)."
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/draknfs.xml:134
msgid ""
"<emphasis>Subtree checking</emphasis>: enable subtree checking which can "
"help improve security in some cases, but can decrease reliability. See "
"exports(5) man page for more details."
msgstr ""

#. type: Content of: <section><section><title>
#: en/draknfs.xml:141 en/draksambashare.xml:201
msgid "Menu entries"
msgstr "Menu-ingangen"

#. type: Content of: <section><section><para>
#: en/draknfs.xml:143
msgid "So far the list has at least one entry."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draknfs.xml:147
msgid "draknfs5.png"
msgstr "draknfs5.png"

#. type: Content of: <section><section><formalpara><title>
#: en/draknfs.xml:153 en/draksambashare.xml:207
msgid "File|Write conf"
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/draknfs.xml:155
msgid "Save the current configuration."
msgstr ""

#. type: Content of: <section><section><section><title>
#: en/draknfs.xml:159
msgid "NFS Server|Restart"
msgstr ""

#. type: Content of: <section><section><formalpara><para>
#: en/draknfs.xml:161 en/draksambashare.xml:222
msgid ""
"The server is stopped and restarted with the current configuration files."
msgstr ""

#. type: Content of: <section><section><section><title>
#: en/draknfs.xml:166
msgid "NFS Server|Reload"
msgstr ""

#. type: Content of: <section><section><formalpara><para>
#: en/draknfs.xml:168 en/draksambashare.xml:229
msgid ""
"The configuration displayed is reloaded from the current configuration files."
msgstr ""

#. type: Content of: <section><info><title>
#: en/drakproxy.xml:10
msgid "Proxy"
msgstr "Proxy"

#. type: Content of: <section><info><subtitle>
#: en/drakproxy.xml:12
msgid "drakproxy"
msgstr "drakproxy"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakproxy.xml:17
msgid "drakproxy.png"
msgstr "drakproxy.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakproxy.xml:24
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakproxy</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakproxy</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakproxy.xml:22
msgid ""
"If you have to use a proxy server to access to the internet, you can use "
"this tool<placeholder type=\"footnote\" id=\"0\"/> to configure it. Your net "
"administrator will give you the information you need. You can also specify "
"some services which can be accessed without the proxy by exception."
msgstr ""

#. type: Content of: <section><para>
#: en/drakproxy.xml:30
msgid ""
"From Wikipedia, on 2012-09-24, article Proxy server: In computer networks, a "
"proxy server is a server (a computer system or an application)  that acts as "
"an intermediary for requests from clients seeking resources from other "
"servers. A client connects to the proxy server, requesting some service, "
"such as a file, connection, web page, or other resource available from a "
"different server. The proxy server evaluates the request as a way to "
"simplify and control their complexity."
msgstr ""

#. type: Content of: <section><info><title>
#: en/drakrpm-edit-media.xml:3
msgid "Configure Media"
msgstr "Media configureren"

#. type: Content of: <section><info><subtitle>
#: en/drakrpm-edit-media.xml:5
msgid "drakrpm-edit-media"
msgstr "drakrpm-edit-media"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakrpm-edit-media.xml:17
msgid "drakrpm-edit-media.png"
msgstr "drakrpm-edit-media.png"

#. type: Content of: <section><para><important><para>
#: en/drakrpm-edit-media.xml:22
msgid ""
"First thing to do after an install is to add software sources (also known as "
"repositories, media, mirrors). That means you must select the media sources "
"to be used to install and update packages and applications. (see Add button "
"below)."
msgstr ""

#. type: Content of: <section><para><note><para>
#: en/drakrpm-edit-media.xml:27
msgid ""
"If you install (or upgrade) Mageia using an optical media (DVD or CD) or a "
"USB device, there will be a software source configured to the optical media "
"used. To avoid being asked to insert the media when you install new "
"packages, you should disable (or delete) this media.  (It will have the "
"media type CD-Rom)."
msgstr ""

#. type: Content of: <section><para><note><para>
#: en/drakrpm-edit-media.xml:33
msgid ""
"Your system is running under an architecture which may be 32-bit (called "
"i586), or 64-bit (called x86_64). Some packages are independent of whether "
"your system is 32-bit or 64-bit; these are called noarch packages. They "
"don't have their own noarch directories on the mirrors, but are all in both "
"the i586 and the x86_64 media."
msgstr ""

#. type: Content of: <section><para><footnote><para>
#: en/drakrpm-edit-media.xml:42
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakrpm-edit-media</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakrpm-edit-media</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakrpm-edit-media.xml:40
msgid ""
"This tool is present in the Mageia Control Center under the tab <emphasis "
"role=\"bold\">Software management.</emphasis><placeholder type=\"footnote\" "
"id=\"0\"/>"
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakrpm-edit-media.xml:46
msgid "The columns"
msgstr "De kolommen"

#. type: Content of: <section><section><bridgehead>
#: en/drakrpm-edit-media.xml:48
msgid "Column Enable:"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:50
msgid ""
"The checked media will be used to install new packages. Be cautious with "
"some media such as Testing and Debug, they could make your system unusable."
msgstr ""

#. type: Content of: <section><section><bridgehead>
#: en/drakrpm-edit-media.xml:54
msgid "Column Update:"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:56
msgid ""
"The checked media will be used to update packages, it must be enabled. Only "
"media with \"Update\" in its name should be selected. For security reasons, "
"this column isn't modifiable in this tool, you must open a console as root "
"and type <emphasis role=\"bold\">drakrpm-edit-media --expert.</emphasis>"
msgstr ""

#. type: Content of: <section><section><bridgehead>
#: en/drakrpm-edit-media.xml:62
msgid "Column medium:"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:64
msgid ""
"Display the medium name. Mageia official repositories for final release "
"versions contain at least:"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakrpm-edit-media.xml:69
msgid ""
"<emphasis role=\"bold\">Core</emphasis> which contains most programs "
"available supported by Mageia."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakrpm-edit-media.xml:74
msgid ""
"<emphasis role=\"bold\">Nonfree</emphasis> which contains some programs "
"which are not free"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakrpm-edit-media.xml:79
msgid ""
"<emphasis role=\"bold\">Tainted</emphasis> free software for which there "
"might be patent claims in some countries."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakrpm-edit-media.xml:82
msgid "Each medium has 4 sub-sections:"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakrpm-edit-media.xml:86
msgid ""
"<emphasis role=\"bold\">Release</emphasis> the packages as of the day the "
"this version of Mageia was released."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakrpm-edit-media.xml:91
msgid ""
"<emphasis role=\"bold\">Updates</emphasis> the packages updated since "
"release due to security or bug concerns. Everyone should have this medium "
"enabled, even with a very slow internet connection."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakrpm-edit-media.xml:97
msgid ""
"<emphasis role=\"bold\">Backports</emphasis> some packages of new versions "
"backported from Cauldron (the next version under development)."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakrpm-edit-media.xml:103
msgid ""
"<emphasis role=\"bold\">Testing</emphasis> which is used for temporary tests "
"of new updates, to allow the bug reporters and the QA team to validate the "
"corrections."
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakrpm-edit-media.xml:111
msgid "The buttons on the right"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:114
msgid "<guibutton>Remove:</guibutton>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:116
msgid ""
"To remove a medium, click on it and then on this button. It is wise to "
"remove the medium used for the installation (CD or DVD for example)  since "
"all the packages it contains are in the official Core release medium."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:121
msgid "<guibutton>Edit:</guibutton>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:123
msgid ""
"Allows you to modify the selected medium settings, (URL, downloader and "
"proxy)."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:126
msgid "<guibutton>Add:</guibutton>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:128
msgid ""
"Add the official repositories available on the Internet. These repositories "
"contain only safe and well tested software. Clicking on the \"Add\" button "
"adds the mirrorlist to your configuration, it is designed to make sure that "
"you install and update from a mirror close to you. If you prefer to choose a "
"specific mirror, then add it by choosing \"Add a specific media mirror\" "
"from the drop-down \"File\" menu."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:135
msgid "<guibutton>Up and down arrows:</guibutton>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:137
msgid ""
"Change the list order. When Drakrpm looks for a package, it reads the list "
"in the displayed order and will install the first package found for the same "
"release number - in the event of a version mismatch, the latest release will "
"be installed. So if possible, put the fastest repositories at the top."
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakrpm-edit-media.xml:145 en/harddrake2.xml:64
msgid "The menu"
msgstr "Het menu"

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:147
msgid "<guimenu>File -> Update:</guimenu>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:149
msgid ""
"A window pops up with the media list. Select the ones you want to update and "
"click on the <guibutton>Update</guibutton> button."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:152
msgid "<guimenu>File -> Add a specific media mirror:</guimenu>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:154
msgid ""
"Suppose you aren't happy with the actual mirror, because for example it's "
"too slow or often unavailable, you can choose another mirror. Select all the "
"actual media and click on <guibutton>Remove</guibutton> to take them out. "
"Click on <guimenu>File -> Add a specific media mirror</guimenu>, choose "
"between update only or the full set (if you do not know, choose the "
"<guibutton>Full set of sources</guibutton>) and accept the contact by "
"clicking on <guibutton>Yes</guibutton>. This window opens:"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/drakrpm-edit-media.xml:165
msgid "drakrpmEditMedia2.png"
msgstr "drakrpmEditMedia2.png"

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:169
msgid ""
"You can see, on the left, a list of countries, choose yours or one very "
"close by clicking on the > symbol, this will display all the available "
"mirrors in that country. Select one and click on <guibutton>OK</guibutton>."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:174
msgid "<guimenu>File -> Add a custom medium:</guimenu>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:176
msgid ""
"It is possible to install a new media (from a third party for example) that "
"isn't supported by Mageia. A new window appears:"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><para><mediaobject><imageobject><imagedata>
#: en/drakrpm-edit-media.xml:181
msgid "rpmdrakeEditMedia1.png"
msgstr "rpmdrakeEditMedia1.png"

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:179
msgid ""
"<placeholder type=\"mediaobject\" id=\"0\"/>Select the medium type, find a "
"smart name that well define the medium and give the URL (or the path, "
"according to the medium type)"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:187
msgid "<guimenu>Options -> Global options:</guimenu>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:189
msgid ""
"This item allows you to choose when to \"Verify RPMs to be installed"
"\" (always or never), the download program (curl, wget or aria2) and to "
"define the download policy for information about the packages (on demand -by "
"default-, update only, always or never)."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:194
msgid "<guimenu>Options -> Manage keys:</guimenu>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:196
msgid ""
"To guarantee a high level of security, digital keys are used to authenticate "
"the media. It is possible for each medium to allow or disallow a key. In the "
"window that appear, select a medium and then click on <guibutton>Add</"
"guibutton> to allow a new key or to select a key and click on "
"<guibutton>Remove</guibutton> to disallow that key."
msgstr ""

#. type: Content of: <section><section><para><warning><para>
#: en/drakrpm-edit-media.xml:203
msgid "Do this with care, as with all security-related questions"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:204
msgid "<guimenu>Options -> Proxy:</guimenu>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:206
msgid ""
"If you need to use a proxy server for internet access, you can configure it "
"here. You only need to give the <guibutton>Proxy hostname</guibutton> and if "
"necessary a <guilabel>Username</guilabel> and <guilabel>Password</guilabel>."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakrpm-edit-media.xml:213
msgid ""
"For more information about configuring the media, see <link ns2:href="
"\"https://wiki.mageia.org/en/Software_management\">the Mageia Wiki page</"
"link>."
msgstr ""

#. type: Content of: <section><info><title>
#: en/draksambashare.xml:10
msgid "Share directories and drives with Samba"
msgstr ""

#. type: Content of: <section><info><subtitle>
#: en/draksambashare.xml:13
msgid "draksambashare"
msgstr "draksambashare"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/draksambashare.xml:18
msgid "draksambashare.png"
msgstr "draksambashare.png"

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:29
msgid ""
"Samba is a protocol used in different Operating Systems to share some "
"resources like directories or printers. This tool allows you to configure "
"the machine as a Samba server using the protocol SMB/CIFS. This protocol is "
"also used by Windows(R) and workstations with this OS can access the "
"resources of the Samba server."
msgstr ""

#. type: Content of: <section><section><title>
#: en/draksambashare.xml:37
msgid "Preparation"
msgstr "Voorbereiding"

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:39
msgid ""
"To be accessed from other workstations, the server has to have a fixed IP "
"address. This can be specified directly on the server, for example with "
"<xref linkend=\"draknetcenter-ti1\"/>, or at the DHCP server which "
"identifies the station with its MAC-address and give it always the same "
"address. The firewall has also to allow the incoming requests to the Samba "
"server."
msgstr ""

#. type: Content of: <section><section><title>
#: en/draksambashare.xml:50
msgid "Wizard - Standalone server"
msgstr ""

#. type: Content of: <section><section><para><footnote><para>
#: en/draksambashare.xml:53
msgid ""
"You can start this tool from the command line, by typing<emphasis role=\"bold"
"\"> draksambashare</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">draksambashare</emphasis> te typen."

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:52
msgid ""
"At the first run, the tools <placeholder type=\"footnote\" id=\"0\"/> checks "
"if needed packages are installed and proposes to install them if they are "
"not yet present. Then the wizard to configure the Samba server is launched."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draksambashare.xml:61
msgid "draksambashare0.png"
msgstr "draksambashare0.png"

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:67
msgid ""
"In the next window the Standalone server configuration option is already "
"selected."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draksambashare.xml:71
msgid "draksambashare1.png"
msgstr "draksambashare1.png"

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:77
msgid ""
"Then specify the name of the workgroup. This name should be the same for the "
"access to the shared resources."
msgstr ""

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:80
msgid ""
"The netbios name is the name which will be used to designate the server on "
"the network."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draksambashare.xml:85
msgid "draksambashare2.png"
msgstr "draksambashare2.png"

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:91
msgid "Choose the security mode:"
msgstr "Kies de beveiligingsmodus:"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/draksambashare.xml:95
msgid ""
"<guilabel>user</guilabel>: the client must be authorized to access the "
"resource"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/draksambashare.xml:100
msgid ""
"<guilabel>share</guilabel>: the client authenticates itself separately for "
"each share"
msgstr ""

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:105
msgid ""
"You can specify which hosts are allowed to access the resources, with IP "
"address or host name."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draksambashare.xml:110
msgid "draksambashare3.png"
msgstr "draksambashare3.png"

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:115
msgid ""
"Specify the server banner. The banner is the way this server will be "
"described in the Windows workstations."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draksambashare.xml:120
msgid "draksambashare4.png"
msgstr "draksambashare4.png"

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:126
msgid ""
"The place where Samba can log information can be specified at the next step."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draksambashare.xml:131
msgid "draksambashare5.png"
msgstr "draksambashare5.png"

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:137
msgid ""
"The wizard displays a list of the chosen parameters before you accept the "
"configuration. When accepted, the configuration will be written in <code>/"
"etc/samba/smb.conf</code>."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draksambashare.xml:143
msgid "draksambashare6.png"
msgstr "draksambashare6.png"

#. type: Content of: <section><section><title>
#: en/draksambashare.xml:151
msgid "Wizard - Primary domain controller"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><para><mediaobject><imageobject><imagedata>
#: en/draksambashare.xml:155
msgid "draksambashare13.png"
msgstr "draksambashare13.png"

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:153
msgid ""
"<placeholder type=\"mediaobject\" id=\"0\"/>If the \"Primary domain "
"controller\" option is selected, the wizard asks for indication if Wins is "
"to support or not and to provide admin users names. The following steps are "
"then the same as for standalone server, except you can choose also the "
"security mode:"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/draksambashare.xml:164
msgid ""
"<guilabel>domain</guilabel>: provides a mechanism for storing all user and "
"group accounts in a central, shared, account repository.  The centralized "
"account repository is shared between (security)  controllers."
msgstr ""

#. type: Content of: <section><section><title>
#: en/draksambashare.xml:173
msgid "Declare a directory to share"
msgstr ""

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:175
msgid "With the <guibutton>Add</guibutton> button, we get:"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draksambashare.xml:179
msgid "draksambashare15.png"
msgstr "draksambashare15.png"

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:184
msgid ""
"A new entry is thus added. It can be modified with the <guibutton>Modify</"
"guibutton> button. Options can be edited, such as whether the directory is "
"visible to the public, writable or browseable.  The share name can not be "
"modified."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/draksambashare.xml:191
msgid "draksambashare16.png"
msgstr "draksambashare16.png"

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:203
msgid "When the list has at least one entry, menu entries can be used."
msgstr ""

#. type: Content of: <section><section><formalpara><para>
#: en/draksambashare.xml:209
msgid "Save the current configuration in <code>/etc/samba/smb.conf</code>."
msgstr ""

#. type: Content of: <section><section><formalpara><title>
#: en/draksambashare.xml:214
msgid "Samba server|Configure"
msgstr ""

#. type: Content of: <section><section><formalpara><para>
#: en/draksambashare.xml:216
msgid "The wizard can be run again with this command."
msgstr ""

#. type: Content of: <section><section><formalpara><title>
#: en/draksambashare.xml:220
msgid "Samba server|Restart"
msgstr ""

#. type: Content of: <section><section><formalpara><title>
#: en/draksambashare.xml:227
msgid "Samba Server|Reload"
msgstr ""

#. type: Content of: <section><section><title>
#: en/draksambashare.xml:235
msgid "Printers share"
msgstr ""

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:237
msgid "Samba also allows you to share printers."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><para><mediaobject><imageobject><imagedata>
#: en/draksambashare.xml:241
msgid "draksambashare17.png"
msgstr "draksambashare17.png"

#. type: Content of: <section><section><screenshot>
#: en/draksambashare.xml:239 en/drakvpn.xml:46 en/logdrake.xml:89
#: en/rpmdrake.xml:58 en/rpmdrake.xml:163 en/rpmdrake.xml:173
#: en/rpmdrake.xml:183 en/rpmdrake.xml:193 en/rpmdrake.xml:203
#: en/rpmdrake.xml:238
msgid "<placeholder type=\"mediaobject\" id=\"0\"/>"
msgstr ""

#. type: Content of: <section><section><title>
#: en/draksambashare.xml:247
msgid "Samba users"
msgstr "Samba-gebruikers"

#. type: Attribute 'fileref' of: <section><section><para><mediaobject><imageobject><imagedata>
#: en/draksambashare.xml:253
msgid "draksambashare18.png"
msgstr "draksambashare18.png"

#. type: Content of: <section><section><para>
#: en/draksambashare.xml:249
msgid ""
"In this tab, you can add users who are allowed to access the shared "
"resources when authentication is required. You can add users from <xref "
"linkend=\"userdrake-ti1\"/><placeholder type=\"mediaobject\" id=\"0\"/>"
msgstr ""

#. type: Content of: <section><info><title>
#: en/draksec.xml:3
msgid "Configure authentication for Mageia tools"
msgstr "Aanmeldingscontrole voor Mageia-hulpprogramma's configureren"

#. type: Content of: <section><info><subtitle>
#: en/draksec.xml:6
msgid "draksec"
msgstr "draksec"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/draksec.xml:11
msgid "draksec0.png"
msgstr "draksec0.png"

#. type: Content of: <section><para><footnote><para>
#: en/draksec.xml:16
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">draksec</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">draksec</emphasis> te typen."

#. type: Content of: <section><para>
#: en/draksec.xml:15
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/>is present in the Mageia "
"Control Center under the tab <emphasis role=\"bold\">Security</emphasis>"
msgstr ""
"Deze tool<placeholder type=\"footnote\" id=\"0\"/> is te vinden in het "
"Mageia Configuratiecentrum onder de tab <emphasis role=\"bold\">Beveiliging</"
"emphasis>"

#. type: Content of: <section><para>
#: en/draksec.xml:19
msgid ""
"It allows to give the regular users the needed rights to accomplish tasks "
"usually done by the administrator."
msgstr ""
"Hij maakt het mogelijk gewone gebruikers de benodigde rechten te geven voor "
"taken die gewoonlijk door de beheerder gedaan worden."

#. type: Content of: <section><para>
#: en/draksec.xml:22
msgid "Click on the little arrow before the item you want to drop down:"
msgstr "Klik op het pijltje voor het item dat u uit wilt vouwen:"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/draksec.xml:27
msgid "draksec.png"
msgstr "draksec.png"

#. type: Content of: <section><para>
#: en/draksec.xml:31
msgid ""
"Most of the tools available in the Mageia Control Center are displayed in "
"the left side of the window (see the screenshot above) and for each tool, a "
"drop down list on the right side gives the choice between:"
msgstr ""

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/draksec.xml:37
msgid ""
"Default: The launch mode depends on the chosen security level. See in the "
"same MCC tab, the tool \"Configure system security, permissions and audit\"."
msgstr ""

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/draksec.xml:43
msgid "User password: The user password is asked before the tool launching."
msgstr ""

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/draksec.xml:48
msgid ""
"Administrator password: The root password is asked before the tool launching"
msgstr ""

#. type: Content of: <section><itemizedlist><listitem><para>
#: en/draksec.xml:53
msgid "No password: The tool is launched without asking any password."
msgstr ""

#. type: Content of: <section><info><title>
#: en/draksnapshot-config.xml:11
msgid "Snapshots"
msgstr "Snapshots"

#. type: Content of: <section><info><subtitle>
#: en/draksnapshot-config.xml:12
msgid "draksnapshot-config"
msgstr ""

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/draksnapshot-config.xml:18
msgid "draksnapshot-config.png"
msgstr "draksnapshot-config.png"

#. type: Content of: <section><para><footnote><para>
#: en/draksnapshot-config.xml:22
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">draksnapshot-config </emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">draksnapshot-config</emphasis> te typen."

#. type: Content of: <section><para>
#: en/draksnapshot-config.xml:22
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> is available in MCC's "
"<guilabel>System</guilabel> tab, in the <guilabel>Administration tools</"
"guilabel> section."
msgstr ""
"Deze tool<placeholder type=\"footnote\" id=\"0\"/> vindt u in het Mageia "
"Configuratiecentrum, in de <guilabel>\"Systeem\"</guilabel>-tab, onder het "
"label <guilabel>Beheerprogramma's</guilabel>."

#. type: Content of: <section><para>
#: en/draksnapshot-config.xml:26
msgid ""
"When you start this tool in MCC for the first time, you will see a message "
"about installing draksnapshot. Click on <guibutton>Install</guibutton> to "
"proceed. Draksnapshot and some other packages it needs will be installed."
msgstr ""

#. type: Content of: <section><para>
#: en/draksnapshot-config.xml:31
msgid ""
"Click again on <guilabel>Snapshots</guilabel>, you will see the "
"<guilabel>Settings</guilabel> screen. Tick <guilabel>Enable Backups</"
"guilabel> and, if you want to backup the whole system, <guilabel>Backup the "
"whole system</guilabel>."
msgstr ""

#. type: Content of: <section><para>
#: en/draksnapshot-config.xml:34
msgid ""
"If you only want to backup part of your directories, then choose "
"<guilabel>Advanced</guilabel>. You will see a little pop-up screen. Use the "
"<guibutton>Add</guibutton> and <guibutton>Remove</guibutton> buttons next to "
"the <guilabel>Backup list</guilabel> to include or exclude directories and "
"files from the backup. Use the same buttons next to the <guilabel>Exclude</"
"guilabel> list to remove subdirectories and/or files from the chosen "
"directories, that should <emphasis role=\"bold\">not</emphasis> be included "
"in the backup. Click on <guibutton>Close</guibutton> when you are done."
msgstr ""

#. type: Content of: <section><para>
#: en/draksnapshot-config.xml:41
msgid ""
"Now give the path to <guilabel>Where to backup</guilabel>, or choose the "
"<guibutton>Browse</guibutton> button to select the correct path. Any mounted "
"USB-key or external HD can be found in <emphasis role=\"bold\">/run/media/"
"your_user_name/</emphasis>."
msgstr ""

#. type: Content of: <section><para>
#: en/draksnapshot-config.xml:45
msgid "Click on <guibutton>Apply</guibutton> to make the snapshot."
msgstr ""

#. type: Content of: <section><info><title>
#: en/draksound.xml:3
msgid "Sound Configuration"
msgstr "Audioconfiguratie"

#. type: Content of: <section><info><subtitle>
#: en/draksound.xml:5
msgid "draksound"
msgstr "draksound"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/draksound.xml:10
msgid "draksound.png"
msgstr "draksound.png"

#. type: Content of: <section><para><footnote><para>
#: en/draksound.xml:15
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">draksound</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">draksound</emphasis> te typen."

#. type: Content of: <section><para>
#: en/draksound.xml:14
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> is present in the Mageia "
"Control Center under the tab <emphasis role=\"bold\">Hardware</emphasis>.¶"
msgstr ""
"Deze tool<placeholder type=\"footnote\" id=\"0\"/> is te vinden in het "
"Mageia Configuratiecentrum onder de tab <emphasis role=\"bold\">Apparatuur</"
"emphasis>.¶"

#. type: Content of: <section><para>
#: en/draksound.xml:19
msgid ""
"Draksound deals with the sound configuration, including the driver choice, "
"PulseAudio options and trouble shooting. It will help you if you experience "
"sound problems or if you change the sound card."
msgstr ""

#. type: Content of: <section><para>
#: en/draksound.xml:23
msgid ""
"The drop down list called <guilabel>Driver</guilabel> allows you to select a "
"driver from all the ones available on the computer that match the sound card."
msgstr ""

#. type: Content of: <section><note><para>
#: en/draksound.xml:28
msgid ""
"Most of the time, it is possible to choose a driver using the OSS or ALSA "
"API. OSS is the oldest and very basic, we recommend to choose ALSA when "
"possible for its enhanced features."
msgstr ""

#. type: Content of: <section><para>
#: en/draksound.xml:33
msgid ""
"<guilabel>PulseAudio</guilabel> is a sound server. It receives all the sound "
"inputs, mixes them according to the user preferences and sends the resulting "
"sound to the output. See <guimenu>Menu ->Sound and video -> PulseAudio "
"volume control</guimenu> to set these preferences."
msgstr ""

#. type: Content of: <section><para>
#: en/draksound.xml:38
msgid ""
"PulseAudio is the default sound server and it is recommended to leave it "
"enabled."
msgstr ""
"PulseAudio is de standaard geluidsserver en het wordt aanbevolen deze "
"ingeschakeld te laten."

#. type: Content of: <section><para>
#: en/draksound.xml:41
msgid ""
"<guilabel>Glitch-Free</guilabel> improves PulseAudio with some programs. It "
"is also recommended to leave it enabled."
msgstr ""

#. type: Content of: <section><para>
#: en/draksound.xml:44
msgid ""
"The button <guibutton>Advanced</guibutton> display a new window with two or "
"three buttons:"
msgstr ""
"De <guibutton>Geavanceerd</guibutton>knop geeft een nieuw scherm met twee of "
"drie knoppen:"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/draksound.xml:49
msgid "Draksound1.png"
msgstr "Draksound1.png"

#. type: Content of: <section><para>
#: en/draksound.xml:53
msgid ""
"The first button gives total freedom of choice. You have to know what you "
"are doing. This button is not available when the system has found a driver "
"for your device."
msgstr ""

#. type: Content of: <section><para>
#: en/draksound.xml:57
msgid ""
"The second one is obvious and the last one gives assistance with fixing any "
"problems you may have. You will find it helpful to try this before asking "
"the community for help."
msgstr ""

#. type: Content of: <section><info><title>
#: en/drakups.xml:3
msgid "Set up a UPS for power monitoring"
msgstr "UPS for energie-observatie instellen"

#. type: Content of: <section><info><subtitle>
#: en/drakups.xml:3
msgid "drakups"
msgstr "drakups"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakups.xml:8
msgid "drakups.png"
msgstr "drakups.png"

#. type: Content of: <section><para>
#: en/drakups.xml:16
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakups</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakups</emphasis> te typen."

#. type: Content of: <section><info><title>
#: en/drakvpn.xml:3
msgid "Configure VPN Connection to secure network access"
msgstr ""

#. type: Content of: <section><info><subtitle>
#: en/drakvpn.xml:6
msgid "drakvpn"
msgstr "drakvpn"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakvpn.xml:11
msgid "drakvpn1.png"
msgstr "drakvpn1.png"

#. type: Content of: <section><section><para><footnote><para>
#: en/drakvpn.xml:19
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakvpn</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakvpn</emphasis> te typen."

#. type: Content of: <section><section><para>
#: en/drakvpn.xml:18
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> allows to configure "
"secure access to a remote network establishing a tunnel between the local "
"workstation and the remote network. We discuss here only of the "
"configuration on the workstation side. We assume that the remote network is "
"already in operation, and that you have the connection information from the "
"network administrator, like a .pcf configuration file ."
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakvpn.xml:30
msgid "Configuration"
msgstr "Configuratie"

#. type: Content of: <section><section><para>
#: en/drakvpn.xml:32
msgid ""
"First, select either Cisco VPN Concentrator or OpenVPN, depending on which "
"protocol is used for your virtual private network."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakvpn.xml:35
msgid "Then give your connection a name."
msgstr "Geef dan een naam aan uw verbinding."

#. type: Content of: <section><section><para>
#: en/drakvpn.xml:37
msgid "At the next screen, provide the details for your VPN connection."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakvpn.xml:42
msgid "For Cisco VPN"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><para><mediaobject><imageobject><imagedata>
#: en/drakvpn.xml:48
msgid "drakvpn3.png"
msgstr "drakvpn3.png"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakvpn.xml:54
msgid ""
"For openvpn. The openvpn package and its dependencies will be installed the "
"first time the tool is used."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><itemizedlist><listitem><para><mediaobject><imageobject><imagedata>
#: en/drakvpn.xml:59
msgid "drakvpn7.png"
msgstr "drakvpn7.png"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakvpn.xml:57
msgid ""
"<placeholder type=\"mediaobject\" id=\"0\"/>Select the files that you "
"received from the network administrator."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakvpn.xml:64
msgid "Advanced parameters:"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><itemizedlist><listitem><mediaobject><imageobject><imagedata>
#: en/drakvpn.xml:68
msgid "drakvpn8.png"
msgstr "drakvpn8.png"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/drakvpn.xml:72
msgid "The next screen asks for IP-address of the gateway."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakvpn.xml:76
msgid ""
"When the parameters are set, you have the option of starting the VPN "
"connection."
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakvpn.xml:79
msgid ""
"This VPN connection can be set to start automatically with a network "
"connection. To do this, reconfigure the network connection to always connect "
"to this VPN."
msgstr ""

#. type: Content of: <section><info><title>
#: en/drakwizard_apache2.xml:3
msgid "Configure webserver"
msgstr ""

#. type: Content of: <section><info><subtitle>
#: en/drakwizard_apache2.xml:3
msgid "drakwizard apache2"
msgstr "drakwizard apache2"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakwizard_apache2.xml:8
msgid "drakwizard_apache2.png"
msgstr "drakwizard_apache2.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakwizard_apache2.xml:12
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakwizard apache2</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakwizard apache2</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakwizard_apache2.xml:12
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> can help you to set up a "
"web server."
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakwizard_apache2.xml:15
msgid "What is a web server?"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakwizard_apache2.xml:17
msgid ""
"Web server is the software that helps to deliver web content that can be "
"accessed through the Internet. (From Wikipedia)"
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakwizard_apache2.xml:21
msgid "Setting up a web server with drakwizard apache2"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakwizard_apache2.xml:23
msgid "Welcome to the web server wizard."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_apache2.xml:30
msgid "drakwizard-web-step1.png"
msgstr "drakwizard-web-step1.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_apache2.xml:34 en/drakwizard_dhcp.xml:49
#: en/drakwizard_proftpd.xml:34 en/drakwizard_squid.xml:55
msgid ""
"The first page is just an introduction, click <guibutton>Next</guibutton>."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_apache2.xml:38 en/drakwizard_proftpd.xml:38
msgid "Selecting Server Exposer: Local Net and/or World"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_apache2.xml:41
msgid "drakwizard-web-step2.png"
msgstr "drakwizard-web-step2.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_apache2.xml:45
msgid ""
"Exposing the web server to the Internet has it's risks. Be ready for bad "
"things."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_apache2.xml:49
msgid "Server User Module"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_apache2.xml:52
msgid "drakwizard-web-step3.png"
msgstr "drakwizard-web-step3.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_apache2.xml:56
msgid "Allows users to create their own sites."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_apache2.xml:60
msgid "User web directory name"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_apache2.xml:63
msgid "drakwizard-web-step4.png"
msgstr "drakwizard-web-step4.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_apache2.xml:67
msgid ""
"The user needs to create and populate this directory, then the server will "
"display it."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_apache2.xml:71
msgid "Server Document Root"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_apache2.xml:74
msgid "drakwizard-web-step5.png"
msgstr "drakwizard-web-step5.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_apache2.xml:78
msgid "Allows you to configure the path to the web servers default documents."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_apache2.xml:82 en/drakwizard_dhcp.xml:83
#: en/drakwizard_proftpd.xml:71 en/drakwizard_squid.xml:144
#: en/drakwizard_sshd.xml:105
msgid "Summary"
msgstr "Samenvatting"

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_apache2.xml:85
msgid "drakwizard-web-step6.png"
msgstr "drakwizard-web-step6.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_apache2.xml:89 en/drakwizard_dhcp.xml:91
#: en/drakwizard_proftpd.xml:78 en/drakwizard_squid.xml:153
#: en/drakwizard_sshd.xml:112
msgid ""
"Take a second to check these options, then click <guibutton>Next</guibutton>."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_apache2.xml:93 en/drakwizard_proftpd.xml:82
#: en/drakwizard_squid.xml:173 en/drakwizard_sshd.xml:116
msgid "Finish"
msgstr "Klaar"

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_apache2.xml:96
msgid "drakwizard-web-step7.png"
msgstr "drakwizard-web-step7.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_apache2.xml:100 en/drakwizard_proftpd.xml:89
#: en/drakwizard_squid.xml:183 en/drakwizard_sshd.xml:123
msgid "You're done! Click <guibutton>Finish</guibutton>."
msgstr ""

#. type: Content of: <section><info><title>
#: en/drakwizard_bind.xml:3
msgid "Configure DNS"
msgstr "DNS configureren"

#. type: Content of: <section><info><subtitle>
#: en/drakwizard_bind.xml:3
msgid "drakwizard bind"
msgstr "drakwizard bind"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakwizard_bind.xml:8
msgid "drakwizard_bind.png"
msgstr "drakwizard_bind.png"

#. type: Content of: <section><para>
#: en/drakwizard_bind.xml:16
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakwizard bind</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakwizard bind</emphasis> te typen."

#. type: Content of: <section><info><title>
#: en/drakwizard_dhcp.xml:3
msgid "Configure DHCP"
msgstr "DHCP configureren"

#. type: Content of: <section><info><subtitle>
#: en/drakwizard_dhcp.xml:5
msgid "drakwizard dhcp"
msgstr ""

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakwizard_dhcp.xml:10
msgid "drakwizard_dhcp.png"
msgstr "drakwizard_dhcp.png"

#. type: Content of: <section><para><note><para>
#: en/drakwizard_dhcp.xml:15
msgid ""
"This tool is broken in Mageia 4 because of new naming scheme for the Net "
"interfaces"
msgstr ""

#. type: Content of: <section><para><footnote><para>
#: en/drakwizard_dhcp.xml:20
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakwizard dhcp</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakwizard dhcp</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakwizard_dhcp.xml:19
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> can help you to set up a "
"<acronym>DHCP</acronym> server. It is a component of drakwizard which should "
"be installed before you can access to it."
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakwizard_dhcp.xml:26
msgid "What is DHCP?"
msgstr "Wat is DHCP?"

#. type: Content of: <section><section><para>
#: en/drakwizard_dhcp.xml:28
msgid ""
"The Dynamic Host Configuration Protocol (<acronym>DHCP</acronym>) is a "
"standardized networking protocol used on IP networks that dynamically "
"configures IP addresses and other information that is needed for Internet "
"communication. (From Wikipedia)"
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakwizard_dhcp.xml:35
msgid "Setting up a DHCP server with drakwizard dhcp"
msgstr "Een DHCP-server instellen met drakwizard dhcp"

#. type: Content of: <section><section><para>
#: en/drakwizard_dhcp.xml:37
msgid "Welcome to the DHCP server wizard."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_dhcp.xml:45
msgid "drakwizard-dhcp-step1.png"
msgstr "drakwizard-dhcp-step1.png"

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_dhcp.xml:54
msgid "Selecting Adaptor"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_dhcp.xml:58
msgid "drakwizard-dhcp-step2.png"
msgstr "drakwizard-dhcp-step2.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_dhcp.xml:62
msgid ""
"Choose the network interface, which is connected to the subnet, and for "
"which DHCP will assign IP addresses, and then click <guibutton>Next</"
"guibutton>."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_dhcp.xml:68
msgid "Select IP range"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_dhcp.xml:72
msgid "drakwizard-dhcp-step3.png"
msgstr "drakwizard-dhcp-step3.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_dhcp.xml:76
msgid ""
"Select the beginning and ending IP addresses of the range of IPs you want "
"the server to offer, along with the IP of the gateway machine connecting to "
"some place outside the local network, hopefully close to the Internet, then "
"click <guibutton>Next</guibutton>."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_dhcp.xml:87
msgid "drakwizard-dhcp-step4.png"
msgstr "drakwizard-dhcp-step4.png"

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_dhcp.xml:96
msgid "Hold on..."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_dhcp.xml:100
msgid "drakwizard-dhcp-step5.png"
msgstr "drakwizard-dhcp-step5.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_dhcp.xml:104
msgid ""
"This can be fixed. Click <guibutton>Previous</guibutton> a few times and "
"change things around."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_dhcp.xml:109
msgid "Hours later..."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_dhcp.xml:113
msgid "drakwizard-dhcp-step6.png"
msgstr "drakwizard-dhcp-step6.png"

#. type: Content of: <section><section><title>
#: en/drakwizard_dhcp.xml:121 en/drakwizard_ntp.xml:87
#: en/drakwizard_squid.xml:189
msgid "What is done"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakwizard_dhcp.xml:125
msgid "Installing the package dhcp-server if needed;"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakwizard_dhcp.xml:129
msgid ""
"Saving <code>/etc/dhcpd.conf</code> in <code>/etc/dhcpd.conf.orig;</code>"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakwizard_dhcp.xml:134
msgid ""
"Creating a new <code>dhcpd.conf</code> starting from <code>/usr/share/"
"wizards/dhcp_wizard/scripts/dhcpd.conf.default</code> and adding the new "
"parameters:"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_dhcp.xml:140
msgid "<code>hname</code>"
msgstr "<code>hname</code>"

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_dhcp.xml:144
msgid "<code>dns</code>"
msgstr "<code>dns</code>"

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_dhcp.xml:148
msgid "net"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_dhcp.xml:152
msgid "ip"
msgstr "ip"

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_dhcp.xml:156
msgid "<code>mask</code>"
msgstr "<code>mask</code>"

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_dhcp.xml:160
msgid "<code>rng1</code>"
msgstr "<code>rng1</code>"

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_dhcp.xml:164
msgid "<code>rng2</code>"
msgstr "<code>rng2</code>"

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_dhcp.xml:168
msgid "<code>dname</code>"
msgstr "<code>dname</code>"

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_dhcp.xml:172
msgid "<code>gateway</code>"
msgstr "<code>gateway</code>"

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_dhcp.xml:176
msgid "<code>tftpserverip</code>"
msgstr "<code>tftpserverip</code>"

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_dhcp.xml:180
msgid "<code>dhcpd_interface</code>"
msgstr "<code>dhcpd_interface</code>"

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakwizard_dhcp.xml:186
msgid ""
"Also modifying Webmin configuration file <code>/etc/webmin/dhcpd/config</"
"code>"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakwizard_dhcp.xml:191
msgid "Restarting <code>dhcpd.</code>"
msgstr ""

#. type: Content of: <section><info><title>
#: en/drakwizard_ntp.xml:10
msgid "Configure time"
msgstr "Tijd configureren"

#. type: Content of: <section><info><subtitle>
#: en/drakwizard_ntp.xml:12
msgid "drakwizard ntp"
msgstr "drakwizard ntp"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakwizard_ntp.xml:19
msgid "drakwizard_ntp.png"
msgstr "drakwizard_ntp.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakwizard_ntp.xml:25
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakwizard ntp</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakwizard ntp</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakwizard_ntp.xml:24
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> purpose is to set the "
"time of your server synchronised with an external server. It isn't installed "
"by default and you have to also install the drakwizard and drakwizard-base "
"packages."
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakwizard_ntp.xml:32
msgid "Setup a NTP server with drakwizard ntp"
msgstr ""

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_ntp.xml:36
msgid ""
"After a welcome screen (see above), the second one ask you to choose three "
"time servers in the drop down lists and suggests to use pool.ntp.org twice "
"because this server always points to available time servers."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_ntp.xml:43
msgid "drakwizard-ntp1.png"
msgstr "drakwizard-ntp1.png"

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_ntp.xml:49
msgid "drakwizard-ntp2.png"
msgstr "drakwizard-ntp2.png"

#. type: Content of: <section><section><procedure><step><mediaobject><imageobject><imagedata><info>
#: en/drakwizard_ntp.xml:51
msgid "<author> <personname/> </author> <pubdate/>"
msgstr "<author> <personname/> </author> <pubdate/>"

#. type: Content of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_ntp.xml:50
msgid "<placeholder type=\"info\" id=\"0\"/>"
msgstr "<placeholder type=\"info\" id=\"0\"/>"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_ntp.xml:63
msgid ""
"The following screens allows to choose the region and the city and then, you "
"arrive on a summary. If something is wrong, you can obviously change it "
"using the <guibutton>Previous</guibutton>button.  If everything is right, "
"click on the <guibutton>Next</guibutton> button to proceed to the test. It "
"may take a while and you finally get this screen below:"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_ntp.xml:72
msgid "drakwizard-ntp3.png"
msgstr "drakwizard-ntp3.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_ntp.xml:78
msgid "Click on the <guibutton>Finish</guibutton> button to close the tool"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakwizard_ntp.xml:89
msgid "This tool executes the following steps:"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakwizard_ntp.xml:93
msgid "Installing the package <code>ntp</code> if needed"
msgstr "Installeer het <code>ntp</code>-pakket indien nodig"

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakwizard_ntp.xml:97
msgid ""
"Saving the files <code>/etc/sysconfig/clock</code> to <code>/etc/sysconfig/"
"clock.orig</code> and <code>/etc/ntp/step-tickers</code> to <code>/etc/ntp/"
"step-tickers.orig</code>;"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakwizard_ntp.xml:104
msgid ""
"Writing a new file <code>/etc/ntp/step-tickers</code> with the list of "
"servers;"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakwizard_ntp.xml:109
msgid ""
"Modifying the file <code>/etc/ntp.conf</code> by inserting the first server "
"name;"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakwizard_ntp.xml:114
msgid ""
"Stopping and starting <code>crond</code>, <code>atd</code> and <code>ntpd</"
"code> services;"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakwizard_ntp.xml:119
msgid ""
"Setting the hardware clock to the current system time with UTC reference."
msgstr ""

#. type: Content of: <section><info><title>
#: en/drakwizard_proftpd.xml:3
msgid "Configure FTP"
msgstr "FTP configureren"

#. type: Content of: <section><info><subtitle>
#: en/drakwizard_proftpd.xml:3
msgid "drakwizard proftpd"
msgstr "drakwizard proftpd"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakwizard_proftpd.xml:8
msgid "drakwizard_proftpd.png"
msgstr "drakwizard_proftpd.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakwizard_proftpd.xml:12
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakwizard proftpd</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakwizard proftpd</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakwizard_proftpd.xml:12
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> can help you to set up an "
"<acronym>FTP</acronym> server."
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakwizard_proftpd.xml:15
msgid "What is <acronym>FTP</acronym>?"
msgstr "Wat is <acronym>FTP</acronym>?"

#. type: Content of: <section><section><para>
#: en/drakwizard_proftpd.xml:17
msgid ""
"File Transfer Protocol (<acronym>FTP</acronym>) is a standard network "
"protocol used to transfer files from one host to another host over a "
"<acronym>TCP</acronym>-based network, such as the Internet. (From Wikipedia)"
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakwizard_proftpd.xml:21
msgid "Setting up an FTP server with drakwizard proftpd"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakwizard_proftpd.xml:23
msgid "Welcome to the FTP wizard. Buckle up."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_proftpd.xml:30
msgid "drakwizard-ftp-step1.png"
msgstr "drakwizard-ftp-step1.png"

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_proftpd.xml:41
msgid "drakwizard-ftp-step2.png"
msgstr "drakwizard-ftp-step2.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_proftpd.xml:45
msgid ""
"Exposing the FTP server to the Internet has it's risks. Be ready for bad "
"things."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_proftpd.xml:49
msgid "Server Information"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_proftpd.xml:52
msgid "drakwizard-ftp-step3.png"
msgstr "drakwizard-ftp-step3.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_proftpd.xml:56
msgid ""
"Enter name the sever will use to introduce itself, someone to email "
"complaints too and whether to allow root login access."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_proftpd.xml:60
msgid "Server Options"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_proftpd.xml:63
msgid "drakwizard-ftp-step4.png"
msgstr "drakwizard-ftp-step4.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_proftpd.xml:67
msgid ""
"Set listening port, jailed user, allow resumes and/or <acronym>FXP</acronym> "
"(File eXchange Protocol)"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_proftpd.xml:74
msgid "drakwizard-ftp-step5.png"
msgstr "drakwizard-ftp-step5.png"

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_proftpd.xml:85
msgid "drakwizard-ftp-step6.png"
msgstr "drakwizard-ftp-step6.png"

#. type: Content of: <section><info><title>
#: en/drakwizard_squid.xml:10
msgid "Configure proxy"
msgstr "Proxy configureren"

#. type: Content of: <section><info><subtitle>
#: en/drakwizard_squid.xml:12
msgid "drakwizard squid"
msgstr "drakwizard squid"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakwizard_squid.xml:17
msgid "drakwizard_squid.png"
msgstr "drakwizard_squid.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakwizard_squid.xml:23
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakwizard squid</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakwizard squid</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakwizard_squid.xml:22
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> can help you to set up a "
"proxy server. It is a component of drakwizard which should be installed "
"before you can access to it."
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakwizard_squid.xml:29
msgid "What is a proxy server?"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakwizard_squid.xml:31
msgid ""
"A proxy server is a server (a computer system or an application)  that acts "
"as an intermediary for requests from clients seeking resources from other "
"servers. A client connects to the proxy server, requesting some service, "
"such as a file, connection, web page, or other resource available from a "
"different server and the proxy server evaluates the request as a way to "
"simplify and control its complexity. (From Wikipedia)"
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakwizard_squid.xml:40
msgid "Setting up a proxy server with drakwizard squid"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakwizard_squid.xml:42
msgid "Welcome to the proxy server wizard."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_squid.xml:50
msgid "drakwizard-proxy-step1.png"
msgstr "drakwizard-proxy-step1.png"

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_squid.xml:60
msgid "Selecting the proxy port"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_squid.xml:64
msgid "drakwizard-proxy-step2.png"
msgstr "drakwizard-proxy-step2.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_squid.xml:69
msgid ""
"Select the proxy port browsers will connect through, then click "
"<guibutton>Next</guibutton>."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_squid.xml:74
msgid "Set Memory and Disk Usage"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_squid.xml:78
msgid "drakwizard-proxy-step3.png"
msgstr "drakwizard-proxy-step3.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_squid.xml:83
msgid ""
"Set memory and disk cache limits, then click <guibutton>Next</guibutton>."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_squid.xml:88
msgid "Select Network Access Control"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_squid.xml:92
msgid "drakwizard-proxy-step4.png"
msgstr "drakwizard-proxy-step4.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_squid.xml:97
msgid ""
"Set visibility to local network or world, then click <guibutton>Next</"
"guibutton>."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_squid.xml:102
msgid "Grant Network Access"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_squid.xml:106
msgid "drakwizard-proxy-step5.png"
msgstr "drakwizard-proxy-step5.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_squid.xml:111
msgid "Grant access to local networks, then click <guibutton>Next</guibutton>."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_squid.xml:116
msgid "Use Upper Level Proxy Server?"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_squid.xml:120
msgid "drakwizard-proxy-step6.png"
msgstr "drakwizard-proxy-step6.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_squid.xml:125
msgid "Cascade through another proxy server? If no, skip next step."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_squid.xml:130
msgid "Upper Level Proxy URL and Port"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_squid.xml:134
msgid "drakwizard-proxy-step7.png"
msgstr "drakwizard-proxy-step7.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_squid.xml:139
msgid ""
"Provide upper level proxy hostname and port, then click <guibutton>Next</"
"guibutton>."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_squid.xml:148
msgid "drakwizard-proxy-step8.png"
msgstr "drakwizard-proxy-step8.png"

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_squid.xml:158
msgid "Start during boot?"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_squid.xml:162
msgid "drakwizard-proxy-step9.png"
msgstr "drakwizard-proxy-step9.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_squid.xml:168
msgid ""
"Choose if the proxy server should be started during the boot time, then "
"click <guibutton>Next</guibutton>."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_squid.xml:177
msgid "drakwizard-proxy-step10.png"
msgstr "drakwizard-proxy-step10.png"

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakwizard_squid.xml:193
msgid "Installing the package squid if needed;"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakwizard_squid.xml:197
msgid ""
"Saving <code>/etc/squid/squid.conf</code> in <code>/etc/squid/squid.conf."
"orig;</code>"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakwizard_squid.xml:202
msgid ""
"Creating a new <code>squid.conf</code> starting from <code>squid.conf."
"default</code> and adding the new parameters:"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_squid.xml:208
msgid "<code>cache_dir</code>"
msgstr "<code>cache_dir</code>"

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_squid.xml:212
msgid "<code>localnet</code>"
msgstr "<code>localnet</code>"

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_squid.xml:216
msgid "cache_mem"
msgstr "cache_mem"

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_squid.xml:220
msgid "http_port"
msgstr "http_port"

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_squid.xml:224
msgid ""
"<code>level</code> 1, 2 or 3 and <code>http_access</code> according to level"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_squid.xml:229
msgid "<code>cache_peer</code>"
msgstr "<code>cache_peer</code>"

#. type: Content of: <section><section><para><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/drakwizard_squid.xml:233
msgid "<code>visible_hostname</code>"
msgstr "<code>visible_hostname</code>"

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/drakwizard_squid.xml:239
msgid "Restarting <code>squid.</code>"
msgstr ""

#. type: Content of: <section><info><title>
#: en/drakwizard_sshd.xml:3
msgid "OpenSSH daemon configuration"
msgstr "Configuratie van OpenSSH-voorziening"

#. type: Content of: <section><info><subtitle>
#: en/drakwizard_sshd.xml:3
msgid "drakwizard sshd"
msgstr "drakwizard sshd"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakwizard_sshd.xml:8
msgid "drakwizard_sshd.png"
msgstr "drakwizard_sshd.png"

#. type: Content of: <section><para><footnote><para>
#: en/drakwizard_sshd.xml:13
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakwizard sshd</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakwizard sshd</emphasis> te typen."

#. type: Content of: <section><para>
#: en/drakwizard_sshd.xml:13
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> can help you to set up an "
"<acronym>SSH</acronym> daemon."
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakwizard_sshd.xml:16
msgid "What is <acronym>SSH</acronym>?"
msgstr "Wat is <acronym>SSH</acronym>?"

#. type: Content of: <section><section><para>
#: en/drakwizard_sshd.xml:18
msgid ""
"Secure Shell (SSH) is a cryptographic network protocol for secure data "
"communication, remote command-line login, remote command execution, and "
"other secure network services between two networked computers that connects, "
"via a secure channel over an insecure network, a server and a client "
"(running SSH server and <acronym>SSH</acronym> client programs, "
"respectively). (From Wikipedia)"
msgstr ""

#. type: Content of: <section><section><title>
#: en/drakwizard_sshd.xml:22
msgid "Setting up an <acronym>SSH</acronym> daemon with drakwizard sshd"
msgstr ""

#. type: Content of: <section><section><para>
#: en/drakwizard_sshd.xml:24
msgid "Welcome to the Open SSH wizard."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_sshd.xml:28
msgid "Select Type of Configure Options"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_sshd.xml:31
msgid "drakwizard-sshd-step1.png"
msgstr "drakwizard-sshd-step1.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_sshd.xml:35
msgid ""
"Choose <guilabel>Expert</guilabel> for all options or <guilabel>Newbie</"
"guilabel> to skip steps 3-7, click <guibutton>Next</guibutton>."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_sshd.xml:39
msgid "General Options"
msgstr "Algemene Opties"

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_sshd.xml:42
msgid "drakwizard-sshd-step2.png"
msgstr "drakwizard-sshd-step2.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_sshd.xml:46
msgid ""
"Sets visibility and root access options. Port 22 is the standard "
"<acronym>SSH</acronym> port."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_sshd.xml:50
msgid "Authentication Methods"
msgstr "Authenticatiemethodes"

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_sshd.xml:53
msgid "drakwizard-sshd-step3.png"
msgstr "drakwizard-sshd-step3.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_sshd.xml:57
msgid ""
"Allow a variety of authentication methods users can use while connecting, "
"then click <guibutton>Next</guibutton>."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_sshd.xml:61
msgid "Logging"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_sshd.xml:64
msgid "drakwizard-sshd-step4.png"
msgstr "drakwizard-sshd-step4.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_sshd.xml:68
msgid ""
"Choose logging facility and level of output, then click <guibutton>Next</"
"guibutton>."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_sshd.xml:72
msgid "Login Options"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_sshd.xml:75
msgid "drakwizard-sshd-step5.png"
msgstr "drakwizard-sshd-step5.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_sshd.xml:79
msgid "Configure per-login settings, then click <guibutton>Next</guibutton>."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_sshd.xml:83
msgid "User Login Options"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_sshd.xml:86
msgid "drakwizard-sshd-step6.png"
msgstr "drakwizard-sshd-step6.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_sshd.xml:90
msgid ""
"Configure the user access settings, then click <guibutton>Next</guibutton>."
msgstr ""

#. type: Content of: <section><section><procedure><step><title>
#: en/drakwizard_sshd.xml:94
msgid "Compression and Forwarding"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_sshd.xml:97
msgid "drakwizard-sshd-step7.png"
msgstr "drakwizard-sshd-step7.png"

#. type: Content of: <section><section><procedure><step><para>
#: en/drakwizard_sshd.xml:101
msgid ""
"Configure X11 forwarding and compression during transfer, then click "
"<guibutton>Next</guibutton>."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_sshd.xml:108
msgid "drakwizard-sshd-step8.png"
msgstr "drakwizard-sshd-step8.png"

#. type: Attribute 'fileref' of: <section><section><procedure><step><mediaobject><imageobject><imagedata>
#: en/drakwizard_sshd.xml:119
msgid "drakwizard-sshd-step9.png"
msgstr "drakwizard-sshd-step9.png"

#. type: Content of: <section><info><title>
#: en/drakxservices.xml:3
msgid "Manage system services by enabling or disabling them"
msgstr "Systeemdiensten in- of uitschakelen"

#. type: Content of: <section><info><subtitle>
#: en/drakxservices.xml:3
msgid "drakxservices"
msgstr "drakxservices"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/drakxservices.xml:8
msgid "drakxservices.png"
msgstr "drakxservices.png"

#. type: Content of: <section><para>
#: en/drakxservices.xml:15
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">drakxservices</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">drakxservices</emphasis> te typen."

#. type: Content of: <section><info><title>
#: en/harddrake2.xml:10
msgid "Hardware configuration"
msgstr "Apparatuur configureren"

#. type: Content of: <section><info><subtitle>
#: en/harddrake2.xml:12
msgid "harddrake2"
msgstr "harddrake2"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/harddrake2.xml:17
msgid "harddrake2.png"
msgstr "harddrake2.png"

#. type: Content of: <section><para><footnote><para>
#: en/harddrake2.xml:23
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">harddrake2</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">harddrake2</emphasis> te typen."

#. type: Content of: <section><para>
#: en/harddrake2.xml:22
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> gives a general view of "
"the hardware of your computer. When the tool is launched, it executes a job "
"to look for every element of the hardware. For that, it uses the command "
"<code>ldetect </code>which refers to a list of hardware in <code>ldetect-"
"lst</code> package."
msgstr ""

#. type: Content of: <section><section><title>
#: en/harddrake2.xml:31
msgid "The window"
msgstr "Het venster"

#. type: Content of: <section><section><para>
#: en/harddrake2.xml:33
msgid "The window is divided in two columns."
msgstr "Het venster is verdeeld in twee kolommen."

#. type: Content of: <section><section><para>
#: en/harddrake2.xml:35
msgid ""
"The left column contains a list of the detected hardware. The devices are "
"grouped by categories. Click on the &gt; to expand the content of a "
"category. Each device can be selected in this column."
msgstr ""

#. type: Content of: <section><section><para>
#: en/harddrake2.xml:39
msgid ""
"The right column displays information about the selected device.  The "
"<guimenu>Help -&gt; Fields description</guimenu> gives some information "
"about the content of the fields."
msgstr ""

#. type: Content of: <section><section><para>
#: en/harddrake2.xml:43
msgid ""
"According to which type of device is selected, either one or two buttons are "
"available at the bottom of the right column:"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/harddrake2.xml:48
msgid ""
"<guibutton>Set current driver options</guibutton>: this can be used to "
"parameterize the module which is used in relation to the device. This must "
"used by experts only."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/harddrake2.xml:54
msgid ""
"<guibutton>Run config tool</guibutton>: access to the tool which can "
"configure the device. The tool can often be accessed directly from the MCC."
msgstr ""

#. type: Content of: <section><section><para>
#: en/harddrake2.xml:68
msgid ""
"The <guimenu>options</guimenu> menu gives the opportunity to check boxes to "
"enable automatic detection:"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/harddrake2.xml:73
msgid "modem"
msgstr "modem"

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/harddrake2.xml:77
msgid "Jaz devices"
msgstr ""

#. type: Content of: <section><section><para><itemizedlist><listitem><para>
#: en/harddrake2.xml:81
msgid "Zip parallel devices"
msgstr ""

#. type: Content of: <section><section><para>
#: en/harddrake2.xml:83
msgid ""
"By default these detections are not enabled, because they are slow. Check "
"the appropriate box(es) if you have this hardware connected. Detection will "
"be operational the next time this tool is started."
msgstr ""

#. type: Content of: <section><info><title>
#: en/keyboarddrake.xml:3
msgid "Set up the Keyboard Layout"
msgstr ""

#. type: Content of: <section><info><subtitle>
#: en/keyboarddrake.xml:7
msgid "keyboarddrake"
msgstr "keyboarddrake"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/keyboarddrake.xml:12
msgid "keyboarddrake.png"
msgstr "keyboarddrake.png"

#. type: Content of: <section><section><para><footnote><para>
#: en/keyboarddrake.xml:20
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">keyboarddrake</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">keyboarddrake</emphasis> te typen."

#. type: Content of: <section><section><para>
#: en/keyboarddrake.xml:19
msgid ""
"The keyboarddrake tool<placeholder type=\"footnote\" id=\"0\"/> helps you "
"configure the basic layout for the keyboard that you wish to use on Mageia. "
"It affects the keyboard layout for all users on the system. It can be found "
"in the Hardware section of the Mageia Control Center (MCC) labelled "
"\"Configure mouse and keyboard\"."
msgstr ""

#. type: Content of: <section><section><title>
#: en/keyboarddrake.xml:29
msgid "Keyboard Layout"
msgstr ""

#. type: Content of: <section><section><para>
#: en/keyboarddrake.xml:31
msgid ""
"Here you can select which keyboard layout you wish to use. The names (listed "
"in alphabetical order) describe the language, country, and/or ethnicity each "
"layout should be used for."
msgstr ""

#. type: Content of: <section><section><title>
#: en/keyboarddrake.xml:37
msgid "Keyboard Type"
msgstr "Toetsenbordtype"

#. type: Content of: <section><section><para>
#: en/keyboarddrake.xml:39
msgid ""
"This menu lets you select the type of keyboard you are using. If you are "
"unsure of which to choose, it is best to leave it as the default type."
msgstr ""

#. type: Content of: <section><info><title>
#: en/localedrake.xml:10
msgid "Manage localization for your system"
msgstr "Taalinstellingen voor uw systeem beheren"

#. type: Content of: <section><info><subtitle>
#: en/localedrake.xml:13
msgid "localedrake"
msgstr "localedrake"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/localedrake.xml:18
msgid "localedrake.png"
msgstr "localedrake.png"

#. type: Content of: <section><para><footnote><para>
#: en/localedrake.xml:24
msgid ""
"You can also start this tool from the command line, by typing <emphasis role="
"\"bold\">localedrake</emphasis> as root."
msgstr ""
"U kunt deze tool ook vanaf de commandoregel starten, door <emphasis role="
"\"bold\">localedrake</emphasis> te typen als root."

#. type: Content of: <section><para>
#: en/localedrake.xml:24
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> can be found in the "
"System section of the Mageia Control Center (MCC) labelled \"Manage "
"localization for your system\". It opens with a window in which you can "
"choose your language. The choice is adapted to languages selected during "
"installation."
msgstr ""

#. type: Content of: <section><para>
#: en/localedrake.xml:31
msgid ""
"The <guibutton>Advanced</guibutton> button give access to activate "
"compatibility with old encoding (non UTF8)."
msgstr ""

#. type: Content of: <section><para>
#: en/localedrake.xml:34
msgid ""
"The second window shows a list of countries according to the selected "
"language. The button <guibutton>Other Countries</guibutton> gives access to "
"countries not listed."
msgstr ""

#. type: Content of: <section><para>
#: en/localedrake.xml:38
msgid "You have to restart your session after any modifications."
msgstr ""

#. type: Content of: <section><section><info><title>
#: en/localedrake.xml:42
msgid "Input method"
msgstr "Invoermethode"

#. type: Content of: <section><section><para>
#: en/localedrake.xml:44
msgid ""
"In the <guilabel>Other Countries</guilabel> screen you can also select an "
"input method (from the drop-down menu at the bottom of the list). Input "
"methods allow users to input multilingual characters (Chinese, Japanese, "
"Korean, etc)."
msgstr ""

#. type: Content of: <section><section><para>
#: en/localedrake.xml:48
msgid ""
"For Asian and African locales, IBus will be set as default input method so "
"users should not need to configure it manually."
msgstr ""

#. type: Content of: <section><section><para>
#: en/localedrake.xml:50
msgid ""
"Other input methods (SCIM, GCIN, HIME, etc.) also provide similar functions "
"and can, if not available from the drop-down menu, be installed in another "
"part of the Mageia Control Center. See <xref linkend=\"rpmdrake\"></xref>."
msgstr ""

#. type: Content of: <section><info><title>
#: en/logdrake.xml:3
msgid "View and search system logs"
msgstr "Uw systeemlogboeken bekijken en doorzoeken"

#. type: Content of: <section><info><subtitle>
#: en/logdrake.xml:5
msgid "logdrake"
msgstr "logdrake"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/logdrake.xml:10
msgid "logdrake.png"
msgstr "logdrake.png"

#. type: Content of: <section><para><footnote><para>
#: en/logdrake.xml:15
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">logdrake</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">logdrake</emphasis> te typen."

#. type: Content of: <section><para>
#: en/logdrake.xml:14
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> is found in the Mageia "
"Control Center System tab, labelled \"<guilabel>View and search system logs</"
"guilabel>\"."
msgstr ""

#. type: Content of: <section><section><title>
#: en/logdrake.xml:22
msgid "To do a search in the logs"
msgstr ""

#. type: Content of: <section><section><para>
#: en/logdrake.xml:24
msgid ""
"First, enter the key string you want to look for in the <emphasis role=\"bold"
"\">Matching</emphasis> field and/or the key string you want to <emphasis>do "
"not</emphasis> wish to see amongst the answers in the field <emphasis role="
"\"bold\">but not matching</emphasis>. Then select the file(s)  to search in "
"the <guilabel>Choose file</guilabel> field. Optionally, it is possible to "
"limit the search to only one day. Select it in the <emphasis role=\"bold"
"\">Calendar</emphasis>, using the little arrows on each side of the month "
"and year, and check \"<guibutton>Show only for the selected day</guibutton>"
"\". At last, click on the <guibutton>search</guibutton> button to see the "
"results in the window called <guilabel>Content of the file</guilabel>. It is "
"possible to save the results in the .txt format by clicking on the <emphasis "
"role=\"bold\">Save</emphasis> button."
msgstr ""

#. type: Content of: <section><section><note><para>
#: en/logdrake.xml:36
msgid ""
"The <guibutton>Mageia Tools Logs</guibutton> houses the logs from the Mageia "
"configuration tools such as the Mageia Control Center tools.  These logs are "
"updated each time a configuration is modified."
msgstr ""

#. type: Content of: <section><section><title>
#: en/logdrake.xml:43
msgid "To configure a mail alert"
msgstr ""

#. type: Content of: <section><section><para>
#: en/logdrake.xml:45
msgid ""
"<guibutton>Mail alert</guibutton> automatically checks the system load and "
"the services every hour and if necessary sends an e-mail to the configured "
"address."
msgstr ""

#. type: Content of: <section><section><para>
#: en/logdrake.xml:49
msgid ""
"To configure this tool, click on the <emphasis role=\"bold\">Mail Alert</"
"emphasis> button and then, in the next screen, on the<guibutton> Configure "
"the mail alert system</guibutton> drop down button. Here, all the running "
"services are displayed and you can choose which ones you want to look watch. "
"(See screenshot above)."
msgstr ""

#. type: Content of: <section><section><para>
#: en/logdrake.xml:55
msgid "The following services can be watched :"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/logdrake.xml:59
msgid "Webmin Service"
msgstr "Webmin-dienst"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/logdrake.xml:63
msgid "Postfix Mail Server"
msgstr "Postfix e-mailserver"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/logdrake.xml:67
msgid "FTP Server"
msgstr "FTP-server"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/logdrake.xml:71
msgid "Apache World Wide Web Server"
msgstr "Apache World Wide Web-server"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/logdrake.xml:75
msgid "SSH Server"
msgstr "SSH-server"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/logdrake.xml:79
msgid "Samba Server"
msgstr "Samba-server"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/logdrake.xml:83
msgid "Xinetd Service"
msgstr "Xinetd-dienst"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/logdrake.xml:87
msgid "BIND Domain Name Resolve"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><itemizedlist><listitem><para><mediaobject><imageobject><imagedata>
#: en/logdrake.xml:91
msgid "logdrake1.png"
msgstr "logdrake1.png"

#. type: Content of: <section><section><para>
#: en/logdrake.xml:97
msgid ""
"In the next screen, select the <guilabel>Load</guilabel> value you consider "
"unacceptable. The load represents the demand to a process, a high load slows "
"the system down and a very high load may indicate that a process has gone "
"out of control. The default value is 3. We recommend setting the load value "
"to 3 times the number of processors."
msgstr ""

#. type: Content of: <section><section><para>
#: en/logdrake.xml:103
msgid ""
"In the last screen, enter the <guilabel>Email address</guilabel> of the "
"person to be warned and the <guilabel>Email server</guilabel> to use (local "
"or on the Internet)."
msgstr ""

#. type: Content of: <section><info><title>
#: en/lsnetdrake.xml:10
msgid "Display Available NFS And SMB Shares"
msgstr ""

#. type: Content of: <section><info><subtitle>
#: en/lsnetdrake.xml:11
msgid "lsnetdrake"
msgstr "lsnetdrake"

#. type: Content of: <section><para><footnote><para>
#: en/lsnetdrake.xml:16
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">lsnetdrake</emphasis>."
msgstr ""
"U kunt deze tool op de commandoregel starten, door <emphasis role=\"bold"
"\">lsnetdrake</emphasis> te typen."

#. type: Content of: <section><para>
#: en/lsnetdrake.xml:14
msgid ""
"This tool <placeholder type=\"footnote\" id=\"0\"/> can only be started and "
"used on the command line."
msgstr ""
"Deze tool <placeholder type=\"footnote\" id=\"0\"/> kan alleen op de "
"commandoregel gestart en gebruikt worden."

#. type: Content of: <section><para>
#: en/lsnetdrake.xml:21
msgid ""
"This page hasn't been written yet for lack of resources. If you think you "
"can write this help, please contact <link ns2:href=\"https://wiki.mageia.org/"
"en/Documentation_team\"> the Documentation team.</link> Thanking you in "
"advance."
msgstr ""
"Deze pagina is nog ongeschreven door gebrek aan middelen. Als u denkt dat "
"u de pagina kunt schrijven, contacteer dan a.u.b. <link ns2:href=\"https://"
"wiki.mageia.org/en/Documentation_team\"> het Documentatieteam.</link> Bij "
"voorbaat dank."

#. type: Content of: <section><info><title>
#: en/lspcidrake.xml:3
msgid "Display Your PCI, USB and PCMCIA Information"
msgstr ""

#. type: Content of: <section><info><subtitle>
#: en/lspcidrake.xml:6
msgid "lspcidrake"
msgstr "lspcidrake"

#. type: Content of: <section><para><footnote><para>
#: en/lspcidrake.xml:10
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">lspcidrake</emphasis>."
msgstr ""
"U kunt deze tool op de commandoregel starten, door <emphasis role=\"bold"
"\">lspcidrake</emphasis> te typen."

#. type: Content of: <section><para>
#: en/lspcidrake.xml:9
msgid ""
"This tool <placeholder type=\"footnote\" id=\"0\"/> can only be started and "
"used on the command line. It will give some more information if used under "
"root."
msgstr ""
"Deze tool <placeholder type=\"footnote\" id=\"0\"/> kan alleen op de "
"commandoregel gestart en gebruikt worden. Hij geeft wat meer informatie als "
"hij als root gebruikt wordt."

#. type: Content of: <section><para>
#: en/lspcidrake.xml:14
msgid ""
"lspcidrake gives the list of all the connected devices to the computer (USB, "
"PCI and PCMCIA) and the used drivers. It needs the ldetect and ldetect-lst "
"packages to work."
msgstr ""

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/lspcidrake.xml:20
msgid "lspcidrake1.png"
msgstr "lspcidrake1.png"

#. type: Content of: <section><para>
#: en/lspcidrake.xml:24
msgid ""
"With the -v option, lspcidrake adds the vendor and device identifications."
msgstr ""

#. type: Content of: <section><para>
#: en/lspcidrake.xml:27
msgid ""
"lspcidrake often generates very long lists, so, to find an information, it "
"is often used in a pipeline with the grep command, like in these examples:"
msgstr ""

#. type: Content of: <section><para>
#: en/lspcidrake.xml:31
msgid "Information about the graphic card;"
msgstr "Informatie over de grafische kaart;"

#. type: Content of: <section><para>
#: en/lspcidrake.xml:33
msgid "<command>lspcidrake | grep VGA</command>"
msgstr "<command>lspcidrake | grep VGA</command>"

#. type: Content of: <section><para>
#: en/lspcidrake.xml:35
msgid "Information about the network"
msgstr "Informatie over het netwerk"

#. type: Content of: <section><para>
#: en/lspcidrake.xml:37
msgid "<command>lspcidrake | grep -i network</command>"
msgstr "<command>lspcidrake | grep -i network</command>"

#. type: Content of: <section><para>
#: en/lspcidrake.xml:39
msgid "-i to ignore case distinctions."
msgstr ""

#. type: Content of: <section><para>
#: en/lspcidrake.xml:41
msgid ""
"In this screenshot below, you can see the action of the -v option for "
"lspcidrake and the -i option for grep."
msgstr ""

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/lspcidrake.xml:46
msgid "lspcidrake2.png"
msgstr "lspcidrake2.png"

#. type: Content of: <section><para>
#: en/lspcidrake.xml:50
msgid ""
"There is another tool that gives information about the hardware, it is "
"called <emphasis role=\"bold\">dmidecode</emphasis> (under root)"
msgstr ""
"Er is nog een tool (voor root) die informatie geeft over de hardware, "
"<emphasis role=\"bold\">dmidecode</emphasis> genaamd"
"called <emphasis role=\"bold\">dmidecode</emphasis> (under root)"

#. type: Content of: <section><info><title>
#: en/MageiaUpdate.xml:3
msgid "Software Packages Update"
msgstr "Softwarepakketten-opwaardering"

#. type: Content of: <section><info><subtitle>
#: en/MageiaUpdate.xml:5
msgid "MageiaUpdate or drakrpm-update"
msgstr "MageiaUpdate of drakrpm-update"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/MageiaUpdate.xml:10
msgid "MageiaUpdate.png"
msgstr "MageiaUpdate.png"

#. type: Content of: <section><para><footnote><para>
#: en/MageiaUpdate.xml:14
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">MageiaUpdate</emphasis> or <emphasis role=\"bold\">drakrpm-update</"
"emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">MageiaUpdate</emphasis> of <emphasis role=\"bold\">drakrpm-update</"
"emphasis> te typen."

#. type: Content of: <section><para>
#: en/MageiaUpdate.xml:14
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> is present in the Mageia "
"Control Center under the tab <emphasis role=\"bold\">Software management.</"
"emphasis>"
msgstr ""
"Deze tool<placeholder type=\"footnote\" id=\"0\"/> vindt u in het Mageia "
"Configuratiecentrum, onder de <emphasis role=\"bold\">Softwarebeheer</"
"emphasis> tab"

#. type: Content of: <section><para><note><para>
#: en/MageiaUpdate.xml:18
msgid ""
"To work, MageiaUpdate needs the repositories to be configured with rpmdrake-"
"edit-media with some media checked as updates. If they are not, you are "
"prompted to do so."
msgstr ""

#. type: Content of: <section><para>
#: en/MageiaUpdate.xml:23
msgid ""
"As soon as this tool is launched, it scans the installed packages and lists "
"those with an update available in the repositories. They are all selected by "
"default to be automatically downloaded and installed. Click on the "
"<guibutton>Update</guibutton> button to start the process."
msgstr ""

#. type: Content of: <section><para>
#: en/MageiaUpdate.xml:28
msgid ""
"By clicking on a package, more information is displayed in the lower half of "
"the window. The print<emphasis role=\"bold\"> ></emphasis> before a title "
"means you can click to drop down a text."
msgstr ""

#. type: Attribute 'fileref' of: <section><para><inlinemediaobject><imageobject><imagedata>
#: en/MageiaUpdate.xml:36 en/mgaapplet-config.xml:21
msgid "MageiaUpdate1.png"
msgstr "../MageiaUpdate1.png"

#. type: Content of: <section><para><note><para>
#: en/MageiaUpdate.xml:33
msgid ""
"When updates are available, an applet in the system tray warns you by "
"displaying this red icon <placeholder type=\"inlinemediaobject\" id=\"0\"/"
"> . Just click and enter the user password to update the system alike."
msgstr ""

#. type: Content of: <section><info><title>
#: en/mcc-boot.xml:5
msgid "Boot"
msgstr "Opstarten"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/mcc-boot.xml:10
msgid "mcc-boot.png"
msgstr "mcc-boot.png"

#. type: Content of: <section><para>
#: en/mcc-boot.xml:16
msgid ""
"In this screen you can choose between several tools to configure your boot "
"steps. Click on a link below to learn more."
msgstr ""
"In dit scherm kunt u kiezen tussen verschillende tools om het opstarten van "
"uw systeem te configureren. Klik op een link hieronder voor meer informatie."

#. type: Content of: <section><orderedlist><title>
#: en/mcc-boot.xml:19
msgid "Configure boot steps"
msgstr "Opstartstappen configureren"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-boot.xml:21
msgid "<xref linkend=\"drakboot\"/>"
msgstr "<xref linkend=\"drakboot\"/>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-boot.xml:25
msgid "<xref linkend=\"drakboot--boot\"/>"
msgstr "<xref linkend=\"drakboot--boot\"/>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-boot.xml:29
msgid "<xref linkend=\"drakedm\"/>"
msgstr "<xref linkend=\"drakedm\"/>"

#. type: Content of: <section><info><title>
#: en/mcc-hardware.xml:4
msgid "Hardware"
msgstr "Apparatuur"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/mcc-hardware.xml:9
msgid "mcc-hardware.png"
msgstr "mcc-hardware.png"

#. type: Content of: <section><para>
#: en/mcc-hardware.xml:15
msgid ""
"In this screen you can choose between several tools to configure your "
"hardware. Click on a link below to learn more."
msgstr ""
"In dit scherm kunt u kiezen tussen verschillende tools om uw apparatuur te "
"configureren. Klik op een link hieronder voor meer informatie."

#. type: Content of: <section><orderedlist><listitem><orderedlist><title>
#: en/mcc-hardware.xml:20
msgid "Manage your hardware"
msgstr "Uw apparatuur beheren"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-hardware.xml:22
msgid ""
"<xref linkend=\"harddrake2\"/><emphasis> = Browse and configure hardware</"
"emphasis>"
msgstr ""
"<xref linkend=\"harddrake2\"/><emphasis> = De apparatuur inspecteren en "
"configureren</emphasis>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-hardware.xml:27
msgid "<xref linkend=\"draksound\"/>"
msgstr "<xref linkend=\"draksound\"/>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><title>
#: en/mcc-hardware.xml:34
msgid "Configure graphics"
msgstr "Grafische instellingen"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-hardware.xml:36
msgid ""
"<xref linkend=\"drak3d\"/><emphasis> = Configure 3D Desktop effects</"
"emphasis>"
msgstr "<xref linkend=\"drak3d\"/>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-hardware.xml:41
msgid "<xref linkend=\"XFdrake\"/>"
msgstr "<xref linkend=\"XFdrake\"/>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><title>
#: en/mcc-hardware.xml:48
msgid "Configure mouse and keyboard"
msgstr "Configuren van uw muis en toetsenbord"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-hardware.xml:50
msgid "<xref linkend=\"keyboarddrake\"/>"
msgstr "<xref linkend=\"keyboarddrake\"/>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-hardware.xml:54
msgid "<xref linkend=\"mousedrake\"/>"
msgstr "<xref linkend=\"mousedrake\"/>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><title>
#: en/mcc-hardware.xml:61
msgid "Configure printing and scanning"
msgstr "Configureren van afdrukken en scannen"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-hardware.xml:63
msgid ""
"<xref linkend=\"system-config-printer\"/><emphasis> = Set up the printer(s), "
"the print job queues, ...</emphasis>"
msgstr ""

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-hardware.xml:68
msgid "<xref linkend=\"scannerdrake\"/>"
msgstr "<xref linkend=\"scannerdrake\"/>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><title>
#: en/mcc-hardware.xml:75 en/mcc-network.xml:58
msgid "Others"
msgstr "Overige"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-hardware.xml:77
msgid "<xref linkend=\"drakups\"/>"
msgstr "<xref linkend=\"drakups\"/>"

#. type: Content of: <section><info><title>
#: en/mcc-intro.xml:3
msgid "About the Manual for the Mageia Control Center"
msgstr "Over de handleiding voor het Mageia Configuratiecentrum"

#. type: Content of: <section><para>
#: en/mcc-intro.xml:6
msgid ""
"The Mageia Control Center (MCC) has eight different options or tabs to "
"choose from in the left column, and even ten if the drakwizard package was "
"installed. Each of these tabs gives a different set of tools that can be "
"selected in the big right panel."
msgstr ""
"Het Mageia Configuratiecentrum (MCC) heeft acht verschillende opties of tabs "
"waaruit u kunt kiezen in de linker kolom, en zelfs tien als het drakwizard-"
"pakket geïnstalleerd is. Elk van deze tabs geeft een andere set tools die in "
"het grote rechter paneel gekozen kunnen worden."

#. type: Content of: <section><para>
#: en/mcc-intro.xml:8
msgid ""
"The ten following chapters are about those ten options and the related tools."
msgstr ""
"De tien volgende hoofdstukken gaan over deze tien opties en de bijbehorende "
"tools."

#. type: Content of: <section><para>
#: en/mcc-intro.xml:10
msgid ""
"The last chapter is about some other Mageia tools, that cannot be chosen in "
"any of the MCC tabs."
msgstr ""
"Het laatste hoofdstuk gaat over enkele andere Mageia tools, die niet gekozen "
"kunnen worden in een MCC-tab."

#. type: Content of: <section><para>
#: en/mcc-intro.xml:12
msgid ""
"The titles of the pages will often be the same as the titles of the tool "
"screens."
msgstr ""
"De titels van de pagina's zullen vaak hetzelfde zijn als de titels van de "
"toolschermen."

#. type: Content of: <section><para>
#: en/mcc-intro.xml:14
msgid ""
"There is also a search bar available, which you can access by clicking on "
"the \"Search\" tab in the left column."
msgstr ""
"Er is ook een zoekvenster beschikbaar, dat u kunt vinden door op de \"Zoeken"
"\"-tab te klikken in de linker kolom."

#. type: Content of: <section><orderedlist><title>
#: en/mcc-localdisks.xml:6 en/mcc-localdisks.xml:17
msgid "Local disks"
msgstr "Lokale schijven"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/mcc-localdisks.xml:11
msgid "mcc-localdisks.png"
msgstr "mcc-localdisks.png"

#. type: Content of: <section><para>
#: en/mcc-localdisks.xml:15
msgid ""
"In this screen you can choose between several tools to manage or share your "
"local disks. Click on a link below to learn more."
msgstr ""
"In dit scherm kunt u kiezen tussen verschillende tools om uw lokale schijven "
"te beheren of delen. Klik op een link hieronder voor meer informatie."

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-localdisks.xml:18
msgid "<xref linkend=\"drakdisk\"></xref>"
msgstr "<xref linkend=\"drakdisk\"></xref>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-localdisks.xml:19
msgid "<xref linkend=\"diskdrake--removable\"></xref>"
msgstr "<xref linkend=\"diskdrake--removable\"></xref>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-localdisks.xml:20
msgid "<xref linkend=\"diskdrake--fileshare\"></xref>"
msgstr "<xref linkend=\"diskdrake--fileshare\"></xref>"

#. type: Content of: <section><orderedlist><title>
#: en/mcc-networkservices.xml:4 en/mcc-networkservices.xml:17
msgid "Network Services"
msgstr "Netwerkdiensten"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/mcc-networkservices.xml:9
msgid "mcc-networkservices.png"
msgstr "mcc-networkservices.png"

#. type: Content of: <section><para>
#: en/mcc-networkservices.xml:15
msgid ""
"This screen and the one for <emphasis>Sharing</emphasis> are only visible if "
"the <emphasis>drakwizard</emphasis> package is installed. You can choose "
"between several tools to set up different servers. Click on a link below or "
"on <xref linkend=\"mcc-sharing\"/>to learn more."
msgstr ""
"Dit scherm en dat voor <emphasis>Bronnen delen</emphasis> zijn alleen "
"zichtbaar als het <emphasis>drakwizard</emphasis>-pakket geïnstalleerd is. U "
"kunt kiezen tussen verschillende tools om verscheidene servers te "
"configureren. Klik op een link hieronder of op <xref linkend=\"mcc-sharing\"/"
">voor meer informatie."

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-networkservices.xml:19
msgid "<xref linkend=\"drakwizard_dhcp\"/>"
msgstr "<xref linkend=\"drakwizard_dhcp\"/>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-networkservices.xml:23
msgid "<xref linkend=\"drakwizard_bind\"/>"
msgstr "<xref linkend=\"drakwizard_bind\"/>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-networkservices.xml:27
msgid "<xref linkend=\"drakwizard_squid\"/>"
msgstr "<xref linkend=\"drakwizard_squid\"/>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-networkservices.xml:31
msgid "<xref linkend=\"drakwizard_ntp\"/>"
msgstr "<xref linkend=\"drakwizard_ntp\"/>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-networkservices.xml:35
msgid "<xref linkend=\"drakwizard_sshd\"/>"
msgstr "<xref linkend=\"drakwizard_sshd\"/>"

#. type: Content of: <section><info><title>
#: en/mcc-networksharing.xml:4
msgid "Network Sharing"
msgstr "Gedeeld netwerk"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/mcc-networksharing.xml:9
msgid "mcc-networksharing.png"
msgstr "mcc-networksharing.png"

#. type: Content of: <section><para>
#: en/mcc-networksharing.xml:13
msgid ""
"In this screen you can choose between several tools for sharing drives and "
"directories. Click on a link below to learn more."
msgstr ""
"In dit scherm kunt u kiezen tussen verschillende tools voor het delen van "
"stations en mappen. Klik op een link hieronder voor meer informatie."

#. type: Content of: <section><orderedlist><listitem><orderedlist><title>
#: en/mcc-networksharing.xml:17
msgid "Configure Windows(R) shares"
msgstr "Gedeelde Windows(R)-bronnen configureren"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-networksharing.xml:18
msgid "<xref linkend=\"diskdrake--smb\"></xref>"
msgstr "<xref linkend=\"diskdrake--smb\"></xref>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-networksharing.xml:19
msgid ""
"<xref linkend=\"draksambashare\"></xref><emphasis> = Share drives and "
"directories with Windows (SMB) systems</emphasis>"
msgstr ""
"<xref linkend=\"draksambashare\"></xref><emphasis> = Stations en mappen "
"delen met Windows (SMB)-systemen</emphasis>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><title>
#: en/mcc-networksharing.xml:22
msgid "Configure NFS shares"
msgstr "Gedeelde NFS-bronnen beheren"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-networksharing.xml:23
msgid "<xref linkend=\"diskdrake--nfs\"></xref>"
msgstr "<xref linkend=\"diskdrake--nfs\"></xref>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-networksharing.xml:24
msgid "<xref linkend=\"draknfs\"></xref>"
msgstr "<xref linkend=\"draknfs\"></xref>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><title>
#: en/mcc-networksharing.xml:27
msgid "Configure WebDAV shares"
msgstr "Toegang tot gedeelde stations en mappen over WebDAV"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-networksharing.xml:28
msgid "<xref linkend=\"diskdrake--dav\"></xref>"
msgstr "<xref linkend=\"diskdrake--dav\"></xref>"

#. type: Content of: <section><info><title>
#: en/mcc-network.xml:3
msgid "Network and Internet"
msgstr "Netwerk en Internet"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/mcc-network.xml:8
msgid "mcc-network.png"
msgstr "mcc-network.png"

#. type: Content of: <section><para>
#: en/mcc-network.xml:12
msgid ""
"In this screen you can choose between several network tools. Click on a link "
"below to learn more."
msgstr ""
"In dit scherm kunt u kiezen tussen verschillende netwerk tools. Klik op een "
"link hieronder voor meer informatie."

#. type: Content of: <section><orderedlist><listitem><orderedlist><title>
#: en/mcc-network.xml:18
msgid "Manage your network devices"
msgstr "Netwerkapparaten beheren"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-network.xml:21
msgid "<xref linkend=\"draknetcenter\"/>"
msgstr "<xref linkend=\"draknetcenter\"/>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-network.xml:25
msgid "<xref linkend=\"drakconnect\"/>"
msgstr "<xref linkend=\"drakconnect\"/>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-network.xml:29
msgid "<xref linkend=\"drakconnect--del\"/>"
msgstr "<xref linkend=\"drakconnect--del\"/>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><title>
#: en/mcc-network.xml:36
msgid "Personalize and Secure your network"
msgstr "Persoonlijke netwerkinstellingen en -beveiliging"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-network.xml:39
msgid "<xref linkend=\"drakproxy\"/>"
msgstr "<xref linkend=\"drakproxy\"/>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-network.xml:43
msgid "<xref linkend=\"drakgw\"/>"
msgstr "<xref linkend=\"drakgw\"/>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-network.xml:47
msgid "<xref linkend=\"draknetprofile\"/>"
msgstr "<xref linkend=\"draknetprofile\"/>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-network.xml:51
msgid "<xref linkend=\"drakvpn\"/>"
msgstr "<xref linkend=\"drakvpn\"/>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-network.xml:61
msgid "<xref linkend=\"drakhosts\"/>"
msgstr "<xref linkend=\"drakhosts\"/>"

#. type: Content of: <section><orderedlist><title>
#: en/mcc-security.xml:5 en/mcc-security.xml:18
msgid "Security"
msgstr "Beveiliging"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/mcc-security.xml:10
msgid "mcc-security.png"
msgstr "mcc-security.png"

#. type: Content of: <section><para>
#: en/mcc-security.xml:16
msgid ""
"In this screen you can choose between several security tools. Click on a "
"link below to learn more."
msgstr ""
"In dit scherm kunt u kiezen tussen verschillende beveiligingstools. Klik "
"hieronder op een link voor meer informatie."

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-security.xml:20
msgid ""
"<xref linkend=\"msecgui\"/><emphasis> = Configure system security, "
"permissions and audit</emphasis>"
msgstr ""
"<xref linkend=\"msecgui\"/><emphasis> = Beveiliging, rechten en audit van "
"het systeem afregelen</emphasis>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-security.xml:25
msgid "<xref linkend=\"drakfirewall\"/>"
msgstr "<xref linkend=\"drakfirewall\"/>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-security.xml:29
msgid "<xref linkend=\"draksec\"/>"
msgstr "<xref linkend=\"draksec\"/>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-security.xml:33
msgid "<xref linkend=\"drakinvictus\"/>"
msgstr "<xref linkend=\"drakinvictus\"/>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-security.xml:37
msgid "<xref linkend=\"drakguard\"/>"
msgstr "<xref linkend=\"drakguard\"/>"

#. type: Content of: <section><orderedlist><title>
#: en/mcc-sharing.xml:4 en/mcc-sharing.xml:17
msgid "Sharing"
msgstr "Bronnen delen"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/mcc-sharing.xml:9
msgid "mcc-sharing.png"
msgstr "mcc-sharing.png"

#. type: Content of: <section><para>
#: en/mcc-sharing.xml:15
msgid ""
"This screen and the one for <emphasis>Network Services</emphasis> are only "
"visible if the <emphasis>drakwizard</emphasis> package is installed. You can "
"choose between several tools to set up different servers. Click on a link "
"below or on <xref linkend=\"mcc-networkservices\"/>to learn more."
msgstr ""
"Dit scherm en dat voor <emphasis>Networkdiensten</emphasis> zijn alleen "
"zichtbaar als het <emphasis>drakwizard</emphasis>-pakket geïnstalleerd is. U "
"kunt kiezen tussen verschillende tools om verscheidene servers te "
"configureren. Klik op een link hieronder of op <xref linkend=\"mcc-"
"networkservices\"/> voor meer informatie."

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-sharing.xml:19
msgid "<xref linkend=\"drakwizard_proftpd\"/>"
msgstr "<xref linkend=\"drakwizard_proftpd\"/>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/mcc-sharing.xml:23
msgid "<xref linkend=\"drakwizard_apache2\"/>"
msgstr "<xref linkend=\"drakwizard_apache2\"/>"

#. type: Content of: <section><info><title>
#: en/mcc-system.xml:4
msgid "System"
msgstr "Systeem"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/mcc-system.xml:9
msgid "mcc-system.png"
msgstr "mcc-system.png"

#. type: Content of: <section><para>
#: en/mcc-system.xml:13
msgid ""
"In this screen you can choose between several system and administration "
"tools. Click on a link below to learn more."
msgstr ""
"In dit scherm kunt u kiezen tussen verschillende tools voor systeemdiensten "
"en -beheer. Klik op een link hieronder voor meer informatie."

#. type: Content of: <section><orderedlist><listitem><orderedlist><title>
#: en/mcc-system.xml:18
msgid "Manage system services"
msgstr "Systeemdiensten beheren"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-system.xml:20
msgid "<xref linkend=\"drakauth\"></xref>"
msgstr "<xref linkend=\"drakauth\"></xref>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-system.xml:24
msgid "<xref linkend=\"drakxservices\"></xref>"
msgstr "<xref linkend=\"drakxservices\"></xref>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-system.xml:28
msgid "<xref linkend=\"drakfont\"></xref>"
msgstr "<xref linkend=\"drakfont\"></xref>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><title>
#: en/mcc-system.xml:35
msgid "Localization"
msgstr "Regionaal"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-system.xml:37
msgid "<xref linkend=\"drakclock\"></xref>"
msgstr "<xref linkend=\"drakclock\"></xref>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-system.xml:41
msgid "<xref linkend=\"localedrake\"></xref>"
msgstr "<xref linkend=\"localedrake\"></xref>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><title>
#: en/mcc-system.xml:48
msgid "Administration tools"
msgstr "Beheerprogramma's"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-system.xml:50
msgid "<xref linkend=\"logdrake\"></xref>"
msgstr "<xref linkend=\"logdrake\"></xref>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-system.xml:54
msgid "<xref linkend=\"drakconsole\"></xref>"
msgstr "<xref linkend=\"drakconsole\"></xref>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-system.xml:58
msgid ""
"<xref linkend=\"userdrake\"></xref><emphasis> = Manage users on system</"
"emphasis>"
msgstr ""
"<xref linkend=\"userdrake\"></xref><emphasis> = Gebruikers op het systeem "
"beheren</emphasis>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-system.xml:62
msgid "<xref linkend=\"transfugdrake\"></xref>"
msgstr "<xref linkend=\"transfugdrake\"></xref>"

#. type: Content of: <section><orderedlist><listitem><orderedlist><listitem><para>
#: en/mcc-system.xml:66
msgid "<xref linkend=\"draksnapshot-config\"></xref>"
msgstr "<xref linkend=\"draksnapshot-config\"></xref>"

#. type: Content of: <article><info><title>
#: en/MCC.xml:4
msgid "Mageia Control Center"
msgstr "Mageia Configuratiecentrum"

#. type: Content of: <article><info><cover><para>
#: en/MCC.xml:6
msgid ""
"The texts and screenshots in this manual are available under the CC BY-SA "
"3.0 license <link ns6:href=\"http://creativecommons.org/licenses/by-sa/3.0/"
"\">http://creativecommons.org/licenses/by-sa/3.0/</link>."
msgstr ""
"De teksten en de screenshots in deze handleiding zijn beschikbaar onder de "
"CC BY-SA 3.0 licentie <link ns6:href=\"http://creativecommons.org/licenses/"
"by-sa/3.0/\">http://creativecommons.org/licenses/by-sa/3.0/</link>."

#. type: Content of: <article><info><cover><para>
#: en/MCC.xml:9
msgid ""
"This manual was produced with the help of the <link ns6:href=\"http://www."
"calenco.com\">Calenco CMS</link> developed by <link ns6:href=\"http://www."
"neodoc.biz\">NeoDoc</link>."
msgstr ""
"Deze handleiding werd geproduceerd met behulp van het <link ns6:href="
"\"http://www.calenco.com\">Calenco CMS</link>, ontwikkeld door <link ns6:"
"href=\"http://www.neodoc.biz\">NeoDoc</link>."

#. type: Content of: <article><info><cover><para>
#: en/MCC.xml:11
msgid ""
"It was written by volunteers in their free time. Please contact <link ns6:"
"href=\"https://wiki.mageia.org/en/Documentation_team\">Documentation Team</"
"link>, if you would like to help improve this manual."
msgstr ""
"Ze werd door vrijwilligers in hun vrije tijd geschreven. Neem a.u.b. contact "
"op met het <link ns6:href=\"https://wiki.mageia.org/en/Documentation_team"
"\">Documentatie Team</link>, als u mee wilt helpen deze handleiding te "
"verbeteren."

#. type: Content of: <section><info><title>
#: en/mgaapplet-config.xml:3
msgid "Configure updates frequency"
msgstr "Bijwerkfrequentie instellen"

#. type: Content of: <section><info><subtitle>
#: en/mgaapplet-config.xml:5
msgid "mgaapplet-config"
msgstr "mgaapplet-config"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/mgaapplet-config.xml:10
msgid "mgaapplet-config.png"
msgstr "mgaapplet-config.png"

#. type: Content of: <section><para><footnote><para>
#: en/mgaapplet-config.xml:15
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">mgaapplet-config</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">mgaapplet-config</emphasis> te typen."

#. type: Content of: <section><para>
#: en/mgaapplet-config.xml:14
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> is present in the Mageia "
"Control Center under the tab <emphasis role=\"bold\">Software management</"
"emphasis>. It is also available by a <guimenu>right click / Updates "
"configuration</guimenu> on the red icon <placeholder type=\"inlinemediaobject"
"\" id=\"1\"/> in the system tray."
msgstr ""

#. type: Content of: <section><para>
#: en/mgaapplet-config.xml:27
msgid ""
"The first slider allows you to change how frequently Mageia will check for "
"updates and the second the delay after booting before the first check.  The "
"check box gives you the option to be warned when a new Mageia release is out."
msgstr ""

#. type: Content of: <section><info><title>
#: en/mousedrake.xml:3
msgid "Set up the pointer device (mouse, touchpad)"
msgstr "Het aanwijsapparaat (muis, touchpad) instellen"

#. type: Content of: <section><info><subtitle>
#: en/mousedrake.xml:6
msgid "mousedrake"
msgstr "mousedrake"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/mousedrake.xml:11
msgid "mousedrake.png"
msgstr "mousedrake.png"

#. type: Content of: <section><para><footnote><para>
#: en/mousedrake.xml:15
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">mousedrake</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">mousedrake</emphasis> te typen."

#. type: Content of: <section><para>
#: en/mousedrake.xml:15
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> is present in the Mageia "
"Control Center under the tab <emphasis role=\"bold\">Hardware</emphasis>."
msgstr ""

#. type: Content of: <section><para>
#: en/mousedrake.xml:20
msgid ""
"As you must have a mouse to install Mageia, that one is already installed by "
"Drakinstall. This tool allows installation of another mouse."
msgstr ""

#. type: Content of: <section><para>
#: en/mousedrake.xml:23
msgid ""
"The mice are sorted by connection type and then by model. Select your mouse "
"and click on <guibutton>OK</guibutton>. Most of the time \"Universal / Any "
"PS/2 &amp; USB mice\" is suitable for a recent mouse. The new mouse is "
"immediately taken into account."
msgstr ""

#. type: Content of: <section><info><title>
#: en/msecgui.xml:3
msgid "MSEC: System Security and Audit"
msgstr "MSEC: systeembeveiliging en audit"

#. type: Content of: <section><info><subtitle>
#: en/msecgui.xml:5
msgid "msecgui"
msgstr "msecgui"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/msecgui.xml:13
msgid "msecgui.png"
msgstr "msecgui.png"

#. type: Content of: <section><section><para><footnote><para>
#: en/msecgui.xml:21
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">msecgui</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">msecgui</emphasis> te typen."

#. type: Content of: <section><section><para>
#: en/msecgui.xml:21
msgid ""
"msecgui<placeholder type=\"footnote\" id=\"0\"/> is a graphic user interface "
"for msec that allows to configure your system security according to two "
"approaches:"
msgstr ""
"msecgui<placeholder type=\"footnote\" id=\"0\"/> is een grafische "
"gebruikersinterface voor msec die u in staat stelt uw systeembeveiliging te "
"configureren via twee benaderingen:"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/msecgui.xml:28
msgid ""
"It sets the system behaviour, msec imposes modifications to the system to "
"make it more secure."
msgstr ""
"Het configureert het gedrag van het systeem, het past het systeem aan om het "
"veiliger te maken."

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/msecgui.xml:33
msgid ""
"It carries on periodic checks automatically on the system in order to warn "
"you if something seems dangerous."
msgstr ""
"Het voert periodieke controles uit van het systeem om u te waarschuwen als "
"iets gevaarlijk lijkt."

#. type: Content of: <section><section><para>
#: en/msecgui.xml:38
msgid ""
"msec uses the concept of \"security levels\" which are intended to configure "
"a set of system permissions, which can be audited for changes or "
"enforcement. Several of them are proposed by Mageia, but you can define your "
"own customised security levels."
msgstr ""

#. type: Content of: <section><section><title>
#: en/msecgui.xml:45
msgid "Overview tab"
msgstr "Overzichtstabblad"

#. type: Content of: <section><section><para>
#: en/msecgui.xml:47
msgid "See the screenshot above"
msgstr "Zie de schermafbeelding hierboven"

#. type: Content of: <section><section><para>
#: en/msecgui.xml:49
msgid ""
"The first tab takes up the list of the different security tools with a "
"button on the right side to configure them:"
msgstr ""
"Het eerste tabblad bevat de lijst met verschillende beveiligingstools, met "
"een knop aan de rechterzijde om ze te configureren:"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/msecgui.xml:54
msgid ""
"Firewall, also found in the MCC / Security / Set up your personal firewall"
msgstr ""
"Firewall, ook aanwezig in MCC / Beveiliging / Uw persoonlijke firewall "
"instellen"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/msecgui.xml:59
msgid "Updates, also found in MCC / Software Management / Update your system"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/msecgui.xml:64
msgid "msec itself with some information:"
msgstr "msec zelf met wat informatie:"

#. type: Content of: <section><section><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/msecgui.xml:68
msgid "enabled or not"
msgstr "geactiveerd of niet"

#. type: Content of: <section><section><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/msecgui.xml:72
msgid "the configured Base security level"
msgstr "het ingestelde basisbeveiligingsniveau"

#. type: Content of: <section><section><itemizedlist><listitem><itemizedlist><listitem><para>
#: en/msecgui.xml:76
msgid ""
"the date of the last Periodic checks and a button to see a detailed report "
"and another button to execute the checks just now."
msgstr ""

#. type: Content of: <section><section><title>
#: en/msecgui.xml:86
msgid "Security settings tab"
msgstr "Beveiligingsinstellingen-tabblad"

#. type: Content of: <section><section><para>
#: en/msecgui.xml:88
msgid ""
"A click on the second tab or on the Security <guibutton>Configure</"
"guibutton> button leads to the same screen shown below."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/msecgui.xml:94
msgid "msecgui2.png"
msgstr "msecgui2.png"

#. type: Content of: <section><section><section><title>
#: en/msecgui.xml:100
msgid "Basic security tab"
msgstr "Basisbeveiliging-tabblad"

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:103
msgid "<emphasis role=\"underline\">Security levels:</emphasis>"
msgstr "<emphasis role=\"bold\">Beveiligingsniveaus:</emphasis>"

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:106
msgid ""
"After having checked the box <guilabel>Enable MSEC tool</guilabel>, this tab "
"allows you by a double click to choose the security level that appears then "
"in bold. If the box is not checked, the level « none » is applied. The "
"following levels are available:"
msgstr ""

#. type: Content of: <section><section><section><orderedlist><listitem><para>
#: en/msecgui.xml:113
msgid ""
"Level <emphasis role=\"bold\">none</emphasis>. This level is intended if you "
"do not want to use msec to control system security, and prefer tuning it on "
"your own. It disables all security checks and puts no restrictions or "
"constraints on system configuration and settings. Please use this level only "
"if you are knowing what you are doing, as it would leave your system "
"vulnerable to attack."
msgstr ""

#. type: Content of: <section><section><section><orderedlist><listitem><para>
#: en/msecgui.xml:122
msgid ""
"Level <emphasis role=\"bold\">standard</emphasis>. This is the default "
"configuration when installed and is intended for casual users.  It "
"constrains several system settings and executes daily security checks which "
"detect changes in system files, system accounts, and vulnerable directory "
"permissions. (This level is similar to levels 2 and 3 from past msec "
"versions)."
msgstr ""

#. type: Content of: <section><section><section><orderedlist><listitem><para>
#: en/msecgui.xml:131
msgid ""
"Level <emphasis role=\"bold\">secure</emphasis>. This level is intended when "
"you want to ensure your system is secure, yet usable.  It further restricts "
"system permissions and executes more periodic checks. Moreover, access to "
"the system is more restricted. (This level is similar to levels 4 (High) and "
"5 (Paranoid) from old msec versions)."
msgstr ""

#. type: Content of: <section><section><section><orderedlist><listitem><para>
#: en/msecgui.xml:140
msgid ""
"Besides those levels, different task-oriented security are also provided, "
"such as the <emphasis role=\"bold\">fileserver </emphasis>, <emphasis role="
"\"bold\">webserver</emphasis> and <emphasis role=\"bold\">netbook</emphasis> "
"levels. Such levels attempt to pre-configure system security according to "
"the most common use cases."
msgstr ""

#. type: Content of: <section><section><section><orderedlist><listitem><para>
#: en/msecgui.xml:149
msgid ""
"The last two levels called <emphasis role=\"bold\">audit_daily </emphasis> "
"and <emphasis role=\"bold\">audit_weekly</emphasis> are not really security "
"levels but rather tools for periodic checks only."
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:156
msgid ""
"These levels are saved in <filename>etc/security/msec/level.&lt;levelname></"
"filename>. You can define your own customised security levels, saving them "
"into specific files called <filename>level.&lt;levelname></filename>, placed "
"into the folder <filename>etc/security/msec/.</filename> This function is "
"intended for power users which require a customised or more secure system "
"configuration."
msgstr ""

#. type: Content of: <section><section><section><caution><para>
#: en/msecgui.xml:165
msgid ""
"Keep in mind that user-modified parameters take precedence over default "
"level settings."
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:170
msgid "<emphasis role=\"underline\">Security alerts:</emphasis>"
msgstr "<emphasis role=\"bold\">Beveiligingswaarschuwingen:</emphasis>"

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:173
msgid ""
"If you check the box <guibutton>Send security alerts by email to:</"
"guibutton>, the security alerts generated by msec are going to be sent by "
"local e-mail to the security administrator named in the nearby field. You "
"can fill either a local user or a complete e-mail address (the local e-mail "
"and the e-mail manager must be set accordingly). At last, you can receive "
"the security alerts directly on your desktop.  Check the relevant box to "
"enable it."
msgstr ""

#. type: Content of: <section><section><section><important><para>
#: en/msecgui.xml:182
msgid ""
"It is strongly advisable to enable the security alerts option in order to "
"immediately inform the security administrator of possible security problems. "
"If not, the administrator will have to regularly check the logs files "
"available in <filename>/var/log/security.</filename>"
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:188
msgid "<emphasis role=\"underline\">Security options:</emphasis>"
msgstr "<emphasis role=\"bold\">Beveiligingsopties:</emphasis>"

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:190
msgid ""
"Creating a customised level is not the only way to customise the computer "
"security, it is also possible to use the tabs presented here after to change "
"any option you want. Current configuration for msec is stored in <filename>/"
"etc/security/msec/security.conf</filename>. This file contains the current "
"security level name and the list of all the modifications done to the "
"options."
msgstr ""

#. type: Content of: <section><section><section><title>
#: en/msecgui.xml:199
msgid "System security tab"
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:201
msgid ""
"This tab displays all the security options on the left side column, a "
"description in the centre column, and their current values on the right side "
"column."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><section><mediaobject><imageobject><imagedata>
#: en/msecgui.xml:207
msgid "msecgui3.png"
msgstr "msecgui3.png"

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:211
msgid ""
"To modify an option, double click on it and a new window appears (see "
"screenshot below). It displays the option name, a short description, the "
"actual and default values, and a drop down list where the new value can be "
"selected. Click on the <guibutton>OK</guibutton> button to validate the "
"choice."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><section><mediaobject><imageobject><imagedata>
#: en/msecgui.xml:219
msgid "msecgui11.png"
msgstr "msecgui11.png"

#. type: Content of: <section><section><section><caution><para>
#: en/msecgui.xml:224
msgid ""
"Do not forget when leaving msecgui to save definitively your configuration "
"using the menu <guimenu>File -> Save the configuration</guimenu>. If you "
"have changed the settings, msecgui allows you to preview the changes before "
"saving them."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><section><mediaobject><imageobject><imagedata>
#: en/msecgui.xml:232
msgid "msecgui10.png"
msgstr "msecgui10.png"

#. type: Content of: <section><section><section><title>
#: en/msecgui.xml:238
msgid "Network security"
msgstr "Netwerkbeveiliging"

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:240
msgid ""
"This tab displays all the network options and works like the previous tab"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><section><mediaobject><imageobject><imagedata>
#: en/msecgui.xml:245
msgid "msecgui4.png"
msgstr "msecgui4.png"

#. type: Content of: <section><section><section><title>
#: en/msecgui.xml:251
msgid "Periodic checks tab"
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:253
msgid ""
"Periodic checks aim to inform the security administrator by means of "
"security alerts of all situations msec thinks potentially dangerous."
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:257
msgid ""
"This tab displays all the periodic checks done by msec and their frequency "
"if the box <guibutton>Enable periodic security checks</guibutton> is "
"checked. Changes are done like in the previous tabs."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><section><mediaobject><imageobject><imagedata>
#: en/msecgui.xml:264
msgid "msecgui5.png"
msgstr "msecgui5.png"

#. type: Content of: <section><section><section><title>
#: en/msecgui.xml:270
msgid "Exceptions tab"
msgstr "Uitzonderingentabblad"

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:272
msgid ""
"Sometimes alert messages are due to well known and wanted situations. In "
"these cases they are useless and wasted time for the administrator. This tab "
"allows you to create as many exceptions as you want to avoid unwanted alert "
"messages. It is obviously empty at the first msec start. The screenshot "
"below shows four exceptions."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><section><mediaobject><imageobject><imagedata>
#: en/msecgui.xml:280
msgid "msecgui6.png"
msgstr "msecgui6.png"

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:284
msgid ""
"To create an exception, click on the <guibutton>Add a rule</guibutton> button"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><section><mediaobject><imageobject><imagedata>
#: en/msecgui.xml:289
msgid "msecgui7.png"
msgstr "msecgui7.png"

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:293
msgid ""
"Select the wanted periodic check in the drop down list called "
"<guilabel>Check</guilabel> and then, enter the <guilabel>Exception</"
"guilabel> in the text area. Adding an exception is obviously not definitive, "
"you can either delete it using the <guibutton>Delete</guibutton> button of "
"the <guilabel>Exceptions</guilabel> tab or modify it with a double clicK."
msgstr ""

#. type: Content of: <section><section><section><title>
#: en/msecgui.xml:303
msgid "Permissions"
msgstr "Toegangsrechten"

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:304
msgid ""
"This tab is intended for file and directory permissions checking and "
"enforcement."
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:306
msgid ""
"Like for the security, msec owns different permissions levels (standard, "
"secure, ..), they are enabled accordingly with the chosen security level. "
"You can create your own customised permissions levels, saving them into "
"specific files called <filename>perm.&lt;levelname> </filename> placed into "
"the folder <filename>etc/security/msec/</filename> . This function is "
"intended for power users which require a customised configuration. It is "
"also possible to use the tab presented here after to change any permission "
"you want. Current configuration is stored in <filename>/etc/security/msec/"
"perms.conf.</filename> This file contains the list of all the modifications "
"done to the permissions."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><section><mediaobject><imageobject><imagedata>
#: en/msecgui.xml:318
msgid "msecgui8.png"
msgstr "msecgui8.png"

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:321
msgid ""
"Default permissions are visible as a list of rules (a rule per line). You "
"can see on the left side, the file or folder concerned by the rule, then the "
"owner, then the group and then the permissions given by the rule. If, for a "
"given rule:"
msgstr ""

#. type: Content of: <section><section><section><itemizedlist><listitem><para>
#: en/msecgui.xml:327
msgid ""
"the box <guilabel>Enforce</guilabel> is not checked, msec only checks if the "
"defined permissions for this rule are respected and sends an alert message "
"if not, but does not change anything."
msgstr ""

#. type: Content of: <section><section><section><itemizedlist><listitem><para>
#: en/msecgui.xml:333
msgid ""
"the box <guilabel>Enforce</guilabel> is checked, then msec will rule the "
"permissions respect at the first periodic check and overwrite the "
"permissions."
msgstr ""

#. type: Content of: <section><section><section><important><para>
#: en/msecgui.xml:337
msgid ""
"For this to work, the option CHECK_PERMS in the <emphasis role=\"bold"
"\">Periodic check tab</emphasis> must be configured accordingly."
msgstr ""

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:339
msgid ""
"To create a new rule, click on the <guibutton> Add a rule</guibutton> button "
"and fill the fields as shown in the example below. The joker * is allowed in "
"the <guilabel>File</guilabel> field. “current” means no modification."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><section><mediaobject><imageobject><imagedata>
#: en/msecgui.xml:345
msgid "msecgui9.png"
msgstr "msecgui9.png"

#. type: Content of: <section><section><section><para>
#: en/msecgui.xml:348
msgid ""
"Click on the <guibutton>OK</guibutton> button to validate the choice and do "
"not forget when leaving to save definitively your configuration using the "
"menu <guimenu>File -> Save the configuration</guimenu>. If you have changed "
"the settings, msecgui allows you to preview the changes before saving them."
msgstr ""

#. type: Content of: <section><section><section><note><para>
#: en/msecgui.xml:353
msgid ""
"It is also possible to create or modify the rules by editing the "
"configuration file <filename>/etc/security/msec/perms.conf</filename>."
msgstr ""

#. type: Content of: <section><section><section><caution><para>
#: en/msecgui.xml:356
msgid ""
"Changes in the <emphasis role=\"bold\">Permission tab</emphasis> (or "
"directly in the configuration file) are taken into account at the first "
"periodic check (see the option CHECK_PERMS in the <emphasis role=\"bold"
"\">Periodic checks tab</emphasis>). If you want them to be taken immediately "
"into account, use the msecperms command in a console with root rights. You "
"can use before, the msecperms -p command to know the permissions that will "
"be changed by msecperms."
msgstr ""

#. type: Content of: <section><section><section><caution><para>
#: en/msecgui.xml:363
msgid ""
"Do not forget that if you modify the permissions in a console or in a file "
"manager, for a file where the box <guilabel>Enforce </guilabel> is checked "
"in the <emphasis role=\"bold\">Permissions tab </emphasis>, msecgui will "
"write the old permissions back after a while, accordingly to the "
"configuration of the options CHECK_PERMS and CHECK_PERMS_ENFORCE in the "
"<emphasis role=\"bold\">Periodic Checks tab </emphasis>."
msgstr ""

#. type: Content of: <section><info><title>
#: en/otherMageiaTools.xml:4
msgid "Other Mageia Tools"
msgstr "Andere Mageia tools"

#. type: Content of: <section><para>
#: en/otherMageiaTools.xml:7
msgid ""
"There are more Mageia tools than those that can be started in the Mageia "
"Control Center. Click on a link below to learn more, or continue reading the "
"next pages."
msgstr ""
"Er zijn meer Mageia tools, dan die die in het Mageia Configuratiecentum "
"gestart kunnen worden. Klik op een link hieronder, of lees verder op de "
"volgende pagina's, voor meer informatie."

#. type: Content of: <section><orderedlist><listitem><para>
#: en/otherMageiaTools.xml:11
msgid "<xref linkend=\"drakbug\"/><emphasis>drakbug</emphasis>"
msgstr "<xref linkend=\"drakbug\"/><emphasis>drakbug</emphasis>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/otherMageiaTools.xml:16
msgid "<xref linkend=\"drakbug_report\"/><emphasis>drakbug_report </emphasis>"
msgstr "<xref linkend=\"drakbug_report\"/><emphasis>drakbug_report </emphasis>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/otherMageiaTools.xml:21
msgid "<xref linkend=\"lsnetdrake\"/><emphasis>TO BE WRITTEN </emphasis>"
msgstr "<xref linkend=\"lsnetdrake\"/><emphasis>TO BE WRITTEN </emphasis>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/otherMageiaTools.xml:25
msgid "<xref linkend=\"lspcidrake\"/>"
msgstr "<xref linkend=\"lspcidrake\"/>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/otherMageiaTools.xml:29
msgid "And more tools?"
msgstr "En meer tools?"

#. type: Content of: <section><info><title>
#: en/rpmdrake.xml:3
msgid "Software Management (Install and Remove Software)"
msgstr "Softwarebeheer (Software installeren en verwijderen)"

#. type: Content of: <section><info><subtitle>
#: en/rpmdrake.xml:6
msgid "rpmdrake"
msgstr "rpmdrake"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/rpmdrake.xml:11
msgid "rpmdrake.png"
msgstr "rpmdrake.png"

#. type: Content of: <section><section><title>
#: en/rpmdrake.xml:18
msgid "Introduction to rpmdrake"
msgstr "Introductie tot rpmdrake"

#. type: Content of: <section><section><para><footnote><para>
#: en/rpmdrake.xml:21
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">rpmdrake</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">rpmdrake</emphasis> te typen."

#. type: Content of: <section><section><para>
#: en/rpmdrake.xml:20
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/>, also known as drakrpm, "
"is a program for installing, uninstalling and updating packages. It is the "
"graphical user interface of URPMI. At each start up, it will check online "
"package lists (called 'media') downloaded straight from Mageia's official "
"servers, and will show you each time the latest applications and packages "
"available for your computer. A filter system allows you to display only "
"certain types of packages: you may display only installed applications (by "
"default), or only available updates. You can also view only not installed "
"packages. You can also search by the name of a package, or in the summaries "
"of descriptions or in the full descriptions of packages or in the file names "
"included in the packages."
msgstr ""
"Deze tool<placeholder type=\"footnote\" id=\"0\"/>, ook bekend als drakrpm, "
"is een programma voor het installeren, deïnstalleren en bijwerken van "
"pakketten. Het is de grafische gebruikersinterface van URPMI. Als het "
"gestart wordt zal het de online pakketlijsten ('media' genoemd) downloaden "
"van Mageia's officiële servers en zal het u de actuele applicaties of "
"pakketten laten zien die voor uw computer beschikbaar zijn. Een "
"filtersysteem maakt het mogelijk alleen een bepaald type pakketten te laten "
"zien, bijvoorbeeld alleen pakkettten met grafische schil (standaard), of "
"enkel geïnstalleerde of juist niet geïnstalleerde pakketten, of beschikbare "
"bijgewerkte pakketten. U kunt ook zoeken op de naam van een pakket, of in "
"samenvattingen, in omschrijvingen of in bestandsnamen van de pakketten."

#. type: Content of: <section><section><para>
#: en/rpmdrake.xml:35
msgid ""
"To work, rpmdrake needs the repositories to be configured with <xref linkend="
"\"drakrpm-edit-media\"/> ."
msgstr ""
"Alvorens rpmdrake kan werken, moeten eerst de mediabronnen geconfigureerd "
"worden met <xref linkend=\"drakrpm-edit-media\"/> ."

#. type: Attribute 'fileref' of: <section><section><important><para><mediaobject><imageobject><imagedata>
#: en/rpmdrake.xml:43
msgid "rpmdrake8.png"
msgstr ""

#. type: Content of: <section><section><important><para>
#: en/rpmdrake.xml:38
msgid ""
"During the installation, the configured repository is the medium used for "
"the installation, generally the DVD or CD. If you keep this medium, rpmdrake "
"will ask it each time you want to install a package, with this pop-up "
"window : <placeholder type=\"mediaobject\" id=\"0\"/>If the above message "
"annoys you and you have a good internet connection without too strict "
"download limit, it is wise to remove that medium and replace it by online "
"repositories thanks to <xref linkend=\"drakrpm-edit-media\"/> ."
msgstr ""

#. type: Content of: <section><section><important><para>
#: en/rpmdrake.xml:49
msgid ""
"Moreover, the online repositories are always up to date, contains much more "
"packages, and allow to update your installed packages."
msgstr ""

#. type: Content of: <section><section><title>
#: en/rpmdrake.xml:55
msgid "The main parts of the screen"
msgstr "De hoofddelen van het scherm"

#. type: Attribute 'fileref' of: <section><section><screenshot><mediaobject><imageobject><imagedata>
#: en/rpmdrake.xml:60
msgid "rpmdrake1.png"
msgstr "rpmdrake1.png"

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/rpmdrake.xml:67
msgid "<emphasis role=\"bold\">Package type filter:</emphasis>"
msgstr "<emphasis role=\"bold\">Pakketsoortfilter:</emphasis>"

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/rpmdrake.xml:69
msgid ""
"This filter allows you to display only certain types of packages. The first "
"time you start the manager, it only displays applications with a graphical "
"interface. You can display either all the packages and all their "
"dependencies and libraries or only package groups such as applications only, "
"updates only or backported packages from newer versions of Mageia."
msgstr ""
"Met dit filter kunt u bepaalde types pakketten laten weergeven. De eerste "
"keer dat u rpmdrake start, laat het alleen pakketten met een grafische schil "
"zien. U kunt kiezen voor het weergeven van \"Alle\" pakketten met alle "
"afhankelijkheden en bibliotheken of enkel pakketgroepen, zoals Alle "
"bijgewerkte paketten, of Backports (pakketten van een nieuwere Mageiaversie)."

#. type: Content of: <section><section><orderedlist><listitem><warning><para>
#: en/rpmdrake.xml:77
msgid ""
"The default filter setting is for new entrants to Linux or Mageia, who "
"probably do not want command line or specialist tools.  Since you're reading "
"this documentation, you're obviously interested in improving your knowledge "
"of Mageia, so it is best to set this filter to \"All\"."
msgstr ""
"De standaard instelling van dit filter is voor nieuwelingen, die nog niet "
"toe zijn aan de commandoregel of tools voor specialisten. Aangezien u deze "
"documentatie leest, bent u duidelijk geïnteresseerd in het vergroten van uw "
"kennis van Linux en Mageia, dus is het beter dit filter \"Alle\" te zetten."

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/rpmdrake.xml:86
msgid ""
"<firstterm> <emphasis role=\"bold\">Package state filter:</emphasis> </"
"firstterm>"
msgstr ""
"<firstterm> <emphasis role=\"bold\">Pakketstatusfilter:</emphasis> </"
"firstterm>"

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/rpmdrake.xml:89
msgid ""
"This filter allows you to view only the installed packages, only the "
"packages that are not installed or all of the packages, both installed and "
"not installed."
msgstr ""
"Met dit filter kunt u kiezen tussen enkel de geïnstalleerde pakketten, de "
"niet geïnstalleerde of alle pakketten (zowel de geïnstalleerde als de niet-"
"geïnstalleerde."

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/rpmdrake.xml:95
msgid "<emphasis role=\"bold\">Search mode:</emphasis>"
msgstr "<emphasis role=\"bold\">Zoekmodus:</emphasis>"

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/rpmdrake.xml:97
msgid ""
"Click on this icon to search through the package names, through their "
"summaries, through their complete description or through the files included "
"in the packages."
msgstr ""
"Klik op de verrekijker om te zoeken op (deel van) de naam, omschrijving of "
"samenvatting van een pakket, of op een bestand dat door een pakket wordt "
"geïnstalleerd."

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/rpmdrake.xml:103
msgid "<emphasis role=\"bold\">\"Find\" box:</emphasis>"
msgstr "<emphasis role=\"bold\">\"Zoeken\" box:</emphasis>"

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/rpmdrake.xml:105
msgid ""
"Enter here one or more key words. If you want to use more than one keyword "
"for searching use '|' between keywords, e.g. To search for \"mplayer\" and "
"\"xine\" at the same time type 'mplayer | xine'."
msgstr ""
"Voer hier een of meer zoektermen in. Als u meer dan één zoekterm "
"wiltgebruiken, zet dan een '|' tussen de woorden, bijv. 'mplayer | xine' om "
"gelijktijdig naar \"mplayer\" en \"xine\" te zoeken."

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/rpmdrake.xml:111
msgid "<emphasis role=\"bold\">Erase all:</emphasis>"
msgstr "<emphasis role=\"bold\">Alles wissen:</emphasis>"

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/rpmdrake.xml:113
msgid ""
"This icon can erase in one click all the key words entered in the \"Find\" "
"box ."
msgstr "Met het aanklikken van dit icoon wist u alles in het zoekveld"

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/rpmdrake.xml:118
msgid "<emphasis role=\"bold\">Categories list:</emphasis>"
msgstr "<emphasis role=\"bold\">Groepenlijst:</emphasis>"

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/rpmdrake.xml:120
msgid ""
"This side bar groups all applications and packages into clear categories and "
"sub categories."
msgstr ""
"Dit zijpaneel groepeert alle toepassingen en pakketten in duidelijke "
"categorieën en subcategorieën."

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/rpmdrake.xml:125
msgid "<emphasis role=\"bold\">Description panel:</emphasis>"
msgstr "<emphasis role=\"bold\">Omschrijvingspaneel:</emphasis>"

#. type: Content of: <section><section><orderedlist><listitem><para>
#: en/rpmdrake.xml:127
msgid ""
"This panel displays the package's name, its summary and complete "
"description. It displays many useful elements about the selected package. It "
"can also show precise details about the package, the files included in the "
"package as well as a list of the last changes made by the maintainer."
msgstr ""
"Dit paneel geeft de naam van het pakket weer, zijn samenvatting en complete "
"omschrijving. Het geeft veel bruikbare details over het pakket. Het kan ook "
"preciese informatie geven over de bestanden die met het pakket worden "
"geïnstalleerd alsook over de laatste wijzigingen door de ontwikkelaar of de "
"pakketbouwer."

#. type: Content of: <section><section><title>
#: en/rpmdrake.xml:137
msgid "The status column"
msgstr "De statuskolom"

#. type: Content of: <section><section><para>
#: en/rpmdrake.xml:139
msgid ""
"Once you correctly set the filters, you can find your software either by "
"category (in area 6 above) or by name/summary/description using area 4. A "
"list of packages fulfilling your query and, don't forget, the chosen medium "
"is shown with different status markers according to whether each package is "
"installed/not installed/an update... To change this status, just check or "
"uncheck the box before the package name and click on <guibutton>Apply</"
"guibutton>."
msgstr ""
"Zodra u de filters goed ingesteld hebt, kunt u uw software vinden via de "
"groep (in vlak 6 hierboven) of via naam/samenvatting/omschrijving in vlak 4. "
"U krijgt een lijst van pakketten te zien die aan uw zoekopdracht voldoen en, "
"niet te vergeten, voorzien zijn van verschillende statusymbolen die aangeven "
"of het pakket is geïnstalleerd/niet geïnstalleerd/bijgewerkt... Om de status "
"te veranderen is het voldoende een vinkje te zetten of weg te halen in het "
"hokje voor de pakketnaam en op <guibutton>Toepassen</guibutton> te klikken."

#. type: Content of: <section><section><para><table><tgroup><thead><row><entry>
#: en/rpmdrake.xml:155
msgid "Icon"
msgstr "Icoon"

#. type: Content of: <section><section><para><table><tgroup><thead><row><entry>
#: en/rpmdrake.xml:157
msgid "Legend"
msgstr "Legenda"

#. type: Attribute 'fileref' of: <section><section><para><table><tgroup><tbody><row><entry><mediaobject><imageobject><imagedata>
#: en/rpmdrake.xml:165
msgid "rpmdrake2.png"
msgstr "../rpmdrake2.png"

#. type: Content of: <section><section><para><table><tgroup><tbody><row><entry>
#: en/rpmdrake.xml:169
msgid "This package is already installed"
msgstr "Dit pakket is al geïnstalleerd"

#. type: Attribute 'fileref' of: <section><section><para><table><tgroup><tbody><row><entry><mediaobject><imageobject><imagedata>
#: en/rpmdrake.xml:175
msgid "rpmdrake3.png"
msgstr "../rpmdrake3.png"

#. type: Content of: <section><section><para><table><tgroup><tbody><row><entry>
#: en/rpmdrake.xml:179
msgid "This package will be installed"
msgstr "Dit pakket zal geïnstalleerd worden"

#. type: Attribute 'fileref' of: <section><section><para><table><tgroup><tbody><row><entry><mediaobject><imageobject><imagedata>
#: en/rpmdrake.xml:185
msgid "rpmdrake4.png"
msgstr "../rpmdrake4.png"

#. type: Content of: <section><section><para><table><tgroup><tbody><row><entry>
#: en/rpmdrake.xml:189
msgid "This package cannot be modified"
msgstr "Dit pakket kan niet gewijzigd worden"

#. type: Attribute 'fileref' of: <section><section><para><table><tgroup><tbody><row><entry><mediaobject><imageobject><imagedata>
#: en/rpmdrake.xml:195
msgid "rpmdrake5.png"
msgstr "../rpmdrake5.png"

#. type: Content of: <section><section><para><table><tgroup><tbody><row><entry>
#: en/rpmdrake.xml:199
msgid "This package is an update"
msgstr "Dit is een bijgewerkt pakket"

#. type: Attribute 'fileref' of: <section><section><para><table><tgroup><tbody><row><entry><mediaobject><imageobject><imagedata>
#: en/rpmdrake.xml:205
msgid "rpmdrake6.png"
msgstr "../rpmdrake6.png"

#. type: Content of: <section><section><para><table><tgroup><tbody><row><entry>
#: en/rpmdrake.xml:209
msgid "This package will be uninstalled"
msgstr "Dit pakket zal gedeïnstalleerd worden"

#. type: Content of: <section><section><para>
#: en/rpmdrake.xml:147
msgid "<placeholder type=\"table\" id=\"0\"/>"
msgstr "<placeholder type=\"table\" id=\"0\"/>"

#. type: Content of: <section><section><para>
#: en/rpmdrake.xml:215
msgid "Examples in the screenshot above:"
msgstr "Voorbeelden in de schermafbeelding hierboven:"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/rpmdrake.xml:219
msgid ""
"If I uncheck digikam (the green arrow tell us it is installed), the status "
"icon will go red with an up arrow and it will be uninstalled when clicking "
"on <guibutton>Apply</guibutton>."
msgstr ""
"Aan de icoon met groene pijl bij digikam kan men zien dat het pakket "
"geïnstalleerd is. Haalt men het vinkje bij digikam weg, dan draait de pijl "
"om en wordt de icoon rood. Het pakket zal verwijderd worden als men op "
"<guibutton>Toepassen</guibutton> klikt."

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/rpmdrake.xml:227
msgid ""
"If I check qdigidoc (which is not installed, see the status), the orange "
"with a down arrow status icon will appear and and it will be installed when "
"clicking on <guibutton>Apply</guibutton>."
msgstr ""
"Als ik qdigidoc aanvink (dat niet geïnstalleerd is, zie de status), zal het "
"oranje icoon met een pijl naar beneden verschijnen en zal het geïnstalleerd "
"worden zodra op <guibutton>Toepassen</guibutton> geklikt wordt."

#. type: Content of: <section><section><title>
#: en/rpmdrake.xml:235
msgid "The dependencies"
msgstr "De afhankelijkheden"

#. type: Attribute 'fileref' of: <section><section><screenshot><mediaobject><imageobject><imagedata>
#: en/rpmdrake.xml:240
msgid "rpmdrake7.png"
msgstr "rpmdrake7.png"

#. type: Content of: <section><section><para>
#: en/rpmdrake.xml:245
msgid ""
"Some packages need other packages called dependencies in order to work. They "
"are for example libraries or tools. In this case, Rpmdrake displays an "
"information window allowing you to choose whether to accept the selected "
"dependencies, cancel the operation or get more information (see above). It "
"may also happen that various packages are able to provide the needed "
"library, in which case rpmdrake displays the list of alternatives with a "
"button to get more information and another button to choose which package to "
"install."
msgstr ""
"Sommige pakketten hebben andere pakketten, afhankelijkheden genaamd, nodig "
"om te kunnen werken. Dit zijn bijv. bibliotheken of tools. In dat geval laat "
"rpmdrake een informatievenster zien (zie boven), waarin u kunt kiezen of u "
"de gevonden afhankelijkheden aanvaardt, het installeren annuleert, of meer "
"informatie wilt. Het komt ook voor dat verschillende pakketten de benodigde "
"bibliotheek kunnen leveren, in dat geval laat rpmdrake een lijst met "
"alternatieven zien met een knop om te kiezen welke daarvan te installeren en "
"een andere knop om eerst meer informatie te krijgen."

#. type: Content of: <section><info><title>
#: en/scannerdrake.xml:10
msgid "Set up scanner"
msgstr "Scanner instellen"

#. type: Content of: <section><info><subtitle>
#: en/scannerdrake.xml:11
msgid "scannerdrake"
msgstr "scannerdrake"

#. type: Content of: <section><section><info><title>
#: en/scannerdrake.xml:18
msgid "Installation"
msgstr "Installatie"

#. type: Content of: <section><section><para><footnote><para>
#: en/scannerdrake.xml:22
msgid ""
"You can start this tool from the command line, by typing "
"<emphasis>scannerdrake</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">scannerdrake</emphasis> te typen."

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:21
msgid ""
"This tool <placeholder type=\"footnote\" id=\"0\"/> allows you to configure "
"a single scanner device or a multifunction device which includes scanning. "
"It also allows you to share local devices connected to this computer with a "
"remote computer or to access remote scanners."
msgstr ""
"Met deze tool <placeholder type=\"footnote\" id=\"0\"/> kunt u een scanner "
"configureren of het scannergedeelte van een multifunctionele printer. Het is "
"ook mogelijk een aangesloten scanner te delen met een andere computer op het "
"netwerk, of om de scanner bij een andere computer te gebruiken."

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:29
msgid ""
"When you start this tool for the first time, you may get the following "
"message:"
msgstr ""
"Als u deze tool voor het eerst start, kan het zijn dat u het volgende "
"bericht krijgt:"

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:32
msgid ""
"<emphasis>\"SANE packages need to be installed to use scanners</emphasis>"
msgstr ""
"<emphasis>\"SANE-pakketten moeten geïnstalleerd zijn om scanners te kunnen "
"gebruiken.</emphasis>"

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:35
msgid "<emphasis>Do you want to install the SANE packages?\"</emphasis>"
msgstr "<emphasis>Wilt u de SANE-pakketten installeren?\"</emphasis>"

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:38
msgid ""
"Choose <emphasis>Yes</emphasis> to continue. It will install <code>scanner-"
"gui</code> and <code>task-scanning</code> if they are not yet installed."
msgstr ""
"Klik <emphasis>Ja</emphasis> om verder te gaan, <code>scanner-gui</code> en "
"<code>task-scanning</code> zullen geïnstalleerd worden."

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/scannerdrake.xml:44
msgid "scannerdrake.png"
msgstr "scannerdrake.png"

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:50
msgid ""
"If your scanner is identified correctly, so if in the above screen you see "
"the name of your scanner, the scanner is ready for use with, for instance, "
"<emphasis>XSane</emphasis> or <emphasis>Simple Scan</emphasis>."
msgstr ""

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:55
msgid ""
"In that case, you might now want to want to configure the <emphasis>Scanner "
"sharing</emphasis> option. You can read about it in the <xref linkend="
"\"scannersharing\"/>."
msgstr ""

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:59
msgid ""
"However, if your scanner hasn't been correctly identified, and checking its "
"cable(s) and power switch and then pressing <emphasis>Search for new "
"scanners</emphasis> doesn't help, you'll need to press <emphasis>Add a "
"scanner manually</emphasis>."
msgstr ""

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:64
msgid ""
"Choose the brand of your scanner in the list you see, then its type from the "
"list for that brand and click <emphasis>Ok</emphasis>"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/scannerdrake.xml:69
msgid "scannerdrake2.png"
msgstr "scannerdrake2.png"

#. type: Content of: <section><section><note><para>
#: en/scannerdrake.xml:76
msgid ""
"If you can't find your scanner in the list, then click <emphasis>Cancel</"
"emphasis>"
msgstr ""

#. type: Content of: <section><section><note><para>
#: en/scannerdrake.xml:79
msgid ""
"Please check whether your scanner is supported on the <link xlink:href="
"\"http://www.sane-project.org/lists/sane-mfgs-cvs.html\">SANE: Supported "
"Devices</link> page and ask for help in the <link xlink:href=\"http://forums."
"mageia.org/en/\">forums</link>."
msgstr ""

#. type: Content of: <section><section><figure><info><title>
#: en/scannerdrake.xml:87
msgid "Choose port"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><figure><mediaobject><imageobject><imagedata>
#: en/scannerdrake.xml:91
msgid "scannerdrake3.png"
msgstr "scannerdrake3.png"

#. type: Content of: <section><section><figure>
#: en/scannerdrake.xml:86
msgid ""
"<placeholder type=\"info\" id=\"0\"/> <placeholder type=\"mediaobject\" id="
"\"1\"/>"
msgstr ""
"<placeholder type=\"info\" id=\"0\"/> <placeholder type=\"mediaobject\" id="
"\"1\"/>"

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:97
msgid ""
"You can leave this setting to <emphasis>Auto-detect available ports</"
"emphasis> unless your scanner's interface is a parallel port. In that case, "
"select <emphasis>/dev/parport0</emphasis> if you have only one."
msgstr ""

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:102
msgid ""
"After clicking <emphasis>Ok</emphasis>, in most cases you will see a screen "
"similar to the one below."
msgstr ""

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:104
msgid ""
"If you don't get that screen, then please read the <xref linkend="
"\"scannerextrasteps\"/>."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/scannerdrake.xml:108
msgid "scannerdrake4.png"
msgstr "scannerdrake4.png"

#. type: Content of: <section><section><info><title>
#: en/scannerdrake.xml:117
msgid "Scannersharing"
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/scannerdrake.xml:122
msgid "scannerdrake5.png"
msgstr "scannerdrake5.png"

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:128
msgid ""
"Here you can choose whether the scanners connected to this machine should be "
"accessible by remote machines and by which remote machines. You can also "
"decide here whether scanners on remote machines should be made available on "
"this machine."
msgstr ""

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:133
msgid ""
"Scanner sharing to hosts : name or IP address of hosts can be added or "
"deleted from the list of hosts allowed to access the local device(s), on "
"this computer."
msgstr ""

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:137
msgid ""
"Usage of remote scanners : name or IP address of hosts can added or deleted "
"from the list of hosts which give access to a remote scanner."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/scannerdrake.xml:143
msgid "scannerdrake6.png"
msgstr "scannerdrake6.png"

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:149
msgid "Scanner sharing to hosts: you can add host."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/scannerdrake.xml:153
msgid "scannerdrake7.png"
msgstr "scannerdrake7.png"

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:159
msgid ""
"Scanner sharing to hosts: specify which host(s) to add, or allow all remote "
"machines."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/scannerdrake.xml:164
msgid "scannerdrake8.png"
msgstr "scannerdrake8.png"

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:170
msgid "\"All remote machines\" are allowed to access the local scanner."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/scannerdrake.xml:175
msgid "scannerdrake9.png"
msgstr "scannerdrake9.png"

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:181
msgid ""
"If the package <emphasis>saned</emphasis> is not yet installed, the tool "
"offers to do it."
msgstr ""

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:184
msgid "At the end, the tool will alter these files:"
msgstr ""

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:186
msgid "<emphasis>/etc/sane.d/saned.conf</emphasis>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:188
msgid "<emphasis>/etc/sane.d/net.conf</emphasis>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:190
msgid ""
"<emphasis>/etc/sane.d/dll.conf </emphasis>to add or comment the directive "
"\"net\""
msgstr ""

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:193
msgid ""
"It will also configure <emphasis>saned</emphasis> and <emphasis>xinetd</"
"emphasis> to be started on boot."
msgstr ""

#. type: Content of: <section><section><title>
#: en/scannerdrake.xml:199 en/system-config-printer.xml:278
msgid "Specifics"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/scannerdrake.xml:205
msgid "Hewlett-Packard"
msgstr "Hewlett-Packard"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/scannerdrake.xml:207
msgid ""
"Most HP scanners are managed from <emphasis>HP Device Manager</emphasis> "
"(hplip) which also manages printers. In this case, this tool does not allow "
"you to configure it and invites you to use <emphasis>HP Device Manager</"
"emphasis>."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/scannerdrake.xml:214
msgid "Epson"
msgstr "Epson"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/scannerdrake.xml:216
msgid ""
"Drivers are available from <link xlink:href=\"http://download.ebz.epson.net/"
"dsc/search/01/search/?OSC=LX\">this page</link>. When indicated, you must "
"install the <emphasis>iscan-data</emphasis> package first, then "
"<emphasis>iscan</emphasis> (in this order). It is possible that the "
"<emphasis>iscan</emphasis> package will generate a warning about a conflict "
"with <emphasis>sane</emphasis>. Users have reported that this warning can be "
"ignored."
msgstr ""

#. type: Content of: <section><section><info><title>
#: en/scannerdrake.xml:231
msgid "Extra installation steps"
msgstr "Bijkomende installatiestappen"

#. type: Content of: <section><section><para>
#: en/scannerdrake.xml:234
msgid ""
"It is possible that after selecting a port for your scanner in the <xref "
"linkend=\"choosescannerport\"/> screen, you need to take one or more extra "
"steps to correctly configure your scanner."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/scannerdrake.xml:239
msgid ""
"In some cases, you're told the scanner needs its firmware to be uploaded "
"each time it is started. This tool allows you to load it into the device, "
"after you installed it on your system. In this screen you can install the "
"firmware from a CD or a Windows installation, or install the one you "
"downloaded from an Internet site of the vendor."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/scannerdrake.xml:241
msgid ""
"When your device's firmware needs to be loaded, it can take a long time at "
"each first usage, possibly more than one minute. So be patient."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/scannerdrake.xml:246
msgid ""
"Also, you may get a screen telling you to adjust the <emphasis>/etc/sane.d/"
"\"name_of_your_SANE_backend\".conf file.</emphasis>"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/scannerdrake.xml:250
msgid ""
"Read those or other instructions you get carefully and if you don't know "
"what to do, feel free to ask for help in the <link xlink:href=\"http://"
"forums.mageia.org/en/\">forums</link>."
msgstr ""

#. type: Content of: <section><orderedlist><title>
#: en/software-management.xml:5 en/software-management.xml:15
msgid "Software Management"
msgstr "Softwarebeheer"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/software-management.xml:10
msgid "software-management.png"
msgstr "software-management.png"

#. type: Content of: <section><para>
#: en/software-management.xml:14
msgid ""
"In this screen you can choose between several tools for software management. "
"Click on a link below to learn more."
msgstr ""
"In dit scherm kunt u kiezen tussen verschillende tools voor softwarebeheer."
"Klik op een link hieronder voor meer informatie."

#. type: Content of: <section><orderedlist><listitem><para>
#: en/software-management.xml:17
msgid "<xref linkend=\"rpmdrake\"></xref>"
msgstr "<xref linkend=\"rpmdrake\"></xref>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/software-management.xml:20
msgid ""
"<xref linkend=\"MageiaUpdate\"></xref><emphasis> = Update your system</"
"emphasis>"
msgstr ""
"<xref linkend=\"MageiaUpdate\"></xref><emphasis> = Uw systeem bijwerken</"
"emphasis>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/software-management.xml:23
msgid "<xref linkend=\"mgaapplet-config\"></xref>"
msgstr "<xref linkend=\"mgaapplet-config\"></xref>"

#. type: Content of: <section><orderedlist><listitem><para>
#: en/software-management.xml:26
msgid ""
"<xref linkend=\"drakrpm-edit-media\"></xref><emphasis> = Configure media "
"sources for install and update</emphasis>"
msgstr ""
"<xref linkend=\"drakrpm-edit-media\"></xref><emphasis> = Mediabronnen voor "
"installatie en herzieningen configureren</emphasis>"

#. type: Content of: <section><info><title>
#: en/system-config-printer.xml:8
msgid "Install and configure a printer"
msgstr "Een printer installeren en configureren"

#. type: Content of: <section><info><subtitle>
#: en/system-config-printer.xml:11
msgid "system-config-printer"
msgstr "system-config-printer"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/system-config-printer.xml:16
msgid "system-config-printer.png"
msgstr "system-config-printer.png"

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:23
msgid ""
"Printing is managed on Mageia by a server named CUPS. It has its own <link "
"ns2:title=\"CUPS\" ns2:href=\"http://localhost:631\">configuration "
"interface</link> which is accessible via an Internet browser, but Mageia "
"offers its own tool for installing printers called system-config-printer "
"which is shared with other distributions such as Fedora, Mandriva, Ubuntu "
"and openSUSE."
msgstr ""
"Printen wordt in Mageia beheerd door de CUPS-server. Deze heeft zijn eigen "
"<link ns2:title=\"CUPS\" ns2:href=\"http://localhost:631\">configuratie-"
"interface</link> die toegankelijk is via een internetbrowser, maar Mageia "
"heeft een eigen tool voor het installeren van printers: system-config-"
"printer. Deze tool wordt gedeeld met andere distributies, zoals Fedora, "
"Mandriva, Ubuntu en OpenSUSE."

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:30
msgid ""
"You should enable the non-free repository before proceeding with the "
"installation, because some drivers may only be available in this way."
msgstr ""

#. type: Content of: <section><section><para><footnote><para>
#: en/system-config-printer.xml:37
msgid ""
"You can start this tool from the command line, by typing <emphasis>system-"
"config-printer</emphasis>. The root password will be asked for."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">system-config-printer</emphasis> te typen."

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:34
msgid ""
"Printer installation is carried out in the <guilabel>Hardware</guilabel> "
"section of the Mageia Control Centre. Select the <guilabel>Configure "
"printing and scanning</guilabel> tool<placeholder type=\"footnote\" id=\"0\"/"
">."
msgstr ""
"Een printer kunt u installeren via de <guilabel>Apparatuur</guilabel> sectie "
"van het Mageia Configuratiecentrum. Selecteer, onder de kop \"Configuren van "
"afdrukken en scannen\"  de tool <guilabel>Printer(s), afdruktaakwachtrijen e."
"d. instellen</guilabel><placeholder type=\"footnote\" id=\"0\"/>."

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:42
msgid "MCC will ask for the installation two packages:"
msgstr "MCC zal voorstellen twee pakketten te installeren:"

#. type: Content of: <section><section><blockquote><para>
#: en/system-config-printer.xml:45
msgid "task-printing-server"
msgstr "task-printing-server"

#. type: Content of: <section><section><blockquote><para>
#: en/system-config-printer.xml:47
msgid "task-printing-hp"
msgstr "task-printing-hp"

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:50
msgid ""
"It is necessary to accept this installation to continue. Up to 230MB of "
"dependencies are needed."
msgstr ""
"Het is noodzakelijk dit voorstel te accepteren, om verder te gaan. Tot 230MB "
"aan afhankelijkheden zal worden geïnstalleerd. "

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:53
msgid ""
"To add a printer, choose the \"Add\" printer button. The system will try to "
"detect any printers and the ports available. The screenshot displays a "
"printer connected to a parallel port. If a printer is detected, such as a "
"printer on a USB port, it will be displayed on the first line.  The window "
"will also attempt to configure a network printer."
msgstr ""

#. type: Content of: <section><section><title>
#: en/system-config-printer.xml:61
msgid "Automatically detected printer"
msgstr "Automatisch gedectecteerde printer"

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:63
msgid ""
"This usually refers to USB printers. The utility automatically finds the "
"name of the printer and displays it. Select the printer and then click \"Next"
"\". If there is a known driver associated for the printer, it will be "
"automatically installed. If there is more than one driver or no known "
"drivers, a window will ask you to select or furnish one, as explained in the "
"next paragraph. Continue with <xref linkend=\"terminate\"/>"
msgstr ""
"Dit zijn meestal USB-printers. De tool vindt ook de naam van de printer en "
"laat deze zien. Selecteer de printer en klik dan op \"Volgende\". Als er een "
"geschikt stuurprogramma (driver) bekend is voor de printer, zal dit "
"automatisch geïnstalleerd worden. Zijn er meerdere geschikte of geen bekende "
"drivers, dan zal u in een nieuw venster gevraagd worden er een te selecteren "
"of op te geven, zoals toegelicht in de volgende paragraaf. Lees hier verder: "
"<xref linkend=\"terminate\"/>"

#. type: Content of: <section><section><title>
#: en/system-config-printer.xml:72
msgid "No automatically detected printer"
msgstr "Niet automatisch gedetecteerde printer"

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/system-config-printer.xml:76
msgid "printer3.png"
msgstr "printer3.png"

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:80
msgid ""
"When you select a port, the system loads a driver list and displays a window "
"to select a driver. The choice can be made through one of the following "
"options."
msgstr ""
"Als u een poort selecteert, laadt het systeem een lijst met stuurprogramma's "
"en opent het een venster waar u kunt kiezen uit een van de volgende "
"mogelijkheden."

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/system-config-printer.xml:86
msgid "Select printer from database"
msgstr "Selecteer een printer uit de database"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/system-config-printer.xml:92
msgid "provide PPD file"
msgstr "PPD-bestand opgeven"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/system-config-printer.xml:98
msgid "search for a driver to download"
msgstr "Zoeken naar een downloadbaar printerstuurprogramma"

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:102
msgid ""
"By selecting from the database, the window suggests a printer manufacturer "
"first, and then a device and a driver associated with it. If more than one "
"driver is suggested, select one which is recommended, unless you have "
"encountered some problems with that one before, in this case select the one "
"which know to work."
msgstr ""
"Om uit de database te kiezen, selecteert u eerst het merk van uw printer, "
"dan het model en daarna het bijbehorende stuurprogramma. Als er meerdere "
"drivers beschikbaar zijn, kies dan die die aanbevolen wordt, tenzij u eerder "
"problemen met dat stuurprogramma ondervond. Kies er in het laatste geval een "
"waarvan u weet dat het werkt."

#. type: Content of: <section><section><title>
#: en/system-config-printer.xml:110
msgid "Complete the installation process"
msgstr "Het installatieproces afronden"

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:112
msgid ""
"After the driver selection, a window requests some information which will "
"allow the system to designate and discover the printer. The first line is "
"the name under which the device will appear in applications in the list of "
"available printers. The installer then suggests printing a test page. After "
"this step, the printer is added and appears in the list of available "
"printers."
msgstr ""

#. type: Content of: <section><section><title>
#: en/system-config-printer.xml:121
msgid "Network printer"
msgstr "Netwerkprinter"

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:123
msgid ""
"Network printers are printers that are attached directly to a wired or "
"wireless network, that are attached to a printserver or that are attached to "
"another workstation that serves as printserver."
msgstr ""

#. type: Content of: <section><section><note><para>
#: en/system-config-printer.xml:128
msgid ""
"Often, it is better to configure the DHCP server to always associate a fixed "
"IP address with the printer's MAC-address. Of course that should be the same "
"as the IP address the printer of printserver is set to, if it has a fixed "
"one."
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:134
msgid ""
"The printer's Mac-address is a serial number given to the printer or "
"printserver or computer it is attached to, that can be obtained from a "
"configuration page printed by the printer or which may be written on a label "
"on the printer or printserver. If your shared printer is attached to a "
"Mageia system, you can run <emphasis><code>ifconfig</code></emphasis> on it "
"as root to find the MAC-address. It is the sequence of numbers and letters "
"after \"HWaddr\"."
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:142
msgid ""
"You can add your network printer by choosing the protocol it uses to talk to "
"your computer over the network. If you don't know which protocol to choose, "
"you can try the <guilabel>Network Printer</guilabel> - <guilabel>Find "
"Network Printer</guilabel> option in the <guilabel>Devices</guilabel> menu "
"and give the IP address of the printer in the box on the right, where it "
"says \"host\"."
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:149
msgid ""
"If the tool recognises your printer or printserver, it will propose a "
"protocol and a queue, but you can choose a more appropriate one from the "
"list below it or give the correct queue name if it isn't in the list."
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:154
msgid ""
"Look in the documentation that came with your printer or printserver to find "
"which protocol(s) it supports and for possible specific queue names."
msgstr ""

#. type: Content of: <section><section><title>
#: en/system-config-printer.xml:160
msgid "Network printing protocols"
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:162
msgid ""
"One current technique is one developed by Hewlett-Packard and known as "
"JetDirect. It allows access to a printer directly connected to the network "
"via an Ethernet port. You must know the IP-address at which the printer is "
"known on the network. This technique is also used inside some ADSL-routers "
"which contain an USB port to connect the printer. In this case, the IP-"
"address is that of the router. Note that the tool \"Hp Device manager\" can "
"manage dynamically configured IP-adress, setting an URI like <emphasis>hp:/"
"net/&lt;name-of-the-printer></emphasis> . In this case, fixed IP-adress is "
"not required."
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:172
msgid ""
"Choose the option <guilabel>AppSocket/HP JetDirect</guilabel> as the "
"protocol and set the address in <guilabel>Host:</guilabel>, do not change "
"the <guilabel>Port Number</guilabel>, unless you know that it needs to be "
"changed. After the selection of the protocol, the selection of the driver is "
"the same as above."
msgstr ""

#. type: Attribute 'fileref' of: <section><section><mediaobject><imageobject><imagedata>
#: en/system-config-printer.xml:180
msgid "printer5.png"
msgstr "printer5.png"

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:184
msgid "The other protocols are:"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/system-config-printer.xml:188
msgid ""
"<emphasis>Internet Printing Protocol (ipp)</emphasis>: a printer which can "
"be accessed on a TCP/IP network via the IPP protocol, for example a printer "
"connected to a station using CUPS. This protocol may also be used also by "
"some ADSL-routers."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/system-config-printer.xml:197
msgid ""
"<emphasis>Internet Printing Protocol (https): </emphasis>the same as ipp, "
"but using http transport and with TLS secured protocol.  The port has to be "
"defined. By default, the port 631 is used."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/system-config-printer.xml:205
msgid ""
"<emphasis>Internet Printing Protocol (ipps): </emphasis>the same as ipp, but "
"with TLS secured protocol."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/system-config-printer.xml:212
msgid ""
"<emphasis>LPD/LPR host or Printer</emphasis>: a printer which can be "
"accessed on a TCP/IP network via the LPD protocol, for example a printer "
"connected to a station using LPD."
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/system-config-printer.xml:220
msgid ""
"<emphasis>Windows printer via SAMBA</emphasis>: a printer connected to a "
"station running Windows or a SMB server and shared."
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:226
msgid ""
"The URI can also be added directly. Here are some examples on how to form "
"the URI:"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/system-config-printer.xml:231
msgid "Appsocket"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/system-config-printer.xml:233
msgid "<uri>socket://ip-address-or-hostname:port </uri>"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/system-config-printer.xml:237
msgid "Internet Printing Protocol (IPP)"
msgstr "Internet Printing Protocol (IPP)"

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/system-config-printer.xml:239
msgid "<uri>ipp://ip-address-or-hostname:port-number/resource</uri>"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/system-config-printer.xml:241
msgid "<uri>http://ip-address-or-hostname:port-number/resource</uri>"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/system-config-printer.xml:245
msgid "Line Printer Daemon (LPD) Protocol"
msgstr ""

#. type: Content of: <section><section><itemizedlist><listitem><para>
#: en/system-config-printer.xml:247
msgid "<uri>lpd://username@ip-address-or-hostname/queue</uri>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:251
msgid ""
"Additional information can be found in the <link ns2:href=\"http://www.cups."
"org/documentation.php/doc-1.5/network.html\">CUPS documentation.</link>"
msgstr ""

#. type: Content of: <section><section><title>
#: en/system-config-printer.xml:256
msgid "Device Properties"
msgstr "Apparaateigenschappen"

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:258
msgid ""
"You can access the properties of the device. The menu allows access to "
"parameters for the CUPS server. By default a CUPS server is launched on your "
"system, but you can specify a different one with the <guimenu>Server</"
"guimenu> | <guimenuitem>Connect...</guimenuitem> menu, another window which "
"gives access to the tuning of other specific parameters of the server, "
"following <guimenu>Server</guimenu> | <guimenuitem>Settings.</guimenuitem>"
msgstr ""

#. type: Content of: <section><section><title>
#: en/system-config-printer.xml:268
msgid "Troubleshoot"
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:270
msgid ""
"You can find some information on occurring errors during printing by "
"inspecting <filename>/var/log/cups/error_log</filename>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:273
msgid ""
"You can also access to a tool to diagnose problems using the <guimenu>Help</"
"guimenu> | <guilabel>Troubleshoot</guilabel> menu."
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:280
msgid ""
"It is possible that some drivers for specific printers are not available in "
"Mageia or are not functional. In this case, have a look at the <link ns2:"
"href=\"http://openprinting.org/printers/\">openprinting</link> site to check "
"if a driver for your device is available. If yes, check if the package is "
"already present in Mageia and in this case install it manually. Then, redo "
"the installation process to configure the printer. In all cases, report the "
"problem in bugzilla or on the forum if you are comfortable with this tool "
"and furnish the model and driver information and whether the printer works "
"or not after installation. Here are some sources to find other up-to-date "
"drivers or for more recent devices."
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:292
msgid "<emphasis role=\"bold\">Brother printers</emphasis>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:294
msgid ""
"<link ns2:href=\"http://welcome.solutions.brother.com/bsc/public_s/id/linux/"
"en/download_prn.html\">This page</link> give a list of drivers provided by "
"Brother. Search the driver for your device, download the rpm(s) and install."
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:298
msgid ""
"You should install Brother drivers before running the configuration utility."
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:301
msgid ""
"<emphasis role=\"bold\">Hewlett-Packard printers and All in one devices</"
"emphasis>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:304
msgid ""
"These devices use the hplip tool. It is installed automatically after the "
"detection or the selection of the printer. You can find other information "
"<link ns2:href=\"http://hplipopensource.com/hplip-web/index.html\">here</"
"link>.  The tool \"HP Device Manager\" is available in the <guilabel>System</"
"guilabel> menu. Also view <link ns2:href=\"http://hplipopensource.com/hplip-"
"web/install/manual/hp_setup.html\">configuration</link> for the management "
"of the printer."
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:311
msgid ""
"A HP All in one device must be installed as a printer and the scanner "
"features will be added. Note that sometimes, the Xsane interface doesn't "
"allow to scan films or slides (the lighting slid can't operate).  In this "
"case, it is possible to scan, using the standalone mode, and save the "
"picture on a memory card or USB stick inserted in the device.  Afterwards, "
"open your favourite imaging software and load your picture from the memory "
"card which is appeared in the /media folder."
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:319
msgid "<emphasis role=\"bold\">Samsung colour printer</emphasis>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:321
msgid ""
"For specific Samsung and Xerox colour printers, <link ns2:href=\"http://"
"foo2qpdl.rkkda.com/\">this site provides drivers</link> for the QPDL "
"protocol."
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:324
msgid "<emphasis role=\"bold\">Epson printers and scanners</emphasis>"
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:326
msgid ""
"Drivers for Epson printers are available from <link ns2:href=\"http://"
"download.ebz.epson.net/dsc/search/01/search/?OSC=LX\">this search page</"
"link>. For the scanner part, you must install the \"iscan-data\" package "
"first, then \"iscan\" (in this order). A iscan-plugin package can also be "
"available and is to install. Choose the <emphasis>rpm</emphasis> packages "
"according to your architecture."
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:332
msgid ""
"It is possible that the iscan package will generate a warning about a "
"conflict with sane. Users have reported that this warning can be ignored."
msgstr ""

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:336
msgid "<emphasis role=\"bold\">Canon printers</emphasis>"
msgstr "<emphasis role=\"bold\">Canon printers</emphasis>"

#. type: Content of: <section><section><para>
#: en/system-config-printer.xml:338
msgid ""
"For Canon printers, it may be advisable to install a tool named turboprint "
"<link ns2:href=\"http://www.turboprint.info/\">available here </link>."
msgstr ""

#. type: Content of: <section><info><title>
#: en/transfugdrake.xml:9
msgid "Import Windows(TM) documents and settings"
msgstr "Windows™-documenten en -instellingen importeren"

#. type: Content of: <section><info><subtitle>
#: en/transfugdrake.xml:12
msgid "transfugdrake"
msgstr ""

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/transfugdrake.xml:17
msgid "transfugdrake.png"
msgstr "transfugdrake.png"

#. type: Content of: <section><para><footnote><para>
#: en/transfugdrake.xml:22
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">transfugdrake</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">transfugdrake</emphasis> te typen."

#. type: Content of: <section><para>
#: en/transfugdrake.xml:21
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> is found under the "
"<emphasis role=\"bold\">System</emphasis> tab in the Mageia Control Center "
"labelled <guilabel>Import Windows(TM) documents and settings</guilabel>"
msgstr ""

#. type: Content of: <section><para>
#: en/transfugdrake.xml:27
msgid ""
"The tool allows an administrator to import the user documents and settings "
"from a <trademark class=\"registered\">Windows</trademark> 2000, <trademark "
"class=\"registered\">Windows</trademark> XP or <trademark class=\"registered"
"\">Windows</trademark> <trademark>Vista</trademark> installation on the same "
"computer as the Mageia installation."
msgstr ""

#. type: Content of: <section><warning><para>
#: en/transfugdrake.xml:33
msgid ""
"Please note that all the changes will be applied by transfugdrake "
"immediately after pressing <guibutton>Next</guibutton>."
msgstr ""

#. type: Content of: <section><para>
#: en/transfugdrake.xml:37
msgid ""
"After starting transfugdrake you will see the first wizard page with some "
"explanation about the tool and import options."
msgstr ""

#. type: Content of: <section><para>
#: en/transfugdrake.xml:40
msgid ""
"As soon as you read and understand the instructions, press the "
"<guibutton>Next</guibutton> button. This should run a detection of "
"<trademark class=\"registered\">Windows</trademark> installation."
msgstr ""

#. type: Content of: <section><para>
#: en/transfugdrake.xml:44
msgid ""
"When the detection step is complete you will see a page which allows you to "
"choose accounts in <trademark class=\"registered\">Windows</trademark> and "
"Mageia for the import procedure. It is possible to choose other user account "
"than yours own."
msgstr ""

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/transfugdrake.xml:51
msgid "transfugdrake1.png"
msgstr "transfugdrake1.png"

#. type: Content of: <section><note><para>
#: en/transfugdrake.xml:56
msgid ""
"Please take into account that due to migrate-assistant (the backend of "
"transfugdrake) limitations <trademark class=\"registered\">Windows</"
"trademark> user account names with special symbols can be displayed "
"incorrectly."
msgstr ""

#. type: Content of: <section><note><para>
#: en/transfugdrake.xml:62
msgid ""
"Migration may take some time depending on the size of the document folders."
msgstr ""

#. type: Content of: <section><warning><para>
#: en/transfugdrake.xml:67
msgid ""
"Some <trademark class=\"registered\">Windows</trademark> applications "
"(especially drivers) may create user accounts for different purposes. For "
"example, NVidia drivers in <trademark class=\"registered\">Windows</"
"trademark>are updated using <emphasis>UpdatusUser</emphasis>. Please do not "
"use such accounts for the import purposes."
msgstr ""

#. type: Content of: <section><para>
#: en/transfugdrake.xml:74
msgid ""
"When you finished with the accounts selection press <guibutton>Next</"
"guibutton> button. The next page is used to select a method to import "
"documents:"
msgstr ""

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/transfugdrake.xml:80
msgid "transfugdrake2.png"
msgstr "transfugdrake2.png"

#. type: Content of: <section><para>
#: en/transfugdrake.xml:84
msgid ""
"Transfugdrake is designed to import <trademark class=\"registered\">Windows</"
"trademark> data from <emphasis>My Documents</emphasis>, <emphasis>My Music</"
"emphasis> and <emphasis>My Pictures</emphasis> folders. It is possible to "
"skip import by selecting the appropriate item in this window."
msgstr ""

#. type: Content of: <section><para>
#: en/transfugdrake.xml:89
msgid ""
"When you finished with the document import method choosing press "
"<guibutton>Next</guibutton> button. The next page is used to select a method "
"to import bookmarks:"
msgstr ""

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/transfugdrake.xml:95
msgid "transfugdrake3.png"
msgstr "transfugdrake3.png"

#. type: Content of: <section><para>
#: en/transfugdrake.xml:99
msgid ""
"Transfugdrake can import <emphasis>Internet Explorer</emphasis> and "
"<emphasis>Mozilla Firefox</emphasis> bookmarks into the bookmarks of Mageia "
"<emphasis>Mozilla Firefox</emphasis> instance."
msgstr ""

#. type: Content of: <section><para>
#: en/transfugdrake.xml:103
msgid ""
"Choose the preferred import option and press the <guibutton>Next</guibutton> "
"button."
msgstr ""

#. type: Content of: <section><para>
#: en/transfugdrake.xml:112
msgid "The next page allows you to import desktop background:"
msgstr ""

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/transfugdrake.xml:116
msgid "transfugdrake4.png"
msgstr "transfugdrake4.png"

#. type: Content of: <section><para>
#: en/transfugdrake.xml:120
msgid ""
"Choose the preferred option and press the <guibutton>Next</guibutton> button."
msgstr ""

#. type: Content of: <section><para>
#: en/transfugdrake.xml:123
msgid ""
"The last page of wizard shows some congratulation message. Just press the "
"<guibutton>Finish</guibutton> button."
msgstr ""

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/transfugdrake.xml:128
msgid "transfugdrake5.png"
msgstr "transfugdrake5.png"

#. type: Content of: <section><info><title>
#: en/userdrake.xml:11
msgid "Users and Groups"
msgstr "Gebruikers en groepen"

#. type: Content of: <section><info><subtitle>
#: en/userdrake.xml:13
msgid "userdrake"
msgstr "userdrake"

#. type: Attribute 'fileref' of: <section><mediaobject><imageobject><imagedata>
#: en/userdrake.xml:18
msgid "userdrake.png"
msgstr "userdrake.png"

#. type: Content of: <section><para><footnote><para>
#: en/userdrake.xml:23
msgid ""
"You can start this tool from the command line, by typing <emphasis role="
"\"bold\">userdrake</emphasis> as root."
msgstr ""
"U kunt deze tool op de commandoregel starten, door als root <emphasis role="
"\"bold\">userdrake</emphasis> te typen."

#. type: Content of: <section><para>
#: en/userdrake.xml:22
msgid ""
"This tool<placeholder type=\"footnote\" id=\"0\"/> is found under the "
"<emphasis role=\"bold\">System</emphasis> tab in the Mageia Control Center "
"labelled \"Manage users on system\""
msgstr ""

#. type: Content of: <section><para>
#: en/userdrake.xml:27
msgid ""
"The tool allows an administrator to manage the users and the groups, this "