summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
blob: fb0e5f0c5c6102fdc7da48486a1552c67bc0a26c (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
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
package install_steps; # $Id$

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

#-######################################################################################
#- misc imports
#-######################################################################################
use common;
use install_any qw(:all);
use partition_table qw(:types);
use detect_devices;
use modules;
use run_program;
use lang;
use keyboard;
use fsedit;
use loopback;
use pkgs;
use any;
use log;
use fs;

@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;
}

#-######################################################################################
#- 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 "$o->{prefix}/root/drakx") {
	eval { cp_af("/tmp/ddebug.log", "$o->{prefix}/root/drakx") };
	output(install_any::auto_inst_file(), install_any::g_auto_install(1));
    }

    for (my $s = $o->{steps}{first}; $s; $s = $o->{steps}{$s}{next}) {
	#- 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() };
	$o->ask_warn(N("Error"), [
N("An error occurred, but I don't know how to handle it nicely.
Continue at your own risk."), $@ ]) if $@;
    }
}

sub errorInStep($$) { print "error :(\n"; c::_exit(1) }
sub kill_action {}
sub set_help { 1 }

#-######################################################################################
#- Steps Functions
#-######################################################################################
#------------------------------------------------------------------------------
sub selectLanguage {
    my ($o) = @_;
    lang::set($o->{lang}, !$o->isa('interactive::gtk'));
    $o->{langs} ||= { $o->{lang} => 1 };

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

    #- 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::from_usb() || keyboard::lang2keyboard($o->{lang});
	$o->{keyboard}{unsafe} = 1;
	keyboard::setup($o->{keyboard}) if !$::live;
    }

    addToBeDone {
	lang::write_langs($o->{prefix}, $o->{langs});
    } 'formatPartitions' unless $::g_auto_install;
    addToBeDone {
	lang::write($o->{prefix}, $o->{lang});
    } 'installPackages' unless $::g_auto_install;
}
#------------------------------------------------------------------------------
sub selectKeyboard {
    my ($o) = @_;
    $o->{keyboard}{KBCHARSET} = lang::lang2charset($o->{lang});
    keyboard::setup($o->{keyboard});

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

#------------------------------------------------------------------------------
sub setupSCSI {
    my ($o) = @_;
    modules::configure_pcmcia($o->{pcmcia}) if $o->{pcmcia};
    modules::load_ide();
    modules::load_category('bus/firewire');
    modules::load_category('disk/scsi|hardware_raid');

    install_any::getHds($o, $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 = fsedit::get_root_($o->{fstab}) || (first(install_any::find_root_parts($o->{fstab}, $o->{prefix})) || die)->{part};
	install_any::use_root_part($o->{all_hds}, $p, $o->{prefix});
    } 
}

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

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

    if (!$::testing) {
	my $hds = $o->{all_hds}{hds};
	partition_table::write($_) foreach @$hds;
	$_->{rebootNeeded} and $o->rebootNeeded foreach @$hds;
    }

    fs::set_removable_mntpoints($o->{all_hds});
    fs::set_all_default_options($o->{all_hds}, $o->{useSupermount}, $o->{security}, lang::fs_options($o->{lang}))
	if !$o->{isUpgrade};

    $o->{fstab} = [ fsedit::get_all_fstab($o->{all_hds}) ];
    fsedit::get_root_($o->{fstab}) or die "Oops, no root partition";

    if (arch() =~ /ppc/ && detect_devices::get_mac_generation() =~ /NewWorld/) {
	die "Need bootstrap partition to boot system!" if !(defined $partition_table::mac::bootstrap_part);
    }
    
    if (arch() =~ /ia64/ && !fsedit::has_mntpoint("/boot/efi", $o->{all_hds})) {
	die N("You must have a FAT partition mounted in /boot/efi");
    }

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

    cat_("/proc/mounts") =~ m|(\S+)\s+/tmp/image nfs| &&
      !any { $_->{mntpoint} eq "/mnt/nfs" } @{$o->{all_hds}{nfss}} and
	push @{$o->{all_hds}{nfss}}, { type => 'nfs', mntpoint => "/mnt/nfs", device => $1, options => "noauto,ro,nosuid,soft,rsize=8192,wsize=8192" };
}

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

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

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

sub ask_mntpoint_s {
    my ($_o, $fstab) = @_;

    #- TODO: set the mntpoints

    my %m; foreach (@$fstab) {
	my $m = $_->{mntpoint};

	next if !$m || $m eq 'swap'; #- there may be a lot of swap.

	$m{$m} and die N("Duplicate mount point %s", $m);
	$m{$m} = 1;

	#- in case the type does not correspond, force it to ext3
	$_->{type} = 0x483 if $m =~ m|^/| && !isTrueFS($_) && !isOtherAvailableFS($_);
    }
    1;
}


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

sub choosePartitionsToFormat($$) {
    my ($_o, $fstab) = @_;

    foreach (@$fstab) {
	$_->{mntpoint} = "swap" if isSwap($_);
	$_->{mntpoint} or next;
	
	add2hash_($_, { toFormat => $_->{notFormatted} });
        $_->{toFormatUnsure} = member($_->{mntpoint}, '/', '/usr');

	if (!$_->{toFormat}) {
	    my $t = fsedit::typeOfPart($_->{device});
	    $_->{toFormatUnsure} ||=
	      #- if detected dos/win, it's not precise enough to just compare the types (too many of them)
	      (!$t || isOtherAvailableFS({ type => $t }) ? !isOtherAvailableFS($_) : $t != $_->{type});
	}
    }
}

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

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

    install_any::setPackages($o, $rebuild_needed);
    pkgs::selectPackagesAlreadyInstalled($o->{packages}, $o->{prefix});
    $rebuild_needed and pkgs::selectPackagesToUpgrade($o->{packages}, $o->{prefix});
}

sub choosePackages {
    my ($o, $packages, $_compssUsers, $first_time) = @_;

    #- 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 (xfs at least).
    my $available = install_any::getAvailableSpace($o);
    my $availableCorrected = 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;

    #- avoid destroying user selection of packages but only
    #- for expert, as they may have done individual selection before.
    if ($first_time || !$::expert) {
	exists $o->{compssListLevel}
	  and pkgs::setSelectedFromCompssList($packages, $o->{compssUsersChoice}, $o->{compssListLevel}, $availableCorrected);
    }
    $availableCorrected;
}

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

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

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

    require network;
    network::add2hosts("$o->{prefix}/etc/hosts", "localhost.localdomain", "127.0.0.1");

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

    #- add oem lilo theme and background if the files exists.
    mkdir "$o->{prefix}$_" foreach qw(/boot /usr /usr/share /usr/share/mdk);
    install_any::getAndSaveFile("Mandrake/base/oem-message-graphic", "$o->{prefix}/boot/oem-message-graphic");
    install_any::getAndSaveFile("Mandrake/base/oem-background.png", "$o->{prefix}/usr/share/mdk/oem-background.png");
}

sub pkg_install {
    my ($o, @l) = @_;
    log::l("selecting packages");
    require pkgs;
    if ($::testing) {
	log::l("selecting package \"$_\"") foreach @l;
    } else {
	$o->{packages}{rpmdb} ||= pkgs::rpmDbOpen($o->{prefix});
	pkgs::selectPackage($o->{packages}, pkgs::packageByName($o->{packages}, $_) || die "$_ rpm not found") foreach @l;
    }
    my @toInstall = pkgs::packagesToInstall($o->{packages});
    if (@toInstall) {
	log::l("installing packages");
	$o->installPackages;
    } else {
	log::l("all packages selected are already installed, nothing to do")
    }
}

sub pkg_install_if_requires_satisfied {
    my ($o, @l) = @_;
    require pkgs;
    $o->{packages}{rpmdb} ||= pkgs::rpmDbOpen($o->{prefix});
    foreach (@l) {
	my %newSelection;
	my $pkg = pkgs::packageByName($o->{packages}, $_) || die "$_ rpm not found";
	pkgs::selectPackage($o->{packages}, $pkg, 0, \%newSelection);
	if (scalar(keys %newSelection) == 1) {
	    pkgs::selectPackage($o->{packages}, $pkg);
	} else {
	    log::l("pkg_install_if_requires_satisfied: not selecting $_ because of ", join(", ", keys %newSelection));
	}
    }
    $o->installPackages;
}

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

    #- this method is always called, go here to close still opened rpm db.
    delete $packages->{rpmdb};

    if (%{$packages->{state}{ask_remove} || {}}) {
	log::l("removing : ", join ', ', keys %{$packages->{state}{ask_remove}});
	pkgs::remove($o->{prefix}, [ keys %{$packages->{state}{ask_remove}} ], $packages);
    }

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

    my $time = time();
    $ENV{DURING_INSTALL} = 1;
    pkgs::install($o->{prefix}, $o->{isUpgrade}, \@toInstall, $packages);
    delete $ENV{DURING_INSTALL};
    run_program::rooted($o->{prefix}, 'yelp-pregenerate', '-a') if !$o->{'yelp-pregenerate'}++; #- do it only once
    run_program::rooted_or_die($o->{prefix}, 'ldconfig') unless $::g_auto_install;
    log::l("Install took: ", formatTimeRaw(time() - $time));
    install_any::log_sizes($o);
    scalar(@toInstall); #- return number of packages installed.
}

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

    return if $::g_auto_install;

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

    if (arch() !~ /^sparc/) { #- TODO restore it as may be needed for sparc
	-x "$o->{prefix}/usr/bin/dumpkeys" or $::testing or die 
"Some important packages didn't 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();

    my $have_devfsd = do {
	my $p = pkgs::packageByName($o->{packages}, 'devfsd');
	$p && $p->flag_installed
    };
    if ($have_devfsd) {
        require bootloader;
	bootloader::may_append($o->{bootloader}, devfs => 'mount');
    }

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

    #- configure PCMCIA services if needed.
    modules::write_pcmcia($o->{prefix}, $o->{pcmcia});

    #- for mandrake_firstime
    touch "$o->{prefix}/var/lock/TMP_1ST";

    any::config_dvd($o->{prefix}, $have_devfsd);
    any::config_mtools($o->{prefix});

    any::writeandclean_ldsoconf($o->{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*:/ } "$o->{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($o->{prefix}, "chkconfig", "--add", $_) foreach
			qw(random netfs network rawdevices sound kheader usb keytable syslog crond portmap);

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

    #- call update-menus at the end of package installation
    run_program::rooted($o->{prefix}, "update-menus");

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

    $o->install_urpmi;

    if ($o->{lang} =~ /^(zh_TW|th|vi|be|bg)/) {
	#- skip since we don't have the right font (it badly fails at least for zh_TW)
    } elsif (my $LANG = lang::lang2LANG($o->{lang})) {
	my $kde_charset = lang::charset2kde_charset(lang::lang2charset($o->{lang}));
	my $welcome = c::to_utf8(N("Welcome to %s", '%n'));
	substInFile { 
	    s/^(GreetString)=.*/$1=$welcome/;
	    s/^(Language)=.*/$1=$LANG/;
	    if (!member($kde_charset, 'iso8859-1', 'iso8859-15')) { 
		#- don't keep the default for those
		s/^(StdFont)=.*/$1=*,12,5,$kde_charset,50,0/;
		s/^(FailFont)=.*/$1=*,12,5,$kde_charset,75,0/;
		s/^(GreetFont)=.*/$1=*,24,5,$kde_charset,50,0/;
	    }
	} "$o->{prefix}/usr/share/config/kdm/kdmrc";

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

    foreach (list_skels($o->{prefix}, '.kde/share/config/kfmrc')) {
	my $found;
	substInFile {
	    $found ||= /KFM Misc Defaults/;
	    $_ .= 
"[KFM Misc Defaults]
GridWidth=85
GridHeight=70
" if eof && !$found;
	} $_ 
    }

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

	log::l("moving previous desktop files that have been updated to Trash of each user");
	install_any::kdemove_desktop_file($o->{prefix});

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

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

    #- fix bad update-alternatives that may occurs after upgrade (but let them for install too).
    if (-d "$o->{prefix}/etc/alternatives") {
	foreach (all("$o->{prefix}/etc/alternatives")) {
	    my $l = readlink "$o->{prefix}/etc/alternatives/$_";
	    -e ($l =~ m|^/| ? "$o->{prefix}$l" : "$o->{prefix}/etc/alternatives/$_") and next;
	    log::l("fixing broken alternative $_");
	    run_program::rooted($o->{prefix}, "update-alternatives", "--auto", $_);
	}
    }

    #- update oem lilo image if it exists.
    if (-s "$o->{prefix}/boot/oem-message-graphic") {
	rename "$o->{prefix}/boot/message-graphic", "$o->{prefix}/boot/message-graphic.mdkgiorig";
	rename "$o->{prefix}/boot/oem-message-graphic", "$o->{prefix}/boot/message-graphic";
    }

    #- update background image if it exists for common environment.
    if (-s "$o->{prefix}/usr/share/mdk/oem-background.png") {
	if (-e "$o->{prefix}/usr/share/mdk/backgrounds/default.png") {
	    rename "$o->{prefix}/usr/share/mdk/backgrounds/default.png",
	           "$o->{prefix}/usr/share/mdk/backgrounds/default.png.mdkgiorig";
	    rename "$o->{prefix}/usr/share/mdk/oem-background.png", "$o->{prefix}/usr/share/mdk/backgrounds/default.png";
	} else {
	    #- KDE desktop background.
	    if (-e "$o->{prefix}/usr/share/config/kdesktoprc") {
		update_gnomekderc("$o->{prefix}/usr/share/config/kdesktoprc", "Desktop0",
				  MultiWallpaperMode => "NoMulti",
				  Wallpaper => "/usr/share/mdk/oem-background.png",
				  WallpaperMode => "Scaled",
				 );
	    }
	    #- GNOME desktop background.
	    if (-e "$o->{prefix}/etc/gnome/config/Background") {
		update_gnomekderc("$o->{prefix}/etc/gnome/config/Background", "Default",
				  wallpaper => "/usr/share/mdk/oem-background.png",
				  wallpaperAlign => "3",
				 );
	    }
	}
    }

    if ($o->{blank} || $o->{updatemodules}) {
	my @l = detect_devices::floppies_dev();

	foreach (qw(blank updatemodules)) {
	    $o->{$_} eq "1" and $o->{$_} = $l[0] || die N("No floppy drive available");
	}

	$o->{blank} and $o->copyKernelFromFloppy();
	$o->{updatemodules} and $o->updateModulesFromFloppy();
    }
}

sub copyKernelFromFloppy {
    my ($o) = @_;
    return if $::testing || !$o->{blank};

    fs::mount($o->{blank}, "/floppy", "vfat", 0);
    eval { cp_af("/floppy/vmlinuz", "$o->{prefix}/boot/vmlinuz-default") };
    if ($@) {
	log::l("copying of /floppy/vmlinuz from blank modified disk failed: $@");
    }
    fs::umount("/floppy");
}

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

    my $pkg = pkgs::packageByName($o->{packages}, 'urpmi');
    if ($pkg && ($pkg->flag_selected || $pkg->flag_installed)) {
	install_any::install_urpmi($o->{prefix}, 
				   $::oem ? 'cdrom' : $o->{method}, #- HACK
				   $o->{packages},
				   $o->{packages}{mediums});
	pkgs::saveCompssUsers($o->{prefix}, $o->{packages}, $o->{compssUsers}, $o->{compssUsersSorted});
    }
}

sub updateModulesFromFloppy {
    my ($o) = @_;
    return if $::testing || !$o->{updatemodules};

    fs::mount($o->{updatemodules}, "/floppy", "ext2", 0);
    foreach (glob_("$o->{prefix}/lib/modules/*")) {
	my ($kernelVersion) = m,lib/modules/(\S*),;
	log::l("examining updated modules for kernel $kernelVersion");
	if (-d "/floppy/$kernelVersion") {
	    my @src_files = glob_("/floppy/$kernelVersion/*");
	    my @dest_files = map { chomp_($_) } run_program::rooted_get_stdout($o->{prefix}, 'find', '/lib/modules');
	    foreach my $s (@src_files) {
		log::l("found updatable module $s");
		my ($sfile, $sext) = $s =~ /([^\/\.]*\.o)(?:\.gz|\.bz2)?$/;
		my $qsfile = quotemeta $sfile;
		my $qsext = quotemeta $sext;
		foreach my $target (@dest_files) {
		    $target =~ /$qsfile/ or next;
		    eval { cp_af($s, $target) };
		    if ($@) {
			log::l("updating module $target by $s failed: $@");
		    } else {
			log::l("updating module $target by $s");
		    }
		    if ($target !~ /$qsfile$qsext$/) {
			#- extension differ, first rename target file correctly,
			#- then uncompress source file, then compress it as expected.
			my ($basetarget, $text) = $target =~ /(.*?)(\.gz|\.bz2)$/;
			rename $target, "$basetarget$sext";
			$sext eq '.gz' and run_program::run("gzip", "-d", "$basetarget$sext");
			$sext eq '.bz2' and run_program::run("bzip2", "-d", "$basetarget$sext");
			$text eq '.gz' and run_program::run("gzip", $basetarget);
			$text eq '.bz2' and run_program::run("bzip2", $basetarget);
		    }
		}
	    }
	}
    }
    fs::umount("/floppy");
}

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

#------------------------------------------------------------------------------
sub configureNetwork {
    my ($o) = @_;
    require network;
    network::configureNetwork2($o, $o->{prefix}, $o->{netc}, $o->{intf});
    if ($o->{method} =~ /ftp|http|nfs/) {
	$o->{netcnx}{type} = 'lan';
	foreach ("up", "down") {
	    my $f = "$o->{prefix}/etc/sysconfig/network-scripts/net_cnx_$_";
	    output_with_perm($f, 0755, "\nif$_ eth0\n");
	}
	output "$o->{prefix}/etc/sysconfig/network-scripts/net_cnx_pg", "\n/usr/sbin/drakconnet\n";
    }
}

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

    upNetwork($o);
    require crypto;
    crypto::getPackages($o->{prefix}, $o->{packages}, $u->{mirror}) and
	$o->pkg_install(@{$u->{packages} || []});

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

sub summary {
    my ($o) = @_;
    configureTimezone($o);
    configurePrinter($o) if $o->{printer};
}

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

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

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

#------------------------------------------------------------------------------
sub configureServices {
    my ($o) = @_;
    if ($o->{services}) {
	require services;
	services::doit($o, $o->{services}, $o->{prefix});
    }
}
#------------------------------------------------------------------------------
sub configurePrinter {
    my ($o) = @_;
    $o->do_pkgs->install('foomatic', 'printer-utils', 'printer-testpages',
			 if_($o->do_pkgs->is_installed('gimp'), 'gimpprint'));
    
    require printer::main;
    eval { add2hash($o->{printer} ||= {}, printer::main::getinfo($o->{prefix})) }; #- get existing configuration.

    require printer::printerdrake;
    printer::printerdrake::install_spooler($o->{printer}, $o); #- not interactive...

    foreach (values %{$o->{printer}{configured} || {}}) {
	log::l("configuring printer queue " . $_->{queuedata}{queue} || $_->{QUEUE});
	#- when copy is so adulée (sorry french taste :-)
	#- and when there are some configuration in one place and in another place...
	$o->{printer}{currentqueue} = {};
	printer::main::copy_printer_params($_->{queuedata}, $o->{printer}{currentqueue});
	printer::main::copy_printer_params($_, $o->{printer});
	#- setup all configured queues, which is not the case interactively where
	#- only the working queue is setup on configuration.
	printer::main::configure_queue($o->{printer});
    }
}

#------------------------------------------------------------------------------
sub setRootPassword {
    my ($o) = @_;
    $o->{superuser} ||= {};
    $o->{superuser}{name} = 'root';
    any::write_passwd_user($o->{prefix}, $o->{superuser}, $o->{authentication}{md5});
    delete $o->{superuser}{name};
}

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

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

    my (%uids, %gids); 
    foreach (glob_("$p/home")) { my ($u, $g) = (stat($_))[4,5]; $uids{$u} = 1; $gids{$g} = 1 }

    foreach (@$users) {
	$_->{home} ||= "/home/$_->{name}";

	my $u = $_->{uid} || ($_->{oldu} = (stat("$p$_->{home}"))[4]) || int getpwnam($_->{name});
	my $g = $_->{gid} || ($_->{oldg} = (stat("$p$_->{home}"))[5]) || int getgrnam($_->{name});
	#- search for available uid above 501 else initscripts may fail to change language for KDE.
	if (!$u || getpwuid($u)) { for ($u = 501; getpwuid($u) || $uids{$u}; $u++) {} }
	if (!$g)                 { for ($g = 501; getgrgid($g) || $gids{$g}; $g++) {} }
	
	$_->{uid} = $u; $uids{$u} = 1;
	$_->{gid} = $g; $gids{$g} = 1;
    }

    any::write_passwd_user($p, $_, $o->{authentication}{md5}) foreach @$users;

    append_to_file("$p/etc/group",
		   map { "$_->{name}:x:$_->{gid}:\n" } grep { ! getgrgid($_->{gid}) } @$users);

    foreach my $u (@$users) {
	if (! -d "$p$u->{home}") {
	    my $mode = $o->{security} < 2 ? 0755 : 0750;
	    eval { cp_af("$p/etc/skel", "$p$u->{home}") };
	    if ($@) {
		log::l("copying of skel failed: $@"); mkdir("$p$u->{home}", $mode); 
	    } else {
		chmod $mode, "$p$u->{home}";
	    }
	}
	require commands;
	eval { commands::chown_("-r", "$u->{uid}.$u->{gid}", "$p$u->{home}") }
	    if $u->{uid} != $u->{oldu} || $u->{gid} != $u->{oldg};
    }
    any::addUsers($p, $users);

    $o->pkg_install("autologin") if $o->{autologin};
    any::set_autologin($o->{autologin}, $o->{desktop});

    install_any::setAuthentication($o);

    install_any::disable_user_view($p) if @$users == ();
}

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

    require bootloader;
    add2hash($o->{bootloader} ||= {}, bootloader::read());

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

    #- since kernel or kernel-smp may not be upgraded, it should be checked
    #- if there is a need to update existing lilo.conf entries by following
    #- symlinks before kernel or other packages get installed.
    #- update everything that could be a filename (for following symlink).
    foreach my $e (@{$o->{bootloader}{entries}}) {
	while (my $v = readlink "$o->{prefix}/$e->{kernel_or_dev}") {
	    $v = "/boot/$v" if $v !~ m|^/|; -e "$o->{prefix}$v" or last;
	    log::l("renaming $e->{kernel_or_dev} entry by $v");
	    $e->{kernel_or_dev} = $v;
	}
	while (my $v = readlink "$o->{prefix}/$e->{initrd}") {
	    $v = "/boot/$v" if $v !~ m|^/|; -e "$o->{prefix}$v" or last;
	    log::l("renaming $e->{initrd} entry by $v");
	    $e->{initrd} = $v;
	}
    }
}

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

    require bootloader;
    if (my @l = (grep { $_->{bus} eq 'ide' } detect_devices::burners(), detect_devices::raw_zips())) {
	bootloader::add_append($o->{bootloader}, $_->{device}, 'ide-scsi') foreach @l;
    }
    if ($o->{miscellaneous}{HDPARM}) {
	bootloader::add_append($o->{bootloader}, $_, 'autotune') foreach grep { /ide.*/ } all("/proc/ide");
    }
    if (cat_("/proc/cmdline") =~ /mem=nopentium/) {
	bootloader::add_append($o->{bootloader}, 'mem', 'nopentium');
    }
    if (cat_("/proc/cmdline") =~ /\b(pci)=(\S+)/) {
	bootloader::add_append($o->{bootloader}, $1, $2);
    }

    if (arch() =~ /alpha/) {
	if (my $dev = fsedit::get_root($o->{fstab})) {
	    $o->{bootloader}{boot} ||= "/dev/$dev->{rootDevice}";
	    $o->{bootloader}{root} ||= "/dev/$dev->{device}";
	    $o->{bootloader}{part_nb} ||= first($dev->{device} =~ /(\d+)/);
	}
    } else {
	#- check for valid fb mode to enable a default boot with frame buffer.
	my $vga = $o->{allowFB} && (!detect_devices::matching_desc('3D Rage LT') &&
				    !detect_devices::matching_desc('Rage Mobility [PL]') &&
				    !detect_devices::matching_desc('i740') &&
				    !detect_devices::matching_desc('Matrox') &&
				    !detect_devices::matching_desc('Tseng.*ET6\d00') &&
				    !detect_devices::matching_desc('SiS.*SG86C2.5') &&
				    !detect_devices::matching_desc('SiS.*559[78]') &&
				    !detect_devices::matching_desc('SiS.*300') &&
				    !detect_devices::matching_desc('SiS.*540') &&
				    !detect_devices::matching_desc('SiS.*6C?326') &&
				    !detect_devices::matching_desc('SiS.*6C?236') &&
				    !detect_devices::matching_desc('Voodoo [35]|Voodoo Banshee') && #- 3d acceleration seems to bug in fb mode
				    !detect_devices::matching_desc('8281[05].* CGC') #- i810 now have FB support during install but we disable it afterwards
				   );
	my $force_vga = $o->{allowFB} && (detect_devices::matching_desc('SiS.*630') || #- SiS 630 need frame buffer.
					  detect_devices::matching_desc('GeForce.*Integrated') #- needed for fbdev driver (hack).
					 );

	#- propose the default fb mode for kernel fb, if aurora or bootsplash is installed.
	my $need_fb = any {
	    my $p = pkgs::packageByName($o->{packages}, $_);
	    $p && $p->flag_installed;
	} 'Aurora', 'bootsplash';
        bootloader::suggest($o->{bootloader}, $o->{all_hds}{hds}, $o->{fstab},
			    vga_fb => ($force_vga || $vga && $need_fb) && $o->{vga}, 
			    quiet => $o->{meta_class} ne 'server');
	bootloader::suggest_floppy($o->{bootloader}) if $o->{security} <= 3 && arch() !~ /ppc/;

	$o->{bootloader}{keytable} ||= keyboard::keyboard2kmap($o->{keyboard});
    }
}

sub setupBootloader {
    my ($o) = @_;
    return if $::g_auto_install;

    if (arch() =~ /alpha/) {
	return if $::testing;
	my $b = $o->{bootloader};
	$b->{boot} or $o->ask_warn('', "Can't install aboot, not a bsd disklabel"), return;
		
	run_program::rooted($o->{prefix}, "swriteboot", $b->{boot}, "/boot/bootlx") or do {
	    cdie "swriteboot failed";
	    run_program::rooted($o->{prefix}, "swriteboot", "-f1", $b->{boot}, "/boot/bootlx");
	};
	run_program::rooted($o->{prefix}, "abootconf", $b->{boot}, $b->{part_nb});
 
        modules::load('loop');
	output "$o->{prefix}/etc/aboot.conf", 
	map_index { -e "$o->{prefix}/boot/initrd-$_->[1]" ? 
			    "$::i:$b->{part_nb}$_->[0] root=$b->{root} initrd=/boot/initrd-$_->[1] $b->{perImageAppend}\n" :
			    "$::i:$b->{part_nb}$_->[0] root=$b->{root} $b->{perImageAppend}\n" }
	map { run_program::rooted($o->{prefix}, "mkinitrd", "-f", "/boot/initrd-$_->[1]", "--ifneeded", $_->[1]);
	  $_ } grep { $_->[0] && $_->[1] }
	map { [ m|$o->{prefix}(/boot/vmlinux-(.*))| ] } glob_("$o->{prefix}/boot/vmlinux-*");
#	output "$o->{prefix}/etc/aboot.conf", 
#	  map_index { "$::i:$b->{part_nb}$_ root=$b->{root} $b->{perImageAppend}\n" }
#	    map { /$o->{prefix}(.*)/ } eval { glob_("$o->{prefix}/boot/vmlinux*") };
    } else {
	require bootloader;
	bootloader::install($o->{bootloader}, $o->{fstab}, $o->{all_hds}{hds});
    }
}

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

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

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

    require Xconfig::main;
    Xconfig::main::configure_everything_auto_install($o->{raw_X}, $o->do_pkgs, $o->{X},
			  { allowFB          => $o->{allowFB},
			    allowNVIDIA_rpms => install_any::allowNVIDIA_rpms($o->{packages}),
			  });
    configureXAfter($o);
}
sub configureXAfter {
    my ($o) = @_;
    if ($o->{X}{bios_vga_mode}) {
	install_any::setupFB($o, $o->{X}{bios_vga_mode}) or do {
	    log::l("disabling automatic start-up of X11 if any as setup framebuffer failed");
	    Xconfig::various::runlevel(3); #- disable automatic start-up of X11 on error.
	};
    }
    if ($o->{X}{default_depth} >= 16 && $o->{X}{resolution_wanted} >= 1024) {
	log::l("setting large icon style for kde");
	install_any::kderc_largedisplay($o->{prefix});
    }
}

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

    my %s = getVarsFromSh("$o->{prefix}/etc/sysconfig/system");
    $o->{miscellaneous}{HDPARM} = $s{HDPARM} if exists $s{HDPARM};
    require security::level;
    require security::various;
    $o->{security} ||= security::level::get() || ($o->{meta_class} =~ /server|firewall/ ? 3 : 2);
    $o->{security_user} ||= security::various::config_security_user($o->{prefix});
    $o->{libsafe} ||= security::various::config_libsafe($o->{prefix});

    log::l("security $o->{security}");

    add2hash_($o->{miscellaneous} ||= {}, { numlock => !detect_devices::isLaptop() });
}
sub miscellaneous {
    my ($_o) = @_;
    #- keep some given parameters
    #-TODO
}
sub miscellaneousAfter {
    my ($o) = @_;
    add2hash_ $o, { useSupermount => 0 };

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

    addToBeDone {
	mkdir_p("$o->{prefix}/etc/security/msec");
	symlink "server.$o->{security}", "$o->{prefix}/etc/security/msec/server" if $o->{security} > 3;
	setVarsInSh("$o->{prefix}/etc/sysconfig/msec", { SECURE_LEVEL => $o->{security} });
    } 'formatPartitions';

    addToBeDone {
	setVarsInSh("$o->{prefix}/etc/sysconfig/system", { 
            CLASS => $::expert && 'expert' || 'beginner',
            SECURITY => $o->{security},
	    META_CLASS => $o->{meta_class} || 'PowerPack',
        });
	substInFile { s/KEYBOARD_AT_BOOT=.*/KEYBOARD_AT_BOOT=yes/ } "$o->{prefix}/etc/sysconfig/usb" if detect_devices::usbKeyboards();

    } 'installPackages';
}

#------------------------------------------------------------------------------
sub exitInstall { 
    my ($o) = @_;
    eval { 
	my $report = '/root/drakx/report.bug';
	unlink "$::prefix$report", "$::prefix$report.gz";
	output "$::prefix$report", install_any::report_bug($o->{prefix});
	run_program::rooted($::prefix, 'gzip', $report);
    };
    install_any::getAndSaveAutoInstallFloppy($o, 1, "$o->{prefix}/root/drakx/replay_install.img");
    eval { output "$o->{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 Mandrake tools rely on the contents of some
of these files... so remove any file from here at your own
risk!
" };
    install_any::unlockCdrom();
    install_any::log_sizes($o);
}

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

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

    #- do not destroy this file if prefix is '' or even '/' (could it happens ?).
    if (length($o->{prefix}) > 1) {
	symlinkf("$o->{prefix}/etc/$_", "/etc/$_") foreach qw(resolv.conf protocols services);
    }
    member($o->{method}, qw(ftp http nfs)) and return 1;
    modules::write_conf($o->{prefix});
    if (hasNetwork($o)) {
	if ($o->{netcnx}{type} =~ /adsl|lan|cable/) {
	    require network::netconnect;
	    network::netconnect::start_internet($o);
	    return 1;
	} elsif (!$pppAvoided) {
	    eval { modules::load(qw(serial ppp bsd_comp ppp_deflate)) };
	    run_program::rooted($o->{prefix}, "/etc/rc.d/init.d/syslog", "start");
	    require network::netconnect;
	    network::netconnect::start_internet($o);
	    return 1;
	}
    }
    $::testing;
}

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

    $o->{method} eq "ftp" || $o->{method} eq "http" || $o->{method} eq "nfs" and return 1;
    modules::write_conf($o->{prefix});
    if (hasNetwork($o)) {
	if (!$costlyOnly) {
	    require network::netconnect;
	    network::netconnect::stop_internet($o);
	    return 1;
	} elsif ($o->{netc}{type} !~ /adsl|lan|cable/) {
	    require network::netconnect;
	    network::netconnect::stop_internet($o);
	    run_program::rooted($o->{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 "$o->{prefix}/$_" && -e "$o->{prefix}/$_.mdkgisave") {
		rename "$o->{prefix}/$_", "$o->{prefix}/$_.mdkginew"; #- keep new files around in case !
		rename "$o->{prefix}/$_.mdkgisave", "$o->{prefix}/$_";
	    }
	}
    }
}


1;
id='n5701' href='#n5701'>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
# translation of de.po to deutsch
# translation of de.po to
# german translation of the MandrivaInstaller.
# Copyright (C) 2000-2003 Mandriva S.A.
#
#
# Stefan Siegel <siegel@linux-mandrake.com>, 2000, 2001, 2002, 2003.
# Sebastian Deutscher <sebastian.deutscher@web.de>, 2003,2004,2006.
# Gerhard Ortner <gerhard.ortner@aon.at>, 2003, 2004.
# Roy Steuber <roysteuber@mittweida-net.de>, 2004.
# Marcus Fischer <i18n@marcusfischer.com>, 2004.
# Frank Köster <frank@dueppel13.de>, 2004, 2005.
# Ronny Standtke <Ronny.Standtke@gmx.de>, 2003, 2004.
# Ronny Standtke <Ronny.Standtke@gmx.net>, 2004, 2005.
# Nicolas Bauer <webmaster@mandrakeusers.de>, 2005, 2006.
# Frank Koester <frank@dueppel13.de>, 2005.Frank Koester <frank@dueppel13.de>, 2006.
# Nicolas Bauer <rastafarii@mandrivauer.de>, 2006, 2007.
# Nicolas Bauer <rastafarii@mandrivauser.de>, 2007.
msgid ""
msgstr ""
"Project-Id-Version: de\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2007-09-12 17:02+0200\n"
"PO-Revision-Date: 2007-08-29 19:27+0200\n"
"Last-Translator: Nicolas Bauer <rastafarii@mandrivauser.de>\n"
"Language-Team: deutsch\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms:  nplurals=2; plural=(n != 1);\n"

#: any.pm:240 diskdrake/interactive.pm:603 diskdrake/interactive.pm:790
#: diskdrake/interactive.pm:834 diskdrake/interactive.pm:896
#: diskdrake/interactive.pm:1183 do_pkgs.pm:209 do_pkgs.pm:255
#: harddrake/sound.pm:201 interactive.pm:576
#, c-format
msgid "Please wait"
msgstr "Bitte warten"

#: any.pm:240
#, c-format
msgid "Bootloader installation in progress"
msgstr "Installation des Bootloaders ..."

#: any.pm:251
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s.  However, changing\n"
"the Volume ID of a Windows NT, 2000, or XP boot disk is a fatal Windows "
"error.\n"
"This caution does not apply to Windows 95 or 98, or to NT data disks.\n"
"\n"
"Assign a new Volume ID?"
msgstr ""
"LILO möchte dem Laufwerk %s eine neue Datenträger-ID zuweisen. Jedoch ist\n"
"das Ändern der Datenträger-ID einer Windows NT, 2000, oder XP Startplatte\n"
"ein fataler Windows-Fehler.\n"
"Dies trifft nicht für Windows 95, 98, oder NT Datenplatten zu.\n"
"\n"
"Neue Datenträger-ID zuweisen?"

#: any.pm:262
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr ""
"Die Installation des Betriebssytemstarters schlug fehl. Folgender Fehler "
"trat auf:"

#: any.pm:268
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
" enable the bootloader.  If you do not see the bootloader prompt at\n"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""
"Sie müssen Ihr Open-Firmware-Boot-Gerät anpassen, dass es den \n"
"Betriebssytemstarter erkennt. Falls Sie beim Neustart nicht die \n"
"Eingabeaufforderung des Betriebssytemstarters sehen, drücken Sie \n"
"Strg-Option-O-F und geben Sie folgendes ein:\n"
" setenv boot-device %s,\\\\:tbxi\n"
"Tippen Sie dann: shut-down\n"
"Beim darauffolgenden Neustart sollte Sie die Eingabeaufforderung sehen."

#: any.pm:306
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
"This implies you already have a bootloader on the hard drive you boot (eg: "
"System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
"Sie haben sich entschieden, Ihren Bootloader auf eine Partition\n"
"zu installieren. Das impliziert, dass Sie einen anderen Bootloader im Master-"
"Boot-Record haben (etwa System Commander).\n"
"\n"
"Von welchem Laufwerk wollen Sie booten?"

#: any.pm:329
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Erster Sektor der Platte (MBR)"

#: any.pm:330
#, c-format
msgid "First sector of the root partition"
msgstr "Erster Sektor der Root-Partition"

#: any.pm:332
#, c-format
msgid "On Floppy"
msgstr "Auf Diskette"

#: any.pm:334
#, c-format
msgid "Skip"
msgstr "Ãœberspringen"

#: any.pm:338
#, c-format
msgid "LILO/grub Installation"
msgstr "LILO/Grub-Installation"

#: any.pm:340
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Wo soll der Bootloader installiert werden?"

#: any.pm:367
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfiguration der Boot-Einstellungen"

#: any.pm:377 any.pm:409 any.pm:410
#, c-format
msgid "Bootloader main options"
msgstr "Haupt-Optionen des Bootloaders"

#: any.pm:382
#, c-format
msgid "Bootloader"
msgstr "Bootloader"

#: any.pm:383 any.pm:414
#, c-format
msgid "Bootloader to use"
msgstr "Zu verwendender Bootloader"

#: any.pm:385 any.pm:416
#, c-format
msgid "Boot device"
msgstr "Boot-Gerät"

#: any.pm:387
#, c-format
msgid "Main options"
msgstr "Haupt Optionen"

#: any.pm:388
#, c-format
msgid "Delay before booting default image"
msgstr "Wartezeit vor dem Starten des Betriebssystems"

#: any.pm:389
#, c-format
msgid "Enable ACPI"
msgstr "ACPI aktivieren"

#: any.pm:390
#, c-format
msgid "Enable APIC"
msgstr "APIC aktivieren"

#: any.pm:391
#, c-format
msgid "Enable Local APIC"
msgstr "Lokales APIC aktivieren"

#: any.pm:393 any.pm:773 authentication.pm:196 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Password"
msgstr "Passwort"

#: any.pm:395 authentication.pm:207
#, c-format
msgid "The passwords do not match"
msgstr "Die Passwörter stimmen nicht überein"

#: any.pm:395 authentication.pm:207 diskdrake/interactive.pm:1343
#, c-format
msgid "Please try again"
msgstr "Bitte versuchen Sie es erneut"

#: any.pm:396
#, c-format
msgid "You can not use a password with %s"
msgstr "Sie können kein Passwort welches %s enthält verwenden"

#: any.pm:399 any.pm:774 authentication.pm:197
#, c-format
msgid "Password (again)"
msgstr "Passwort (erneut)"

#: any.pm:400
#, c-format
msgid "Restrict command line options"
msgstr "Gebrauch der Kommandozeilen-Parameter einschränken"

#: any.pm:400
#, c-format
msgid "restrict"
msgstr "einschränken"

#: any.pm:401
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Die Option „Gebrauch der Kommandozeilen-Parameter einschränken“ ist ohne \n"
"Angabe eines Passwortes wirkungslos."

#: any.pm:403
#, c-format
msgid "Clean /tmp at each boot"
msgstr " „/tmp“ bei jedem Systemstart säubern"

#: any.pm:404
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Genaue RAM-Größe, falls nötig (%d MB gefunden)"

#: any.pm:405
#, c-format
msgid "Give the ram size in MB"
msgstr "Geben Sie die RAM-Größe in MB an"

#: any.pm:415
#, c-format
msgid "Init Message"
msgstr "Init-Nachricht"

#: any.pm:417
#, c-format
msgid "Open Firmware Delay"
msgstr "Open-Firmware-Verzögerung"

#: any.pm:418
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Kernel-Start-Wartezeit"

#: any.pm:419
#, c-format
msgid "Enable CD Boot?"
msgstr "Booten von CD erlauben?"

#: any.pm:420
#, c-format
msgid "Enable OF Boot?"
msgstr "Open-Firmware-Start erlauben?"

#: any.pm:421
#, c-format
msgid "Default OS?"
msgstr "Standard-OS?"

#: any.pm:487
#, c-format
msgid "Image"
msgstr "Abbild"

#: any.pm:488 any.pm:501
#, c-format
msgid "Root"
msgstr "Root"

#: any.pm:489 any.pm:514
#, c-format
msgid "Append"
msgstr "Ãœbergeben"

#: any.pm:491
#, c-format
msgid "Xen append"
msgstr "Xen hinzufügen"

#: any.pm:494
#, c-format
msgid "Video mode"
msgstr "Video-Modus"

#: any.pm:496
#, c-format
msgid "Initrd"
msgstr "Init-RamDisk"

#: any.pm:497
#, c-format
msgid "Network profile"
msgstr "Netzwerk Profil"

#: any.pm:506 any.pm:511 any.pm:513 diskdrake/interactive.pm:425
#, c-format
msgid "Label"
msgstr "Bezeichnung"

#: any.pm:508 any.pm:516 harddrake/v4l.pm:438
#, c-format
msgid "Default"
msgstr "Standard"

#: any.pm:515
#, c-format
msgid "NoVideo"
msgstr "NoVideo"

#: any.pm:526
#, c-format
msgid "Empty label not allowed"
msgstr "Leere Einträge sind nicht erlaubt"

#: any.pm:527
#, c-format
msgid "You must specify a kernel image"
msgstr "Sie müssen ein Kernel-Image angeben"

#: any.pm:527
#, c-format
msgid "You must specify a root partition"
msgstr "Sie müssen die Root-Partition festlegen"

#: any.pm:528
#, c-format
msgid "This label is already used"
msgstr "Dieser Eintrag existiert bereits"

#: any.pm:546
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Welche Art Eintrag wollen Sie hinzufügen?"

#: any.pm:547
#, c-format
msgid "Linux"
msgstr "Linux"

#: any.pm:547
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Anderes OS (SunOS...)"

#: any.pm:548
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Anderes OS (MacOS ...)"

#: any.pm:548
#, c-format
msgid "Other OS (Windows...)"
msgstr "Anderes OS (Windows ...)"

#: any.pm:576
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
"Hier sind die verschiedenen Einträge.\n"
"Sie können weitere hinzufügen oder existierende ändern."

#: any.pm:727
#, c-format
msgid "access to X programs"
msgstr "Zugriff auf X-Programme"

#: any.pm:728
#, c-format
msgid "access to rpm tools"
msgstr "Zugriff auf RPM-Werkzeuge"

#: any.pm:729
#, c-format
msgid "allow \"su\""
msgstr "„su“ erlauben"

#: any.pm:730
#, c-format
msgid "access to administrative files"
msgstr "Zugriff auf Verwaltungsdateien"

#: any.pm:731
#, c-format
msgid "access to network tools"
msgstr "Zugriff auf Netzwerk-Werkzeuge"

#: any.pm:732
#, c-format
msgid "access to compilation tools"
msgstr "Zugriff auf Compilier-Werkzeuge"

#: any.pm:737
#, c-format
msgid "(already added %s)"
msgstr "(%s wurde bereits hinzugefügt)"

#: any.pm:744
#, c-format
msgid "Please give a user name"
msgstr "Bitte geben Sie einen Benutzernamen an"

#: any.pm:745
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Der Benutzername sollte nur aus Kleinbuchstaben, Ziffern, \n"
"„-“ und „_“ bestehen"

#: any.pm:746
#, c-format
msgid "The user name is too long"
msgstr "Dieser Benutzername ist zu lang"

#: any.pm:747
#, c-format
msgid "This user name has already been added"
msgstr "Dieser Benutzername existiert bereits"

#: any.pm:748 any.pm:776
#, c-format
msgid "User ID"
msgstr "Benutzer ID"

#: any.pm:749 any.pm:777
#, c-format
msgid "Group ID"
msgstr "Gruppen ID"

#: any.pm:752
#, c-format
msgid "%s must be a number"
msgstr "%s muss eine Zahl sein"

#: any.pm:753
#, c-format
msgid "%s should be above 500. Accept anyway?"
msgstr "%s sollte größer als 500 sein. Trotzdem akzeptieren?"

#: any.pm:768
#, c-format
msgid "User management"
msgstr "Benutzerverwaltung"

#: any.pm:775 authentication.pm:182
#, c-format
msgid "Set administrator (root) password"
msgstr "Administratorpasswort setzen"

#: any.pm:780
#, c-format
msgid "Enter a user"
msgstr "Benutzer einrichten"

#: any.pm:781
#, c-format
msgid "Real name"
msgstr "Vollständiger Name"

#: any.pm:772
#, c-format
msgid "Login name"
msgstr "Benutzername"

#: any.pm:775
#, c-format
msgid "Shell"
msgstr "Shell"

#: any.pm:822 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "Automatisch anmelden"

#: any.pm:823
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Ich kann Ihren Computer so einrichten, dass ein Benutzer automatisch "
"angemeldet wird."

#: any.pm:824
#, c-format
msgid "Use this feature"
msgstr "Diese Möglichkeit nutzen"

#: any.pm:825
#, c-format
msgid "Choose the default user:"
msgstr "Wählen Sie den Standard-Nutzer:"

#: any.pm:826
#, c-format
msgid "Choose the window manager to run:"
msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:"

#: any.pm:854
#, c-format
msgid "License agreement"
msgstr "Lizenzvereinbarung"

#: any.pm:857 diskdrake/dav.pm:26
#, c-format
msgid "Quit"
msgstr "Verlassen"

#: any.pm:860
#, c-format
msgid "Release Notes"
msgstr "Versionshinweise"

#: any.pm:863
#, c-format
msgid "Accept"
msgstr "Akzeptieren"

#: any.pm:863
#, c-format
msgid "Refuse"
msgstr "Ablehnen"

#: any.pm:882 any.pm:950
#, c-format
msgid "Please choose a language to use."
msgstr "Bitte wählen Sie die zu verwendende Sprache."

#: any.pm:883 any.pm:951
#, c-format
msgid "Language choice"
msgstr "Sprachauswahl"

#: any.pm:913
#, c-format
msgid ""
"Mandriva Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr ""
"Mandriva Linux unterstützt verschiedene Sprachen. Wählen\n"
"Sie die Sprachen, die Sie installieren wollen.Diese stehen Ihnen zur\n"
"Verfügung, nachdem die Installation fertig ist und Sie einen Neustart\n"
"durchgeführt haben."

#: any.pm:916
#, c-format
msgid "Multi languages"
msgstr "Mehrere Sprachen"

#: any.pm:928 any.pm:959
#, c-format
msgid "Old compatibility (non UTF-8) encoding"
msgstr "Alte (nicht UTF-8) Kodierung"

#: any.pm:930
#, c-format
msgid "All languages"
msgstr "Alle Sprachen"

#: any.pm:1005
#, c-format
msgid "Country / Region"
msgstr "Staat / Region"

#: any.pm:1007
#, c-format
msgid "Please choose your country."
msgstr "Bitte wählen Sie Ihren Staat."

#: any.pm:1009
#, c-format
msgid "Here is the full list of available countries"
msgstr "Hier ist die komplette Liste aller Staaten"

#: any.pm:1010
#, c-format
msgid "Other Countries"
msgstr "Andere Länder"

#: any.pm:1010 interactive.pm:477
#, c-format
msgid "Advanced"
msgstr "Fortgeschritten"

#: any.pm:1016
#, c-format
msgid "Input method:"
msgstr "Einagbe-Methode:"

#: any.pm:1019
#, c-format
msgid "None"
msgstr "Keine"

#: any.pm:1099
#, c-format
msgid "No sharing"
msgstr "Keine Freigaben"

#: any.pm:1099
#, c-format
msgid "Allow all users"
msgstr "Allen Benutzern erlauben"

#: any.pm:1099
#, c-format
msgid "Custom"
msgstr "Benutzerdefiniert"

#: any.pm:1103
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"Wollen Sie Benutzern erlaubern, Verzeichnisse freizugeben?\n"
"Wenn Sie das erlauben, können die Anwender Verzeichnisse in Konqueror oder "
"Nautilus im Kontextmenü des entsprechenden Verzeichnisses freigeben.\n"
"\n"
"Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Benutzer vornehmen.\n"

#: any.pm:1115
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
"NFS: das traditionelle Unix-Dateisystem für Freigaben im Netz, mit weniger "
"Unterstützung für Mac und Windows."

#: any.pm:1118
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
"systems."
msgstr ""
"SMB: ein Dateisystem für Freigaben im Netz von Windows, Mac OS X und vielen "
"modernen Linux-Systemen verwendet"

#: any.pm:1126
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr ""
"Sie können die Dateien mittels SMB oder NFS anbieten. Welche Variante wollen "
"Sie?"

#: any.pm:1151
#, c-format
msgid "Launch userdrake"
msgstr "UserDrake starten"

#: any.pm:1151 interactive/gtk.pm:747
#, c-format
msgid "Close"
msgstr "Schließen"

#: any.pm:1153
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"Die Freigaben zwischen Benutzern regelt die Gruppe „fileshare“. \n"
"Sie können UserDrake verwenden, um Benutzer in diese Gruppe aufzunehmen."

#: any.pm:1245
#, c-format
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Bitte melden Sie sich ab und drücken Sie Ctrl-Alt-Rücktaste"

#: any.pm:1249
#, c-format
msgid "You need to log out and back in again for changes to take effect"
msgstr ""
"Sie müssen sich abmelden und wieder anmelden, damit die Änderungen  wirksam "
"werden"

#: any.pm:1284
#, c-format
msgid "Timezone"
msgstr "Zeitzone"

#: any.pm:1284
#, c-format
msgid "Which is your timezone?"
msgstr "Wählen Sie Ihre Zeitzone"

#: any.pm:1296 any.pm:1298
#, c-format
msgid "Date, Clock & Time Zone Settings"
msgstr "Datum, Zeit und Zeitzonen Einstellungen"

#: any.pm:1299
#, c-format
msgid "What is the best time?"
msgstr "Was ist die beste Zeit?"

#: any.pm:1303
#, c-format
msgid "%s (hardware clock set to UTC)"
msgstr "%s (Hardware Uhr gestellt auf GMT)"

#: any.pm:1304
#, c-format
msgid "%s (hardware clock set to local time)"
msgstr "%s (Hardware Uhr gestellt auf Ortszeit)"

#: any.pm:1306
#, c-format
msgid "NTP Server"
msgstr "NTP-Server"

#: any.pm:1307
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische Zeit-Synchronisation (durch NTP)"

#: authentication.pm:23
#, c-format
msgid "Local file"
msgstr "Lokale Datei"

#: authentication.pm:24
#, c-format
msgid "LDAP"
msgstr "LDAP"

#: authentication.pm:25
#, c-format
msgid "NIS"
msgstr "NIS"

#: authentication.pm:26
#, c-format
msgid "Smart Card"
msgstr "Chipkarte"

#: authentication.pm:27 authentication.pm:163
#, c-format
msgid "Windows Domain"
msgstr "Windows-Domäne"

#: authentication.pm:28
#, c-format
msgid "Active Directory with SFU"
msgstr "Active Directory mit SFU"

#: authentication.pm:29
#, c-format
msgid "Active Directory with Winbind"
msgstr "Active Directory mit Winbind"

#: authentication.pm:66
#, c-format
msgid "Local file:"
msgstr "Lokale Datei:"

#: authentication.pm:66
#, c-format
msgid "Use information stored in local files for all authentication"
msgstr ""

#: authentication.pm:67
#, c-format
msgid "LDAP:"
msgstr "LDAP:"

#: authentication.pm:67
#, c-format
msgid ""
"Tells your computer to use LDAP for some or all authentication. LDAP "
"consolidates certain types of information within your organization."
msgstr ""
"Richtet Ihren Rechner so ein, dass er LDAP für die Authentifizierung."
"verwendet. LDAP führt bestimmte Informationen innerhalb Ihrer Organisation "
"zusammen."

#: authentication.pm:68
#, c-format
msgid "NIS:"
msgstr "NIS:"

#: authentication.pm:68
#, c-format
msgid ""
"Allows you to run a group of computers in the same Network Information "
"Service domain with a common password and group file."
msgstr ""
"Erlaubt es Ihnen, eine Gruppe von Rechnern in der gleichen NIS-Domäne mit "
"einer gemeinsamen Passwort- und Gruppendatei laufen zu lassen."

#: authentication.pm:69
#, c-format
msgid "Windows Domain:"
msgstr "Windows-Domäne:"

#: authentication.pm:69
#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
msgstr ""
"Winbind ermöglicht dem System, aus einer Windows-Domäne Informationen "
"abzufragen und Nutzer zu authentifizieren."

#: authentication.pm:70
#, c-format
msgid "Active Directory with SFU:"
msgstr "Active Directory mit SFU:"

#: authentication.pm:70
#, c-format
msgid "With Kerberos and Ldap for authentication in Active Directory Server "
msgstr ""
"Mit Kerberos und LDAP zur Authentifizierung gegen einen Active Directory "
"Server "

#: authentication.pm:71
#, c-format
msgid "Active Directory with Winbind:"
msgstr "Active Directory mit Winbind:"

#: authentication.pm:71
#, c-format
msgid ""
"Winbind allows the system to authenticate users in a Windows Active "
"Directory Server."
msgstr ""
"Winbind ermöglicht dem System, Benutzer gegen einen Windows Active Directory "
"Server zu authentifizieren."

#: authentication.pm:96
#, c-format
msgid "Authentication LDAP"
msgstr "LDAP-Authentifizierung"

#: authentication.pm:97
#, c-format
msgid "LDAP Base dn"
msgstr "LDAP-Basis-Domäne"

#: authentication.pm:98
#, c-format
msgid "LDAP Server"
msgstr "LDAP-Server"

#: authentication.pm:111 fsedit.pm:23
#, c-format
msgid "simple"
msgstr "Einfach"

#: authentication.pm:112
#, c-format
msgid "TLS"
msgstr "TLS"

#: authentication.pm:113
#, c-format
msgid "SSL"
msgstr "SSL"

#: authentication.pm:114
#, c-format
msgid "security layout (SASL/Kerberos)"
msgstr "Sicherheitstyp (SASL/Kerberos)"

#: authentication.pm:121 authentication.pm:159
#, c-format
msgid "Authentication Active Directory"
msgstr "Authentifizierungsmethode für Active Directory"

#: authentication.pm:122 diskdrake/smbnfs_gtk.pm:182
#, c-format
msgid "Domain"
msgstr "Domäne"

#: authentication.pm:124 diskdrake/dav.pm:63
#, c-format
msgid "Server"
msgstr "Server"

#: authentication.pm:125
#, c-format
msgid "LDAP users database"
msgstr "LDAP Benutzer-Datenbank"

#: authentication.pm:126
#, c-format
msgid "Use Anonymous BIND "
msgstr "anonymes BIND verwenden"

#: authentication.pm:127
#, c-format
msgid "LDAP user allowed to browse the Active Directory"
msgstr "LDAP-Benutzer darf das Active Directory einsehen"

#: authentication.pm:128
#, c-format
msgid "Password for user"
msgstr "Benutzerpasswort"

#: authentication.pm:140
#, c-format
msgid "Authentication NIS"
msgstr "NIS-Authentifizierung"

#: authentication.pm:141
#, c-format
msgid "NIS Domain"
msgstr "NIS-Domäne"

#: authentication.pm:142
#, c-format
msgid "NIS Server"
msgstr "NIS-Server"

#: authentication.pm:147
#, c-format
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
"run: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /"
"add and reboot the server.\n"
"You will also need the username/password of a Domain Admin to join the "
"machine to the Windows(TM) domain.\n"
"If networking is not yet enabled, Drakx will attempt to join the domain "
"after the network setup step.\n"
"Should this setup fail for some reason and domain authentication is not "
"working, run 'smbpasswd -j DOMAIN -U USER%%PASSWORD' using your Windows(tm) "
"Domain, and Admin Username/Password, after system boot.\n"
"The command 'wbinfo -t' will test whether your authentication secrets are "
"good."
msgstr ""
"Damit dies mit einem Windows 2000-Domänen-Controller funktioniert, muss der "
"Administrator wahrscheinlich folgendes ausführen: „C:\\>net localgroup \"Pre-"
"Windows 2000 Compatible Access\" everyone /add“. Anschließend muss der "
"Server neu gestartet werden.\n"
"Damit Sie Ihren Mandriva Linux-Rechner zur Windows™-Domäne hinzufügen "
"können, benötigen Sie noch Benutzername und Passwort eines Domänen-"
"Administrators.\n"
"Sollte das Netzwerk noch nicht aktiv sein, wird DrakX nach der "
"Netzwerkkonfiguration versuchen, sich in die Domäne zu integrieren.\n"
"Sollte dies schief gehen, und die Domänenauthentifizierung funktioniert "
"nicht, verwenden Sie nach der Installation von Mandriva Linux folgenden "
"Befehl: „smbpasswd -j DOMÄNE -U BENUTZER%%PASSWORT“, wobei „DOMÄNE“ die "
"Windows™-Domäne ist, „BENUTZER“ und „PASSWORT“ der Benutzername und das "
"Passwort des Domänen-Administrators.\n"
"Mit „wbinfo -t“ können Sie anschließend testen, ob die Anmeldung erfolgreich "
"war."

#: authentication.pm:159
#, c-format
msgid "Authentication Windows Domain"
msgstr "Windows-Domänen-Authentifizierung"

#: authentication.pm:161
#, c-format
msgid "Active Directory Realm "
msgstr "Active Directory Realm "

#: authentication.pm:164
#, c-format
msgid "Domain Admin User Name"
msgstr "Name des Domänen-Administrators"

#: authentication.pm:165
#, c-format
msgid "Domain Admin Password"
msgstr "Passwort des Domänen-Administrators"

#: authentication.pm:181 authentication.pm:198
#, c-format
msgid "Authentication"
msgstr "Authentifizierung"

#: authentication.pm:184
#, c-format
msgid "Authentication method"
msgstr "Authentifizierungsmethode"

#. -PO: keep this short or else the buttons will not fit in the window
#: authentication.pm:189
#, c-format
msgid "No password"
msgstr "Kein Passwort"

#: authentication.pm:210
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"

#: authentication.pm:351
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr ""
"Ich kann kein Broadcast machen,\n"
"da keine NIS-Domäne angegeben wurde."

# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: bootloader.pm:882
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
"\n"
"Choose an operating system from the list above or\n"
"wait for default boot.\n"
"\n"
msgstr ""
"Willkommen zum Bootloader!\n"
"\n"
"Markieren Sie in obiger Liste ein Betriebssystem\n"
"oder warten Sie auf das Starten des Standard-OS.\n"
"\n"

#: bootloader.pm:1030
#, c-format
msgid "LILO with text menu"
msgstr "LILO mit Textmenü"

#: bootloader.pm:1031
#, c-format
msgid "GRUB with graphical menu"
msgstr "GRUB mit grafischem Menü"

#: bootloader.pm:1032
#, c-format
msgid "GRUB with text menu"
msgstr "GRUB mit Textmenü"

#: bootloader.pm:1033
#, c-format
msgid "Yaboot"
msgstr "Yaboot"

#: bootloader.pm:1034
#, c-format
msgid "SILO"
msgstr "SILO"

#: bootloader.pm:1114
#, c-format
msgid "not enough room in /boot"
msgstr "Sie haben nicht genug Platz in „/boot“"

#: bootloader.pm:1681
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr ""
"Sie können den Bootloader\n"
"nicht auf einer %s Partition installieren!\n"

#: bootloader.pm:1734
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr ""
"Ihere Bootloaderkonfiguration muss geändert werden, da sich Ihre "
"Partitionsnummerierung geändert hat"

#: bootloader.pm:1747
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
"choose \"%s\""
msgstr ""
"Das Startabbild konnte nicht korrekt installiert werden. Rettungsmodus "
"starten und „%s“ wählen."

#: bootloader.pm:1748
#, c-format
msgid "Re-install Boot Loader"
msgstr "BS-Starter neu installieren"

#: common.pm:132
#, c-format
msgid "B"
msgstr "B"

#: common.pm:132
#, c-format
msgid "KB"
msgstr "KB"

#: common.pm:132
#, c-format
msgid "MB"
msgstr "MB"

#: common.pm:132
#, c-format
msgid "GB"
msgstr "GB"

#: common.pm:132 common.pm:141
#, c-format
msgid "TB"
msgstr "TB"

#: common.pm:149
#, c-format
msgid "%d minutes"
msgstr "%d Minuten"

#: common.pm:151
#, c-format
msgid "1 minute"
msgstr "1 Minute"

#: common.pm:153
#, c-format
msgid "%d seconds"
msgstr "%d Sekunden"

#: common.pm:306
#, c-format
msgid "command %s missing"
msgstr "Kommando %s fehlt"

#: diskdrake/dav.pm:17
#, c-format
msgid ""
"WebDAV is a protocol that allows you to mount a web server's directory\n"
"locally, and treat it like a local filesystem (provided the web server is\n"
"configured as a WebDAV server). If you would like to add WebDAV mount\n"
"points, select \"New\"."
msgstr ""
"WebDAV ist ein Protokoll, dass es Ihnen erlaubt, Webserver-Verzeichnisse\n"
"einzuhängen, sodass Sie diese wie bei lokalen Dateisystemen verwenden\n"
"können (sofern der Webserver als WebDAV-Server eingerichtet wurde). \n"
"Falls Sie Einhängepunkte für WebDAV hinzufügen wollen, wählen Sie\n"
"„Neu“."

#: diskdrake/dav.pm:25
#, c-format
msgid "New"
msgstr "Neu"

#: diskdrake/dav.pm:61 diskdrake/interactive.pm:431 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "Aushängen"

#: diskdrake/dav.pm:62 diskdrake/interactive.pm:428 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "Einhängen"

#: diskdrake/dav.pm:64 diskdrake/interactive.pm:422
#: diskdrake/interactive.pm:662 diskdrake/interactive.pm:680
#: diskdrake/interactive.pm:684 diskdrake/removable.pm:23
#: diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
msgstr "Einhängepunkt"

#: diskdrake/dav.pm:65 diskdrake/interactive.pm:424
#: diskdrake/interactive.pm:1039 diskdrake/removable.pm:24
#: diskdrake/smbnfs_gtk.pm:80
#, c-format
msgid "Options"
msgstr "Optionen"

#: diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:166 diskdrake/removable.pm:26
#: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151
#, c-format
msgid "Done"
msgstr "Fertig"

#: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:115 diskdrake/interactive.pm:229
#: diskdrake/interactive.pm:242 diskdrake/interactive.pm:386
#: diskdrake/interactive.pm:404 diskdrake/interactive.pm:529
#: diskdrake/interactive.pm:534 diskdrake/interactive.pm:652
#: diskdrake/interactive.pm:914 diskdrake/interactive.pm:1087
#: diskdrake/interactive.pm:1100 diskdrake/interactive.pm:1103
#: diskdrake/interactive.pm:1351 diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:19
#: do_pkgs.pm:24 do_pkgs.pm:40 do_pkgs.pm:56 do_pkgs.pm:61 fsedit.pm:227
#: interactive/http.pm:117 interactive/http.pm:118 modules/interactive.pm:19
#: scanner.pm:94 scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95
#: wizards.pm:99 wizards.pm:121
#, c-format
msgid "Error"
msgstr "Fehler"

#: diskdrake/dav.pm:83
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Bitte geben Sie die WebDAV-Server-URL an"

#: diskdrake/dav.pm:87
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "Die URL muss mit „http://“ oder „https://“ beginnen!"

#: diskdrake/dav.pm:109
#, c-format
msgid "Server: "
msgstr "Server: "

#: diskdrake/dav.pm:110 diskdrake/interactive.pm:502
#: diskdrake/interactive.pm:1225 diskdrake/interactive.pm:1303
#, c-format
msgid "Mount point: "
msgstr "Einhängepunkt: "

#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1310
#, c-format
msgid "Options: %s"
msgstr "Optionen: %s"

#: diskdrake/hd_gtk.pm:53 diskdrake/interactive.pm:286
#: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106
#: fs/partitioning_wizard.pm:47 fs/partitioning_wizard.pm:201
#: fs/partitioning_wizard.pm:207 fs/partitioning_wizard.pm:247
#: fs/partitioning_wizard.pm:266 fs/partitioning_wizard.pm:271
#, c-format
msgid "Partitioning"
msgstr "Partitionierung"

#: diskdrake/hd_gtk.pm:93 diskdrake/interactive.pm:1059
#: diskdrake/interactive.pm:1069 diskdrake/interactive.pm:1122
#, c-format
msgid "Read carefully!"
msgstr "Lesen Sie bitte aufmerksam!"

#: diskdrake/hd_gtk.pm:93
#, c-format
msgid "Please make a backup of your data first"
msgstr "Bitte machen Sie erst eine Sicherheitskopie Ihrer Daten!"

#: diskdrake/hd_gtk.pm:94 diskdrake/interactive.pm:222
#, c-format
msgid "Exit"
msgstr "Verlassen"

#: diskdrake/hd_gtk.pm:94
#, c-format
msgid "Continue"
msgstr "Fortfahren"

#: diskdrake/hd_gtk.pm:97
#, c-format
msgid ""
"If you plan to use aboot, be careful to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
"Wenn Sie „aboot“ verwenden wollen, müssen Sie ausreichend Platz am Anfang \n"
"der Platte lassen (2048 Sektoren reichen aus)."

#: diskdrake/hd_gtk.pm:162 interactive.pm:640 interactive/gtk.pm:719
#: interactive/gtk.pm:740 interactive/gtk.pm:760 ugtk2.pm:926 ugtk2.pm:927
#, c-format
msgid "Help"
msgstr "Hilfe"

#: diskdrake/hd_gtk.pm:197
#, c-format
msgid "Choose action"
msgstr "Wählen Sie eine Aktion"

#: diskdrake/hd_gtk.pm:201
#, c-format
msgid ""
"You have one big Microsoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
"Sie haben nur eine große FAT-Partition \n"
"(diese enthält häufig nur Microsoft DOS/Windows).\n"
"Ich rate Ihnen, diese Partition erst zu verkleinern\n"
"(Wählen Sie sie an und drücken Sie dann „Größe ändern“)"

#: diskdrake/hd_gtk.pm:203
#, c-format
msgid "Please click on a partition"
msgstr "Bitte klicken Sie auf eine Partition"

#: diskdrake/hd_gtk.pm:217 diskdrake/smbnfs_gtk.pm:63
#, c-format
msgid "Details"
msgstr "Details"

#: diskdrake/hd_gtk.pm:265
#, c-format
msgid "No hard drives found"
msgstr "Keine Festplatten gefunden"

#: diskdrake/hd_gtk.pm:292
#, c-format
msgid "Unknown"
msgstr "Unbekannt"

#: diskdrake/hd_gtk.pm:354
#, c-format
msgid "Ext3"
msgstr "Ext3"

#: diskdrake/hd_gtk.pm:354
#, c-format
msgid "XFS"
msgstr "XFS"

#: diskdrake/hd_gtk.pm:354
#, c-format
msgid "Swap"
msgstr "Swap"

#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "SunOS"
msgstr "SunOS"

#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "HFS"
msgstr "HFS"

#: diskdrake/hd_gtk.pm:351
#, c-format
msgid "Windows"
msgstr "Windows"

#: diskdrake/hd_gtk.pm:352 services.pm:158
#, c-format
msgid "Other"
msgstr "Andere"

#: diskdrake/hd_gtk.pm:352 diskdrake/interactive.pm:1239
#, c-format
msgid "Empty"
msgstr "Leer"

#: diskdrake/hd_gtk.pm:356
#, c-format
msgid "Filesystem types:"
msgstr "Dateisystemtypen:"

#: diskdrake/hd_gtk.pm:380 diskdrake/interactive.pm:291
#: diskdrake/interactive.pm:380 diskdrake/interactive.pm:410
#: diskdrake/interactive.pm:559 diskdrake/interactive.pm:743
#: diskdrake/interactive.pm:801 diskdrake/interactive.pm:894
#: diskdrake/interactive.pm:936 diskdrake/interactive.pm:937
#: diskdrake/interactive.pm:1168 diskdrake/interactive.pm:1206
#: diskdrake/interactive.pm:1342 do_pkgs.pm:16 do_pkgs.pm:35 do_pkgs.pm:53
#: harddrake/sound.pm:285
#, c-format
msgid "Warning"
msgstr "Warnung"

#: diskdrake/hd_gtk.pm:380
#, c-format
msgid "This partition is already empty"
msgstr "Diese Partition ist leer"

#: diskdrake/hd_gtk.pm:389
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Verwenden Sie erst „Aushängen“"

#: diskdrake/hd_gtk.pm:389
#, c-format
msgid "Use ``%s'' instead"
msgstr "Stattdessen „%s“ verwenden"

#: diskdrake/hd_gtk.pm:389 diskdrake/interactive.pm:423
#: diskdrake/interactive.pm:597 diskdrake/interactive.pm:1075
#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
#, c-format
msgid "Type"
msgstr "Typ"

#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose another partition"
msgstr "Wählen Sie eine andere Partition"

#: diskdrake/interactive.pm:193
#, c-format
msgid "Choose a partition"
msgstr "Wählen Sie eine Partition"

#: diskdrake/interactive.pm:255
#, c-format
msgid "Undo"
msgstr "Rückgängig"

#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to normal mode"
msgstr "In den Normal-Modus wechseln"

#: diskdrake/interactive.pm:255
#, c-format
msgid "Toggle to expert mode"
msgstr "In den Experten-Modus wechseln"

#: diskdrake/interactive.pm:269 diskdrake/interactive.pm:279
#: diskdrake/interactive.pm:1153
#, c-format
msgid "Confirmation"
msgstr "Bestätigung"

#: diskdrake/interactive.pm:269
#, c-format
msgid "Continue anyway?"
msgstr "Wollen Sie trotzdem fortfahren?"

#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without saving"
msgstr "Beenden ohne speichern"

#: diskdrake/interactive.pm:274
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Beenden ohne die Partitionstabelle zu speichern?"

#: diskdrake/interactive.pm:279
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "Möchten Sie die vorgenommenen Änderungen in „/etc/fstab“ speichern?"

#: diskdrake/interactive.pm:286 fs/partitioning_wizard.pm:247
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Sie müssen Ihren Rechner neu starten, um die Änderungen \n"
"der Partitionstabelle wirksam werden zu lassen."

#: diskdrake/interactive.pm:291
#, c-format
msgid ""
"You should format partition %s.\n"
"Otherwise no entry for mount point %s will be written in fstab.\n"
"Quit anyway?"
msgstr ""
"Sie sollten die Partition %s formatieren.\n"
"Sonst wird kein Eintrag für den Mount-Punkt %s in fstab geschrieben.\n"
"Trotzdem verlassen?"

#: diskdrake/interactive.pm:304
#, c-format
msgid "Clear all"
msgstr "Alles löschen"

#: diskdrake/interactive.pm:305
#, c-format
msgid "Auto allocate"
msgstr "Automatisches Erstellen"

#: diskdrake/interactive.pm:306 diskdrake/interactive.pm:354
#: interactive/curses.pm:512
#, c-format
msgid "More"
msgstr "Mehr"

#: diskdrake/interactive.pm:311
#, c-format
msgid "Hard drive information"
msgstr "Festplatten-Informationen"

#: diskdrake/interactive.pm:343
#, c-format
msgid "All primary partitions are used"
msgstr "Alle Primärpartitionen sind in Gebrauch"

#: diskdrake/interactive.pm:344
#, c-format
msgid "I can not add any more partitions"
msgstr "Ich kann keinen weiteren Partitionen hinzufügen"

#: diskdrake/interactive.pm:345
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Um mehr Partitionen einrichten zu können, müssen Sie zunächst eine Partition "
"löschen und anschließend eine erweiterte Partition erzeugen."

#: diskdrake/interactive.pm:356
#, c-format
msgid "Save partition table"
msgstr "Partitionstabelle schreiben"

#: diskdrake/interactive.pm:357
#, c-format
msgid "Restore partition table"
msgstr "Partitionstabelle wiederherstellen"

#: diskdrake/interactive.pm:359
#, c-format
msgid "Reload partition table"
msgstr "Partitionstabelle neu laden"

#: diskdrake/interactive.pm:369 diskdrake/interactive.pm:395
#, c-format
msgid "Select file"
msgstr "Datei auswählen"

#: diskdrake/interactive.pm:381
#, c-format
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
"Die gesicherte Partitionstabelle hat nicht dieselbe Größe.\n"
"Soll trotzdem fortgefahren werden?"

#: diskdrake/interactive.pm:410
#, c-format
msgid "Detailed information"
msgstr "Ausführliche Informationen"

#: diskdrake/interactive.pm:426 diskdrake/interactive.pm:756
#, c-format
msgid "Resize"
msgstr "Größe ändern"

#: diskdrake/interactive.pm:427
#, c-format
msgid "Format"
msgstr "Formatieren"

#: diskdrake/interactive.pm:429 diskdrake/interactive.pm:842
#, c-format
msgid "Add to RAID"
msgstr "Zum RAID hinzufügen"

#: diskdrake/interactive.pm:430 diskdrake/interactive.pm:859
#, c-format
msgid "Add to LVM"
msgstr "Zum LVM hinzufügen"

#: diskdrake/interactive.pm:432
#, c-format
msgid "Delete"
msgstr "Löschen"

#: diskdrake/interactive.pm:433
#, c-format
msgid "Remove from RAID"
msgstr "Aus dem RAID löschen"

#: diskdrake/interactive.pm:434
#, c-format
msgid "Remove from LVM"
msgstr "Aus dem LVM löschen"

#: diskdrake/interactive.pm:435
#, c-format
msgid "Modify RAID"
msgstr "RAID modifizieren"

#: diskdrake/interactive.pm:436
#, c-format
msgid "Use for loopback"
msgstr "Als Loopback verwenden"

#: diskdrake/interactive.pm:447
#, c-format
msgid "Create"
msgstr "Erzeugen"

#: diskdrake/interactive.pm:491 diskdrake/interactive.pm:493
#, c-format
msgid "Create a new partition"
msgstr "Eine neue Partition erzeugen"

#: diskdrake/interactive.pm:495
#, c-format
msgid "Start sector: "
msgstr "Anfangssektor: "

#: diskdrake/interactive.pm:498 diskdrake/interactive.pm:929
#, c-format
msgid "Size in MB: "
msgstr "Größe in MB:"

#: diskdrake/interactive.pm:500 diskdrake/interactive.pm:930
#, c-format
msgid "Filesystem type: "
msgstr "Dateisystemtyp: "

#: diskdrake/interactive.pm:506
#, c-format
msgid "Preference: "
msgstr "Einstellung: "

#: diskdrake/interactive.pm:509
#, c-format
msgid "Logical volume name "
msgstr "Name für logisches Laufwerk"

#: diskdrake/interactive.pm:529
#, c-format
msgid ""
"You can not create a new partition\n"
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
"Sie können keine weiteren Partitionen anlegen (da Sie die maximale \n"
"Anzahl primärer Partitionen erstellt haben). Bitte löschen Sie \n"
"eine primäre Partition und legen Sie stattdessen eine erweiterte \n"
"Partition an."

#: diskdrake/interactive.pm:559
#, c-format
msgid "Remove the loopback file?"
msgstr "Die Loopback-Datei entfernen?"

#: diskdrake/interactive.pm:581
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Nach Änderung des Partitionstyps von %s, werden sämtliche Daten darauf "
"gelöscht."

#: diskdrake/interactive.pm:594
#, c-format
msgid "Change partition type"
msgstr "Partitionstyp ändern"

#: diskdrake/interactive.pm:596 diskdrake/removable.pm:47
#, c-format
msgid "Which filesystem do you want?"
msgstr "Welches Dateisystem wollen Sie verwenden?"

#: diskdrake/interactive.pm:603
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "Konvertiere ext2 zu ext3"

#: diskdrake/interactive.pm:629 diskdrake/interactive.pm:632
#, c-format
msgid "Which volume label?"
msgstr "Welche Datenträgerbezeichnung?"

#: diskdrake/interactive.pm:633
#, c-format
msgid "Label:"
msgstr "Bezeichnung:"

#: diskdrake/interactive.pm:647
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Wo wollen Sie die Loopback-Datei %s einhängen?"

#: diskdrake/interactive.pm:648
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Wo wollen Sie das Gerät %s einhängen?"

#: diskdrake/interactive.pm:653
#, c-format
msgid ""
"Can not unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Ich kann diesen Einhängepunkt nicht zurücksetzen, da diese Partition als \n"
"Loopback verwendet wird. Bitte entfernen Sie erst diesen Loopback."

#: diskdrake/interactive.pm:683
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Wo wollen Sie „%s“ einhängen?"

#: diskdrake/interactive.pm:707 diskdrake/interactive.pm:790
#: fs/partitioning_wizard.pm:141 fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing"
msgstr "Berechne die Größe neu"

#: diskdrake/interactive.pm:707
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Errechne die Grenzen des FAT-Dateisystems"

#: diskdrake/interactive.pm:743
#, c-format
msgid "This partition is not resizeable"
msgstr "Die Größe dieser Partition ist nicht änderbar"

#: diskdrake/interactive.pm:748
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Sie sollten alle Daten dieser Partition sichern"

#: diskdrake/interactive.pm:750
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Durch Veränderung der Partitionsgröße von %s, gehen sämtliche Daten darauf "
"verloren."

#: diskdrake/interactive.pm:757
#, c-format
msgid "Choose the new size"
msgstr "Wählen Sie die neue Größe"

#: diskdrake/interactive.pm:758
#, c-format
msgid "New size in MB: "
msgstr "Neue Größe in MB:"

#: diskdrake/interactive.pm:759
#, c-format
msgid "Minimum size: %s MB"
msgstr "Minimale Größe: %s MB"

#: diskdrake/interactive.pm:760
#, c-format
msgid "Maximum size: %s MB"
msgstr "Maximale Größe: %s MB"

#: diskdrake/interactive.pm:801 fs/partitioning_wizard.pm:181
#, c-format
msgid ""
"To ensure data integrity after resizing the partition(s), \n"
"filesystem checks will be run on your next boot into Microsoft Windows®"
msgstr ""
"Um nach der Größenänderung der Partition(en) die Datenintegrität\n"
"zu gewährleisten, wird Windows™ beim nächsten Hochfahren eine\n"
"Dateisystemprüfung durchführen."

#: diskdrake/interactive.pm:842
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Wählen Sie einen vorhandenen RAID"

#: diskdrake/interactive.pm:844 diskdrake/interactive.pm:861
#, c-format
msgid "new"
msgstr "neu"

#: diskdrake/interactive.pm:859
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Wählen Sie einen vorhandenen LVM"

#: diskdrake/interactive.pm:866
#, c-format
msgid "LVM name?"
msgstr "LVM-Name?"

#: diskdrake/interactive.pm:894
#, c-format
msgid ""
"Physical volume %s is still in use.\n"
"Do you want to move used physical extents on this volume to other volumes?"
msgstr ""
"Der Datenträger %s wird noch verwendet.\n"
"Möchten Sie verwendete physische Erweiterungen auf diesem Datenträger auf "
"andere Datenträger verschieben?"

#: diskdrake/interactive.pm:896
#, c-format
msgid "Moving physical extents"
msgstr "Physische Erweiterungen verschieben"

#: diskdrake/interactive.pm:914
#, c-format
msgid "This partition can not be used for loopback"
msgstr "Diese Partition kann nicht als Loopback verwendet werden"

#: diskdrake/interactive.pm:927
#, c-format
msgid "Loopback"
msgstr "Loopback"

#: diskdrake/interactive.pm:928
#, c-format
msgid "Loopback file name: "
msgstr "Name der Loopback-Datei: "

#: diskdrake/interactive.pm:933
#, c-format
msgid "Give a file name"
msgstr "Dateinamen angeben"

#: diskdrake/interactive.pm:936
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr ""
"Diese Datei wird bereits von einer anderen Loopback-Verknüpfung verwendet, "
"wählen Sie eine andere Datei."

#: diskdrake/interactive.pm:937
#, c-format
msgid "File already exists. Use it?"
msgstr "Datei existiert bereits. Soll ich sie verwenden?"

#: diskdrake/interactive.pm:966 diskdrake/interactive.pm:969
#, c-format
msgid "Mount options"
msgstr "Einhänge-Optionen"

#: diskdrake/interactive.pm:976
#, c-format
msgid "Various"
msgstr "Verschiedene"

#: diskdrake/interactive.pm:1041
#, c-format
msgid "device"
msgstr "Gerät"

#: diskdrake/interactive.pm:1042
#, c-format
msgid "level"
msgstr "Ebene"

#: diskdrake/interactive.pm:1043
#, c-format
msgid "chunk size in KiB"
msgstr "Blockgröße in KiB"

#: diskdrake/interactive.pm:1060
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Vorsicht:!! Diese Aktion ist gefährlich."

#: diskdrake/interactive.pm:1075
#, c-format
msgid "What type of partitioning?"
msgstr "Welcher Partitionstyp?"

#: diskdrake/interactive.pm:1113
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Sie müssen Ihren Rechner neu starten, damit die Veränderungen wirksam werden."

#: diskdrake/interactive.pm:1122
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Die Partitionstabelle der Platte „%s“ wird gespeichert!"

#: diskdrake/interactive.pm:1148
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nach Formatieren der Partition %s, werden sämtliche Daten darauf gelöscht."

#: diskdrake/interactive.pm:1153 fs/partitioning.pm:49
#, c-format
msgid "Check bad blocks?"
msgstr "Soll ich nach defekten Blöcken suchen?"

#: diskdrake/interactive.pm:1167
#, c-format
msgid "Move files to the new partition"
msgstr "Dateien auf die neue Partition verschieben"

#: diskdrake/interactive.pm:1167
#, c-format
msgid "Hide files"
msgstr "Dateien verstecken"

#: diskdrake/interactive.pm:1168
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)\n"
"\n"
"You can either choose to move the files into the partition that will be "
"mounted there or leave them where they are (which results in hiding them by "
"the contents of the mounted partition)"
msgstr ""
"Verzeichnis %s enthält Daten\n"
"(%s)\n"
"\n"
"Sie haben die Wahl, die Daten in die neue Partition zu kopieren oder sie an "
"dem Ort zu belassen. (Was zur Folge hat, dass sie durch die Partition "
"verdeckt werden)"

#: diskdrake/interactive.pm:1183
#, c-format
msgid "Moving files to the new partition"
msgstr "Verschiebe Dateien auf die neue Partition"

#: diskdrake/interactive.pm:1187
#, c-format
msgid "Copying %s"
msgstr "Kopiere %s"

#: diskdrake/interactive.pm:1191
#, c-format
msgid "Removing %s"
msgstr "Entferne %s"

#: diskdrake/interactive.pm:1205
#, c-format
msgid "partition %s is now known as %s"
msgstr "die Partition %s heißt nun %s"

#: diskdrake/interactive.pm:1206
#, c-format
msgid "Partitions have been renumbered: "
msgstr "Die Partitionen wurden neu nummeriert:"

#: diskdrake/interactive.pm:1226 diskdrake/interactive.pm:1288
#, c-format
msgid "Device: "
msgstr "Gerät: "

#: diskdrake/interactive.pm:1227
#, c-format
msgid "Volume label: "
msgstr "Datenträger-Bezeichnung: "

#: diskdrake/interactive.pm:1241
#, c-format
msgid "UUID: "
msgstr ""

#: diskdrake/interactive.pm:1242
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS Laufwerksbuchstabe: %s (vermutlich?)\n"

#: diskdrake/interactive.pm:1232 diskdrake/interactive.pm:1241
#: diskdrake/interactive.pm:1306
#, c-format
msgid "Type: "
msgstr "Typ:"

#: diskdrake/interactive.pm:1236
#, c-format
msgid "Name: "
msgstr "Name: "

#: diskdrake/interactive.pm:1243
#, c-format
msgid "Start: sector %s\n"
msgstr "Anfang: Sektor %s\n"

#: diskdrake/interactive.pm:1244
#, c-format
msgid "Size: %s"
msgstr "Größe: %s"

#: diskdrake/interactive.pm:1246
#, c-format
msgid ", %s sectors"
msgstr ", %s Sektoren"

#: diskdrake/interactive.pm:1248
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Zylinder %d bis %d\n"

#: diskdrake/interactive.pm:1249
#, c-format
msgid "Number of logical extents: %d\n"
msgstr "Anzahl logischer Erweiterungen: %d\n"

#: diskdrake/interactive.pm:1250
#, c-format
msgid "Formatted\n"
msgstr "Formatiert\n"

#: diskdrake/interactive.pm:1251
#, c-format
msgid "Not formatted\n"
msgstr "Nicht formatiert\n"

#: diskdrake/interactive.pm:1252
#, c-format
msgid "Mounted\n"
msgstr "Eingehängt\n"

#: diskdrake/interactive.pm:1253
#, c-format
msgid "RAID %s\n"
msgstr "RAID %s\n"

#: diskdrake/interactive.pm:1258
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"Loopback-Datei(en):\n"
"   %s\n"

#: diskdrake/interactive.pm:1259
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Partition wird standardmäßig geladen\n"
"    (für MS-DOS-Boot, nicht jedoch für LILO)\n"

#: diskdrake/interactive.pm:1261
#, c-format
msgid "Level %s\n"
msgstr "Ebene %s\n"

#: diskdrake/interactive.pm:1262
#, c-format
msgid "Chunk size %d KiB\n"
msgstr "Blockgröße %d KiB\n"

#: diskdrake/interactive.pm:1263
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-Platten %s\n"

#: diskdrake/interactive.pm:1265
#, c-format
msgid "Loopback file name: %s"
msgstr "Dateiname des Loopbacks: %s"

#: diskdrake/interactive.pm:1268
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"Es handelt sich mit großer\n"
"Wahrscheinlichkeit um eine\n"
"Treiber-Partition. Sie sollten\n"
"sie daher besser unverändert\n"
"lassen.\n"

#: diskdrake/interactive.pm:1271
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"Diese spezielle Start-Partition\n"
"ist für die Verwendung mehrerer\n"
"Betriebssysteme auf dem selben\n"
"Rechner.\n"

#: diskdrake/interactive.pm:1280
#, c-format
msgid "Free space on %s (%s)"
msgstr "Freier Speicher auf %s (%s)"

#: diskdrake/interactive.pm:1289
#, c-format
msgid "Read-only"
msgstr "Nur lesbar"

#: diskdrake/interactive.pm:1290
#, c-format
msgid "Size: %s\n"
msgstr "Größe: %s\n"

#: diskdrake/interactive.pm:1291
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s Zylinder, %s Köpfe, %s Sektoren\n"

#: diskdrake/interactive.pm:1292
#, c-format
msgid "Info: "
msgstr "Info: "

#: diskdrake/interactive.pm:1293
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-Platten %s\n"

#: diskdrake/interactive.pm:1294
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partitionstabellentyp: %s\n"

#: diskdrake/interactive.pm:1295
#, c-format
msgid "on channel %d id %d\n"
msgstr "auf Kanal %d ID %d\n"

#: diskdrake/interactive.pm:1338
#, c-format
msgid "Filesystem encryption key"
msgstr "Dateisystem-Schlüssel"

#: diskdrake/interactive.pm:1339
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Wählen Sie Ihren Dateisystem-Schlüssel (Passwort)"

#: diskdrake/interactive.pm:1342
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Dieses Passwort ist zu einfach (es muss mindestens %d Zeichen lang sein)!"

#: diskdrake/interactive.pm:1343
#, c-format
msgid "The encryption keys do not match"
msgstr "Die Passwörter stimmen nicht überein"

#: diskdrake/interactive.pm:1346
#, c-format
msgid "Encryption key"
msgstr "Schlüssel"

#: diskdrake/interactive.pm:1347
#, c-format
msgid "Encryption key (again)"
msgstr "Schlüssel (erneut)"

#: diskdrake/interactive.pm:1349
#, c-format
msgid "Encryption algorithm"
msgstr "Verschlüsselungsalgorythmus"

#: diskdrake/removable.pm:46
#, c-format
msgid "Change type"
msgstr "Typ ändern"

#: diskdrake/smbnfs_gtk.pm:81 interactive.pm:126 interactive.pm:539
#: interactive/curses.pm:260 interactive/http.pm:104 interactive/http.pm:160
#: interactive/stdio.pm:39 interactive/stdio.pm:142 ugtk2.pm:407 ugtk2.pm:509
#: ugtk2.pm:518 ugtk2.pm:791
#, c-format
msgid "Cancel"
msgstr "Abbrechen"

#: diskdrake/smbnfs_gtk.pm:164
#, c-format
msgid "Can not login using username %s (bad password?)"
msgstr "Ich kann mich unter „%s“ nicht anmelden! Stimmt das Passwort?"

#: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177
#, c-format
msgid "Domain Authentication Required"
msgstr "Domänen-Authentifizierung nötig"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Which username"
msgstr "Welchen Benutzernamen"

#: diskdrake/smbnfs_gtk.pm:169
#, c-format
msgid "Another one"
msgstr "Anderer"

#: diskdrake/smbnfs_gtk.pm:178
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr "Bitte geben Sie Benutzername, Passwort und Domäne des Rechners an."

#: diskdrake/smbnfs_gtk.pm:180
#, c-format
msgid "Username"
msgstr "Benutzername"

#: diskdrake/smbnfs_gtk.pm:206
#, c-format
msgid "Search servers"
msgstr "Server suchen"

#: diskdrake/smbnfs_gtk.pm:211
#, c-format
msgid "Search new servers"
msgstr "Neue Server suchen"

#: do_pkgs.pm:16 do_pkgs.pm:53
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Das Paket %s muss installiert sein. Soll ich es installieren?"

#: do_pkgs.pm:19 do_pkgs.pm:40 do_pkgs.pm:56
#, c-format
msgid "Could not install the %s package!"
msgstr "Konnte das Paket %s nicht installieren!"

#: do_pkgs.pm:24 do_pkgs.pm:61
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Das zwingend benötigte Paket „%s“ fehlt."

#: do_pkgs.pm:35
#, c-format
msgid "The following packages need to be installed:\n"
msgstr "Die folgenden Pakete müssen installiert werden:\n"

#: do_pkgs.pm:209
#, c-format
msgid "Installing packages..."
msgstr "Pakete werden installiert..."

#: do_pkgs.pm:255
#, c-format
msgid "Removing packages..."
msgstr "Pakete werden entfernt..."

#: fs/any.pm:17
#, c-format
msgid ""
"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Ein Fehler ist aufgetreten - kein gültiges Gerät wurde gefunden auf dem das "
"Dateisystem erstellt werden kann. Bitte überprüfen Sie die Hardware auf "
"Grund diesen Fehlers."

#: fs/any.pm:62 fs/partitioning_wizard.pm:55
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "/boot/efi muss eine FAT Partition sein"

#: fs/format.pm:60 fs/format.pm:67
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiere Partition „%s“"

#: fs/format.pm:64
#, c-format
msgid "Creating and formatting file %s"
msgstr "Erzeugen und Formatieren der Datei %s"

#: fs/format.pm:117
#, c-format
msgid "I do not know how to format %s in type %s"
msgstr ""
"Ich bin nicht in der Lage, %s mit einem Dateisystem vom Typ %s zu "
"formatieren."

#: fs/format.pm:122 fs/format.pm:124
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatieren von %s schlug fehl"

#: fs/loopback.pm:24
#, c-format
msgid "Circular mounts %s\n"
msgstr "Schleife bem Einbinden %s\n"

#: fs/mount.pm:79
#, c-format
msgid "Mounting partition %s"
msgstr "Partition „%s“ einhängen"

#: fs/mount.pm:80
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "Das Einhängen der Partition %s in das Verzeichnis %s schlug fehl."

#: fs/mount.pm:85 fs/mount.pm:102
#, c-format
msgid "Checking %s"
msgstr "%s wird überprüft"

#: fs/mount.pm:118 partition_table.pm:384
#, c-format
msgid "error unmounting %s: %s"
msgstr "Fehler beim Aushängen von %s: %s"

#: fs/mount.pm:133
#, c-format
msgid "Enabling swap partition %s"
msgstr "Swap-Partition „%s“ aktivieren"

#: fs/mount_options.pm:111
#, c-format
msgid "Use an encrypted file system"
msgstr "Ein verschlüsseltes Dateisystem verwenden"

#: fs/mount_options.pm:113
#, c-format
msgid "Flush write cache on file close"
msgstr ""

#: fs/mount_options.pm:115
#, c-format
msgid "Enable group disk quota accounting and optionally enforce limits"
msgstr ""
"Gruppen-Platten-Quota entsprechend aktivieren und wahlweise Grenzwerte "
"durchsetzen"

#: fs/mount_options.pm:117
#, c-format
msgid ""
"Do not update inode access times on this file system\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"Inode-Zugriffszeiten auf diesem System nicht aktualisieren\n"
"(z.B. für schnellere Zugriffe auf den News-Spool um News-Server zu "
"beschleunigen)."

#: fs/mount_options.pm:123
#, fuzzy, c-format
msgid ""
"Update inode access times on this filesystem in a more efficient way\n"
"(e.g, for faster access on the news spool to speed up news servers)."
msgstr ""
"Inode-Zugriffszeiten auf diesem System nicht aktualisieren\n"
"(z.B. für schnellere Zugriffe auf den News-Spool um News-Server zu "
"beschleunigen)."

#: fs/mount_options.pm:123
#, c-format
msgid ""
"Can only be mounted explicitly (i.e.,\n"
"the -a option will not cause the file system to be mounted)."
msgstr ""
"Kann nur explizit eingehängt werden (so wird\n"
"etwa das Dateisystem nicht bei „-a“ eingehängt)."

#: fs/mount_options.pm:126
#, c-format
msgid "Do not interpret character or block special devices on the file system."
msgstr ""
"Interpretiere keine zeichen- oder speziellen blockorientierten Geräte auf "
"dem Dateisystem."

#: fs/mount_options.pm:128
#, c-format
msgid ""
"Do not allow execution of any binaries on the mounted\n"
"file system. This option might be useful for a server that has file systems\n"
"containing binaries for architectures other than its own."
msgstr ""
"Verbiete die Ausführung jeglicher Binärdateien auf dem ein-\n"
"gehängten Dateisystem. Diese Option ist nützlich für Server mit Datei-\n"
"systemen, auf denen sich Binärdateien fremder Architekturen befinden. "

#: fs/mount_options.pm:132
#, c-format
msgid ""
"Do not allow set-user-identifier or set-group-identifier\n"
"bits to take effect. (This seems safe, but is in fact rather unsafe if you\n"
"have suidperl(1) installed.)"
msgstr ""
"Verhindere die Wirkung von gesetzen Benutzer- oder Gruppen-Identifier-\n"
"Bits. (Dies scheint sicher, ist aber in faktisch unsicherer falls Sie\n"
"suidperl(1) installiert haben.)"

#: fs/mount_options.pm:136
#, c-format
msgid "Mount the file system read-only."
msgstr "Das Dateisystem read only einhängen/mounten"

#: fs/mount_options.pm:138
#, c-format
msgid "All I/O to the file system should be done synchronously."
msgstr "Alle I/O-Operationen am Dateisystem sollten parallel gemacht werden."

#: fs/mount_options.pm:140
#, c-format
msgid "Allow every user to mount and umount the file system."
msgstr "Jedem Benutzer das Ein- und Aushängen des Dateisystems erlauben."

#: fs/mount_options.pm:142
#, c-format
msgid "Allow an ordinary user to mount the file system."
msgstr "Normalen Benutzern das Einhängen des Dateisystems erlauben."

#: fs/mount_options.pm:144
#, c-format
msgid "Enable user disk quota accounting, and optionally enforce limits"
msgstr "Nutzer-Platten-Quota aktivieren und wahlweise Grenzwerte durchsetzen"

#: fs/mount_options.pm:146
#, c-format
msgid "Support \"user.\" extended attributes"
msgstr "Unterstütze\"Benutzer.\" erweiterte Eigenschaften"

#: fs/mount_options.pm:148
#, c-format
msgid "Give write access to ordinary users"
msgstr "Schreib Zugriff für den normalen Benutzer"

#: fs/mount_options.pm:150
#, c-format
msgid "Give read-only access to ordinary users"
msgstr "Schreib-Zugriff für den normalen Benutzer"

#: fs/mount_point.pm:80
#, c-format
msgid "Duplicate mount point %s"
msgstr "Einhängepunkt %s duplizieren"

#: fs/mount_point.pm:95
#, c-format
msgid "No partition available"
msgstr "Keine Partitionerfügbar"

#: fs/mount_point.pm:98
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Suche Partitionen um den Einhängepunkt zu finden"

#: fs/mount_point.pm:105
#, c-format
msgid "Choose the mount points"
msgstr "Wählen Sie den Einhängepunkt"

#: fs/partitioning.pm:46
#, c-format
msgid "Choose the partitions you want to format"
msgstr "Wählen Sie die Partition die Sie formatieren wollen"

#: fs/partitioning.pm:76
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can lose data)"
msgstr ""
"Fehler beim Checken des %s Dateisystem. Wollen Sie die Fehler beheben? "
"(Beachte. Sie können Daten verliehren)"

#: fs/partitioning.pm:79
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Nicht genug swap Speicher um die Installation auszuführen, bitte fügen Sie "
"mehr swap Speicher hinzu"

#: fs/partitioning_wizard.pm:47
#, c-format
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"Sie brauchen eine root Partition.\n"
"Erstellen Sie eine (oder Kicken Sie auf eine bestehende).\n"
"Wählen Sie dann den ``Einhängepunkt'' Knopf und wählen Sie `/' aus"

#: fs/partitioning_wizard.pm:52
#, c-format
msgid ""
"You do not have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"Sie haben keine swap Partition.\n"
"\n"
"Wollen Sie fortfahren?"

#: fs/partitioning_wizard.pm:80
#, c-format
msgid "Use free space"
msgstr "Verwende freien Platz"

#: fs/partitioning_wizard.pm:82
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Nicht genug freier Platz, um die neue Partition hinzuzufügen"

#: fs/partitioning_wizard.pm:90
#, c-format
msgid "Use existing partitions"
msgstr "Bestehende Partitionen"

#: fs/partitioning_wizard.pm:92
#, c-format
msgid "There is no existing partition to use"
msgstr "Es gibt keine existierende Partition, die ich verwenden kann."

#: fs/partitioning_wizard.pm:99
#, c-format
msgid "Use the Microsoft Windows® partition for loopback"
msgstr "Verwende die Microsoft Windows® Partition als Loopback"

#: fs/partitioning_wizard.pm:102
#, c-format
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Welche Partition wollen Sie für Linux4Win verwenden?"

#: fs/partitioning_wizard.pm:104
#, c-format
msgid "Choose the sizes"
msgstr "Wählen Sie die Größe"

#: fs/partitioning_wizard.pm:105
#, c-format
msgid "Root partition size in MB: "
msgstr "Root Partitions Größe in MB: "

#: fs/partitioning_wizard.pm:106
#, c-format
msgid "Swap partition size in MB: "
msgstr "Swap Partitions Größe in MB: "

#: fs/partitioning_wizard.pm:115
#, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
"Es gibt keine FAT Partition die als Loopback verwendet werden kann (oder "
"nicht genügen Speicher vorhanden)"

#: fs/partitioning_wizard.pm:122
#, c-format
msgid "Use the free space on the Microsoft Windows® partition"
msgstr "Verwende Sie den freien Platz auf der Microsoft Windows® Partition"

#: fs/partitioning_wizard.pm:124
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Bei welcher Partition wollen Sie die Größe ändern?"

#: fs/partitioning_wizard.pm:138
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occurred: %s"
msgstr ""
"Das Werkzeug zum Verändern der FAT-Partitionsgröße kann mit der \n"
"Partition nicht arbeiten. Folgender Fehler trat auf:%s"

#: fs/partitioning_wizard.pm:141
#, c-format
msgid "Computing the size of the Microsoft Windows® partition"
msgstr "Berechne die Größe der Microsoft Windows®-Partition"

#: fs/partitioning_wizard.pm:148
#, c-format
msgid ""
"Your Microsoft Windows® partition is too fragmented. Please reboot your "
"computer under Microsoft Windows®, run the ``defrag'' utility, then restart "
"the Mandriva Linux installation."
msgstr ""
"Ihr Microsoft Windows® Partition ist zu fragmentiert. Bitte starten Sie "
"ihren Computer mit Microsoft Windows®, starten Sie das ``Defragmentierungs'' "
"Tool, dann starten Sie die Mandriva Linux Installation neu."

#: fs/partitioning_wizard.pm:151
#, c-format
msgid ""
"WARNING!\n"
"\n"
"\n"
"Your Microsoft Windows® partition will be now resized.\n"
"\n"
"\n"
"Be careful: this operation is dangerous. If you have not already done so, "
"you first need to exit the installation, run \"chkdsk c:\" from a Command "
"Prompt under Microsoft Windows® (beware, running graphical program \"scandisk"
"\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), "
"optionally run defrag, then restart the installation. You should also backup "
"your data.\n"
"\n"
"\n"
"When sure, press %s."
msgstr ""
"WARNUNG!\n"
"\n"
"\n"
"DrakX wird nun die Größe Ihrer Windows-Partition verändern.\n"
"\n"
"\n"
"Seien Sie vorsichtig: Diese Aktion ist gefährlich. Falls Sie es noch nicht "
"getan haben, sollten Sie nun die Installation abbrechen, um „chkdsk c:“ von "
"einem DOS Prompt unter Windows auf die Partition anzuwenden (Achtung:"
"scandisk unter der grafischen Windows Oberfläche reicht nicht aus, bitte "
"„chkdsk“ in einem DOS Prompt ausführen!)Defragmentieren. Anschließend können "
"Sie die Installation erneut starten.\n"
"Sie sollten natürlich generell Sicherheitskopien Ihrer Daten angelegt\n"
"haben.\n"
"\n"
"\n"
"Falls dies der Fall ist, können Sie mit %s fortfahren."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: fs/partitioning_wizard.pm:160 interactive.pm:538 interactive/curses.pm:263
#: ugtk2.pm:511
#, c-format
msgid "Next"
msgstr "Weiter"

#: fs/partitioning_wizard.pm:167
#, c-format
msgid "Partitionning"
msgstr "Partitionierung"

#: fs/partitioning_wizard.pm:167
#, c-format
msgid "Which size do you want to keep for Microsoft Windows® on partition %s?"
msgstr ""
"Wieviel Platz benötigen sie noch für Microsoft Windows® auf Partition %s?"

#: fs/partitioning_wizard.pm:164
#, c-format
msgid "Size"
msgstr "Größe"

#: fs/partitioning_wizard.pm:173
#, c-format
msgid "Resizing Microsoft Windows® partition"
msgstr "Größe der Microsoft Windows®-Partition wird geändert"

#: fs/partitioning_wizard.pm:178
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-Größenanpassung schlug fehl: %s"

#: fs/partitioning_wizard.pm:193
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Sie haben keine FAT-Partition, deren Größe ich anpassen kann\n"
"(möglicherweise haben Sie auch einfach nur nicht mehr genügend\n"
"freien Speicher)."

#: fs/partitioning_wizard.pm:198
#, c-format
msgid "Remove Microsoft Windows®"
msgstr "Entferne Microsoft Windows®"

#: fs/partitioning_wizard.pm:198
#, c-format
msgid "Erase and use entire disk"
msgstr "Komplette Platte löschen und freien Platz benutzen"

#: fs/partitioning_wizard.pm:200
#, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Sie haben mehr als eine Festplatte.\n"
"Auf welche soll GNU/Linux installiert werden?"

#: fs/partitioning_wizard.pm:206
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"SÄMTLICHE existierende Partitionen samt der darauf befindlichen Daten \n"
"auf Laufwerk %s gehen dabei verloren"

#: fs/partitioning_wizard.pm:217
#, c-format
msgid "Custom disk partitioning"
msgstr "Benutzerdefinierte Partitionierung"

#: fs/partitioning_wizard.pm:223
#, c-format
msgid "Use fdisk"
msgstr "Verwende fdisk"

#: fs/partitioning_wizard.pm:226
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, do not forget to save using `w'"
msgstr ""
"Sie können nun %s partitionieren.\n"
"Vergessen Sie nicht die Einstellungen mittels ‚w‘ zu speichern, \n"
"sobald Sie fertig sind."

#: fs/partitioning_wizard.pm:266
#, c-format
msgid "I can not find any room for installing"
msgstr "Ich kann kein Platz zum Installieren finden"

#: fs/partitioning_wizard.pm:270
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Der DrakX-Partitionierungsassistent fand folgende Lösung:"

#: fs/partitioning_wizard.pm:278
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partitionierunsgfehler: %s"

#: fs/type.pm:367
#, c-format
msgid "You can not use JFS for partitions smaller than 16MB"
msgstr ""
"Sie können JFS nicht für Partitionen verwenden, die kleiner als 16MB sind!"

#: fs/type.pm:368
#, c-format
msgid "You can not use ReiserFS for partitions smaller than 32MB"
msgstr ""
"Sie können ReiserFS nicht für Partitionen verwenden, die kleiner als 32MB "
"sind!"

#: fsedit.pm:27
#, c-format
msgid "with /usr"
msgstr "mit „/usr“"

#: fsedit.pm:32
#, c-format
msgid "server"
msgstr "Server"

#: fsedit.pm:116
#, c-format
msgid "BIOS software RAID detected on disks %s. Activate it?"
msgstr "BIOS Software RAID wurde auf Festplatte %s gefunden. Aktivieren?"

#: fsedit.pm:230
#, c-format
msgid ""
"I can not read the partition table of device %s, it's too corrupted for me :"
"(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to lose all the partitions?\n"
msgstr ""
"Ich kann die Partitionstabelle von „%s“ nicht lesen. Sie scheint \n"
"fehlerhaft zu sein :-(\n"
"Ich kann fortfahren, indem ich die fehlerhaften Partitionen lösche \n"
"(dabei gehen ALLE darauf vorhandenen DATEN VERLOREN!). Alternativ können \n"
"Sie mir jedoch auch verbieten, die Partitionstabelle zu verändern.\n"
"(Folgender Fehler trat auf: „%s“).\n"
"\n"
"Sind Sie einverstanden, dass ich die problematischen Partitionen lösche?\n"

#: fsedit.pm:403
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Einhängepunkte müssen mit einem / beginnen."

#: fsedit.pm:404
#, c-format
msgid "Mount points should contain only alphanumerical characters"
msgstr ""
"Einhängepunkte sollten nur Buchstaben, Ziffern und den Unterstrich "
"unterhalten"

#: fsedit.pm:405
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Es gibt bereits eine Partition, mit dem Einhängepunkt %s\n"

#: fsedit.pm:409
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""
"Sie haben eine Software-RAID-Partition als Wurzelverzeichnis (/)"
"ausgewählt. \n"
"Zur Zeit kann kein Bootloader damit ohne Verwendung einer \n"
"„/boot“-Partition arbeiten. Stellen Sie sicher, dass Sie eine solche \n"
"Partition erstellen."

#: fsedit.pm:415
#, c-format
msgid ""
"You can not use the LVM Logical Volume for mount point %s since it spans "
"physical volumes"
msgstr ""
"Sie können eine logische LVM-Partition nicht als Einhängepunkt %s verwenden, "
"da er sich über mehrere physische Datenträger erstreckt"

#: fsedit.pm:417
#, c-format
msgid ""
"You've selected the LVM Logical Volume as root (/).\n"
"The bootloader is not able to handle this when the volume spans physical "
"volumes.\n"
"You should create a /boot partition first"
msgstr ""
"Sie haben eine logische LVM-Partition als Dateisystemwurzel (/) ausgewählt.\n"
"Der Bootloader beherrscht dies nicht, wenn die Partition sich über mehrere "
"physische Datenträger erstreckt.\n"
"Sie sollten zuerst eine Partition „/boot“ anlegen"

#: fsedit.pm:421 fsedit.pm:423
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr "Dieses Verzeichnis muss innerhalb des Wurzelverzeichnisses bleiben"

#: fsedit.pm:425 fsedit.pm:427
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"Sie benötigen ein echtes GNU/Linux-Dateisystem (ext2/ext3, reiserfs, xfs "
"oder jfs) für diesen Einhängepunkt.\n"

#: fsedit.pm:429
#, c-format
msgid "You can not use an encrypted file system for mount point %s"
msgstr ""
"Sie können kein verschlüsseltes Medium für den Einhängepunkt %s verwenden."

#: fsedit.pm:493
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr ""
"Nicht genug freier Platz, damit ich selbst eine Partition anlegen kann."

#: fsedit.pm:495
#, c-format
msgid "Nothing to do"
msgstr "Nichts zu tun."

#: harddrake/data.pm:62
#, c-format
msgid "Floppy"
msgstr "Diskettenlaufwerke"

#: harddrake/data.pm:72
#, c-format
msgid "Zip"
msgstr "ZIP"

#: harddrake/data.pm:88
#, c-format
msgid "Hard Disk"
msgstr "Festplatten"

#: harddrake/data.pm:97
#, c-format
msgid "CDROM"
msgstr "CD-ROM"

#: harddrake/data.pm:107
#, c-format
msgid "CD/DVD burners"
msgstr "CD/DVD-Brenner"

#: harddrake/data.pm:117
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"

#: harddrake/data.pm:127
#, c-format
msgid "Tape"
msgstr "Bandlaufwerke"

#: harddrake/data.pm:138
#, c-format
msgid "AGP controllers"
msgstr "AGP-Controller"

#: harddrake/data.pm:147
#, c-format
msgid "Videocard"
msgstr "Videokarten"

#: harddrake/data.pm:156
#, c-format
msgid "DVB card"
msgstr "DVB-Karte"

#: harddrake/data.pm:164
#, c-format
msgid "Tvcard"
msgstr "TV-Karten"

#: harddrake/data.pm:174
#, c-format
msgid "Other MultiMedia devices"
msgstr "Andere Multimedia-Geräte"

#: harddrake/data.pm:183
#, c-format
msgid "Soundcard"
msgstr "Soundkarten"

#: harddrake/data.pm:196
#, c-format
msgid "Webcam"
msgstr "Webcam"

#: harddrake/data.pm:210
#, c-format
msgid "Processors"
msgstr "Prozessoren"

#: harddrake/data.pm:220
#, c-format
msgid "ISDN adapters"
msgstr "ISDN Karten"

#: harddrake/data.pm:231
#, c-format
msgid "USB sound devices"
msgstr "USB-Sound-Geräte"

#: harddrake/data.pm:240
#, c-format
msgid "Radio cards"
msgstr "Radiokarten"

#: harddrake/data.pm:249
#, c-format
msgid "ATM network cards"
msgstr "ATM-Netzwerkkarten"

#: harddrake/data.pm:258
#, c-format
msgid "WAN network cards"
msgstr "WAN-Netzwerkkarten"

#: harddrake/data.pm:267
#, c-format
msgid "Bluetooth devices"
msgstr "Bluetooth-Geräte"

#: harddrake/data.pm:276
#, c-format
msgid "Ethernetcard"
msgstr "Netzwerkkarten"

#: harddrake/data.pm:293
#, c-format
msgid "Modem"
msgstr "Modem"

#: harddrake/data.pm:303
#, c-format
msgid "ADSL adapters"
msgstr "ADSL Adapter"

#: harddrake/data.pm:315
#, c-format
msgid "Memory"
msgstr "Speicher"

#: harddrake/data.pm:324
#, c-format
msgid "Printer"
msgstr "Drucker"

#. -PO: these are joysticks controllers:
#: harddrake/data.pm:338
#, c-format
msgid "Game port controllers"
msgstr "Gameport-Controller"

#: harddrake/data.pm:347
#, c-format
msgid "Joystick"
msgstr "Joystick"

#: harddrake/data.pm:357
#, c-format
msgid "SATA controllers"
msgstr "SATA-Controller"

#: harddrake/data.pm:366
#, c-format
msgid "RAID controllers"
msgstr "RAID-Controller"

#: harddrake/data.pm:376
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "(E)IDE/ATA-Controller"

#: harddrake/data.pm:386
#, c-format
msgid "USB Mass Storage Devices"
msgstr "USB-Massenspeicher-Geräte"

#: harddrake/data.pm:395
#, c-format
msgid "Card readers"
msgstr "Kartenlesegerät"

#: harddrake/data.pm:404
#, c-format
msgid "Firewire controllers"
msgstr "Firewire-Controller"

#: harddrake/data.pm:413
#, c-format
msgid "PCMCIA controllers"
msgstr "PCMCIA-Controller"

#: harddrake/data.pm:422
#, c-format
msgid "SCSI controllers"
msgstr "SCSI-Controller"

#: harddrake/data.pm:431
#, c-format
msgid "USB controllers"
msgstr "USB-Controller"

#: harddrake/data.pm:440
#, c-format
msgid "USB ports"
msgstr "USB-Ports"

#: harddrake/data.pm:449
#, c-format
msgid "SMBus controllers"
msgstr "SMBus-Controller"

#: harddrake/data.pm:458
#, c-format
msgid "Bridges and system controllers"
msgstr "Brücken und System-Controller"

#: harddrake/data.pm:469
#, c-format
msgid "Keyboard"
msgstr "Tastatur"

#: harddrake/data.pm:482
#, c-format
msgid "Tablet and touchscreen"
msgstr "Tablet und Touchscreen"

#: harddrake/data.pm:491
#, c-format
msgid "Mouse"
msgstr "Maus"

#: harddrake/data.pm:505
#, c-format
msgid "Biometry"
msgstr "Biometrie"

#: harddrake/data.pm:513
#, c-format
msgid "UPS"
msgstr "USV"

#: harddrake/data.pm:522
#, c-format
msgid "Scanner"
msgstr "Scanner"

#: harddrake/data.pm:533
#, c-format
msgid "Unknown/Others"
msgstr "Unbekannt/Andere"

#: harddrake/data.pm:561
#, c-format
msgid "cpu # "
msgstr "CPU #"

#: harddrake/sound.pm:201
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Einen Moment ... Ich richte die Konfiguration ein"

#: harddrake/sound.pm:238
#, c-format
msgid "No alternative driver"
msgstr "Kein alternativer Treiber"

#: harddrake/sound.pm:239
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"Es existiert kein alternativer OSS/ALSA-Treiber für Ihre Soundkarte (%s), "
"die momentan „%s“ verwendet."

#: harddrake/sound.pm:245
#, c-format
msgid "Sound configuration"
msgstr "Sound-Konfiguration"

#: harddrake/sound.pm:247
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
"Hier können Sie einen alternativen Treiber (entweder OSS oder ALSA) für Ihre "
"Soundkarte (%s) auswählen"

#. -PO: here the first %s is either "OSS" or "ALSA", 
#. -PO: the second %s is the name of the current driver
#. -PO: and the third %s is the name of the default driver
#: harddrake/sound.pm:252
#, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr ""
"\n"
"\n"
"Ihre Karte verwendet momentan den %s „%s“ Treiber (Voreinstellung für Ihre "
"Karte ist „%s“)"

#: harddrake/sound.pm:254
#, c-format
msgid ""
"OSS (Open Sound System) was the first sound API. It's an OS independent "
"sound API (it's available on most UNIX(tm) systems) but it's a very basic "
"and limited API.\n"
"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
"which\n"
"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
"It also provides a much higher API than OSS.\n"
"\n"
"To use alsa, one can either use:\n"
"- the old compatibility OSS api\n"
"- the new ALSA api that provides many enhanced features but requires using "
"the ALSA library.\n"
msgstr ""
"OSS (Open Sound System) war das erste Sound-API. Es handelt sich um eine "
"betriebssystemunabhängige API (verfügbar auf den meisten UNIX™-Systemen), "
"aber es ist nur sehr einfach und beschränkt in den Fähigkeiten.\n"
"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) ist eine modularisierte "
"Architektur, die \n"
"eine große Anzahl an ISA-, USB und PCI-Karten unterstützt.\n"
"Sie stellt außerdem eine wesentlich mächtigere API zur Verfügung als OSS\n"
"Um ALSA zu nutzen können Sie:\n"
"- die alte OSS-Kompatibilitäts-API\n"
"- die neue ALSA-API mit den erweiterten Möglichkeiten. Diese verlangt "
"allerdings das Nutzen der ALSA-Bilbliotheken.\n"

#: harddrake/sound.pm:268 harddrake/sound.pm:357
#, c-format
msgid "Driver:"
msgstr "Treiber:"

#: harddrake/sound.pm:277
#, c-format
msgid "Trouble shooting"
msgstr "Fehlerbehandlung"

#: harddrake/sound.pm:285
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
"\n"
"It has been reported to oops the kernel on unloading.\n"
"\n"
"The new \"%s\" driver will only be used on next bootstrap."
msgstr ""
"Der alte „%s“ Treiber steht auf einer Schwarzen Liste.\n"
"\n"
"Der Treiber soll Fehlfunktionen verursachen.\n"
"\n"
"Der neue „%s“ Treiber steht nach einem Neustart zur Verfügung."

#: harddrake/sound.pm:293
#, c-format
msgid "No open source driver"
msgstr "Kein OpenSource-Treiber"

#: harddrake/sound.pm:294
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
"Es existiert kein freier Treiber für Ihre Soundkarte (%s), aber es gibt "
"einen proprietären Treiber unter  „%s“."

#: harddrake/sound.pm:297
#, c-format
msgid "No known driver"
msgstr "Kein bekannter Treiber"

#: harddrake/sound.pm:298
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Es gibt keinen bekannten Treiber für Ihre Soundkarte (%s)"

#: harddrake/sound.pm:302
#, c-format
msgid "Unknown driver"
msgstr "Unbekannter Treiber"

#: harddrake/sound.pm:317
#, c-format
msgid "Sound trouble shooting"
msgstr "Sound-Fehlerbehandlung"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:320
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card uses\n"
"by default\n"
"\n"
"- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n"
"currently uses\n"
"\n"
"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
"loaded or not\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
"tell you if sound and alsa services're configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
"Der klassische Test, um Fehler im Sound-System zu finden:\n"
"\n"
"\n"
"- „lspcidrake -v | fgrep AUDIO“ verrät Ihnen, welcher Treiber Ihre "
"Soundkarte \n"
"  standardmäßig verwendet.\n"
"\n"
"- „/sbin/chkconfig --list sound“ und „/sbin/chkconfig --list alsa“ verraten\n"
"  Ihnen, ob die Sound- und ALSA-Dienste konfiguriert sind, um im\n"
"  Initlevel 3 zu laufen.\n"
"\n"
"- „/sbin/fuser -v /dev/dsp“ verrät das Programm, das die Soundkarte "
"benutzt.\n"

#: harddrake/sound.pm:346
#, c-format
msgid "Let me pick any driver"
msgstr "Lassen Sie mich irgendeinen Treiber auswählen"

#: harddrake/sound.pm:349
#, c-format
msgid "Choosing an arbitrary driver"
msgstr "Ich wähle einen willkürlichen Treiber"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: harddrake/sound.pm:352
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one in the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
"Wenn Sie wirklich wissen, welcher Treiber der Richtige für Ihre Karte ist,\n"
"wählen Sie einen aus der Liste aus.\n"
"\n"
"Der gerade verwendete Treiber für Ihre „%s“ Soundkarte ist „%s“ "

#: harddrake/v4l.pm:12
#, c-format
msgid "Auto-detect"
msgstr "Autoerkennung"

#: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337
#, c-format
msgid "Unknown|Generic"
msgstr "Unbekannt|Generisch"

#: harddrake/v4l.pm:130
#, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "Unbekannt|CPH05X (bt878) [Zahlreiche Hersteller]"

#: harddrake/v4l.pm:131
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Unbekannt|CPH06X (bt878) [Zahlreiche Hersteller]"

#: harddrake/v4l.pm:474
#, c-format
msgid ""
"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
"detect the rights parameters.\n"
"If your card is misdetected, you can force the right tuner and card types "
"here. Just select your tv card parameters if needed."
msgstr ""
"Für die meisten modernen TV-Karten erkennt das bttv-Modul des Linux-Kernels "
"automatisch die richtigen Parameter.\n"
"Falls Ihre Karte falsch erkannt wird, können Sie Tuner- und Kartentyp hier "
"einstellen. Geben Sie einfach die benötigten Parameter an."

#: harddrake/v4l.pm:477
#, c-format
msgid "Card model:"
msgstr "Kartentyp:"

#: harddrake/v4l.pm:478
#, c-format
msgid "Tuner type:"
msgstr "Tunertyp:"

#: interactive.pm:125 interactive.pm:538 interactive/curses.pm:263
#: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39
#: interactive/stdio.pm:142 interactive/stdio.pm:143 ugtk2.pm:413 ugtk2.pm:511
#: ugtk2.pm:791 ugtk2.pm:814
#, c-format
msgid "Ok"
msgstr "OK"

#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:790 wizards.pm:156
#, c-format
msgid "Yes"
msgstr "Ja"

#: interactive.pm:224 modules/interactive.pm:71 ugtk2.pm:790 wizards.pm:156
#, c-format
msgid "No"
msgstr "Nein"

#: interactive.pm:258
#, c-format
msgid "Choose a file"
msgstr "Wählen Sie eine Datei"

#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Add"
msgstr "Hinzufügen"

#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Modify"
msgstr "Ändern"

#: interactive.pm:383 interactive/gtk.pm:419
#, c-format
msgid "Remove"
msgstr "Entfernen"

#: interactive.pm:538 interactive/curses.pm:263 ugtk2.pm:511
#, c-format
msgid "Finish"
msgstr "Assistent beenden"

#: interactive.pm:539 interactive/curses.pm:260 ugtk2.pm:509
#, c-format
msgid "Previous"
msgstr "Zurück"

#: interactive/gtk.pm:544
#, c-format
msgid "Beware, Caps Lock is enabled"
msgstr ""

#: interactive/stdio.pm:29 interactive/stdio.pm:154
#, c-format
msgid "Bad choice, try again\n"
msgstr "Schlechte Wahl, bitte versuchen Sie es noch einmal\n"

#: interactive/stdio.pm:30 interactive/stdio.pm:149
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ihre Wahl? (Standard ‚%s‘) "

#: interactive/stdio.pm:54
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
"Angaben, die Sie machen müssen:\n"
"%s"

#: interactive/stdio.pm:70
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ihre Wahl? (0/1, Standard ‚%s‘) "

#: interactive/stdio.pm:94
#, c-format
msgid "Button `%s': %s"
msgstr "Schaltfläche „%s“: %s"

#: interactive/stdio.pm:95
#, c-format
msgid "Do you want to click on this button?"
msgstr "Möchten Sie diese Schaltfläche betätigen?"

#: interactive/stdio.pm:104
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ihre Wahl? (Standard „%s“ %s) "

#: interactive/stdio.pm:104
#, c-format
msgid " enter `void' for void entry"
msgstr "Geben Sie „void“ für einen leeren Eintrag an"

#: interactive/stdio.pm:122
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Es gibt zahlreiche Auswahlmöglichkeiten von (%s).\n"

#: interactive/stdio.pm:125
#, c-format
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
"Bitte wählen Sie die Nummer aus dem Bereich, die Sie bearbeiten wollen,\n"
"oder betägen Sie die Eingabetaste um fortzufahren. Ihre Wahl? "

#: interactive/stdio.pm:138
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
"=> Anmerkung: Ein Eintrag wurde geändert:\n"
"%s"

#: interactive/stdio.pm:145
#, c-format
msgid "Re-submit"
msgstr "Erneut verschicken"

#. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR"
#. -PO: or as "default:RTL", depending if your language is written from
#. -PO: left to right, or from right to left; any other string is wrong.
#: lang.pm:193
#, c-format
msgid "default:LTR"
msgstr "default:LTR"

#: lang.pm:210
#, c-format
msgid "Andorra"
msgstr "Andorra"

#: lang.pm:211 timezone.pm:213
#, c-format
msgid "United Arab Emirates"
msgstr "Vereinigte arabische Emirate"

#: lang.pm:212
#, c-format
msgid "Afghanistan"
msgstr "Afghanistan"

#: lang.pm:213
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua und Barbuda"

#: lang.pm:214
#, c-format
msgid "Anguilla"
msgstr "Anguilla"

#: lang.pm:215
#, c-format
msgid "Albania"
msgstr "Albanien"

#: lang.pm:216
#, c-format
msgid "Armenia"
msgstr "Armenien"

#: lang.pm:217
#, c-format
msgid "Netherlands Antilles"
msgstr "Niederländische Antillen"

#: lang.pm:218
#, c-format
msgid "Angola"
msgstr "Angola"

#: lang.pm:219
#, c-format
msgid "Antarctica"
msgstr "Antarktis"

#: lang.pm:220 timezone.pm:258
#, c-format
msgid "Argentina"
msgstr "Argentinien"

#: lang.pm:221
#, c-format
msgid "American Samoa"
msgstr "Samoa"

#: lang.pm:222 mirror.pm:11 timezone.pm:216
#, c-format
msgid "Austria"
msgstr "Österreich"

#: lang.pm:223 mirror.pm:10 timezone.pm:254
#, c-format
msgid "Australia"
msgstr "Australien"

#: lang.pm:224
#, c-format
msgid "Aruba"
msgstr "Aruba"

#: lang.pm:225
#, c-format
msgid "Azerbaijan"
msgstr "Aserbaidschan"

#: lang.pm:226
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosnien-Herzegovina"

#: lang.pm:227
#, c-format
msgid "Barbados"
msgstr "Barbados"

#: lang.pm:228 timezone.pm:198
#, c-format
msgid "Bangladesh"
msgstr "Bangladesch"

#: lang.pm:229 mirror.pm:12 timezone.pm:218
#, c-format
msgid "Belgium"
msgstr "Belgien"

#: lang.pm:230
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"

#: lang.pm:231 timezone.pm:219
#, c-format
msgid "Bulgaria"
msgstr "Bulgarien"

#: lang.pm:232
#, c-format
msgid "Bahrain"
msgstr "Bahrain"

#: lang.pm:233
#, c-format
msgid "Burundi"
msgstr "Burundi"

#: lang.pm:234
#, c-format
msgid "Benin"
msgstr "Benin"

#: lang.pm:235
#, c-format
msgid "Bermuda"
msgstr "Bermuda"

#: lang.pm:236
#, c-format
msgid "Brunei Darussalam"
msgstr "Brunei "

#: lang.pm:237
#, c-format
msgid "Bolivia"
msgstr "Bolivien"

#: lang.pm:238 mirror.pm:13 timezone.pm:259
#, c-format
msgid "Brazil"
msgstr "Brasilien"

#: lang.pm:239
#, c-format
msgid "Bahamas"
msgstr "Bahamas"

#: lang.pm:240
#, c-format
msgid "Bhutan"
msgstr "Butan"

#: lang.pm:241
#, c-format
msgid "Bouvet Island"
msgstr "Bouvet-Insel"

#: lang.pm:242
#, c-format
msgid "Botswana"
msgstr "Botswana"

#: lang.pm:243 timezone.pm:217
#, c-format
msgid "Belarus"
msgstr "Weißrussland"

#: lang.pm:244
#, c-format
msgid "Belize"
msgstr "Belize"

#: lang.pm:245 mirror.pm:14 timezone.pm:248
#, c-format
msgid "Canada"
msgstr "Kanada"

#: lang.pm:246
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Cocos (Keeling) Inseln"

#: lang.pm:247
#, c-format
msgid "Congo (Kinshasa)"
msgstr "Kongo (Kinshasa)"

#: lang.pm:248
#, c-format
msgid "Central African Republic"
msgstr "Zentralafrikanische Republik"

#: lang.pm:249
#, c-format
msgid "Congo (Brazzaville)"
msgstr "Kongo (Brazzaville)"

#: lang.pm:250 mirror.pm:38 timezone.pm:242
#, c-format
msgid "Switzerland"
msgstr "Schweiz"

#: lang.pm:251
#, c-format
msgid "Cote d'Ivoire"
msgstr "Elfenbeinküste"

#: lang.pm:252
#, c-format
msgid "Cook Islands"
msgstr "Cook-Inseln"

#: lang.pm:253 timezone.pm:260
#, c-format
msgid "Chile"
msgstr "Chile"

#: lang.pm:254
#, c-format
msgid "Cameroon"
msgstr "Kamerun"

#: lang.pm:255 timezone.pm:199
#, c-format
msgid "China"
msgstr "China"

#: lang.pm:256
#, c-format
msgid "Colombia"
msgstr "Kolumbien"

#: lang.pm:257 mirror.pm:15
#, c-format
msgid "Costa Rica"
msgstr "Costa Rica"

#: lang.pm:258
#, c-format
msgid "Serbia & Montenegro"
msgstr "Serbien & Montenegro"

#: lang.pm:259
#, c-format
msgid "Cuba"
msgstr "Kuba"

#: lang.pm:260
#, c-format
msgid "Cape Verde"
msgstr "Kap Verde"

#: lang.pm:261
#, c-format
msgid "Christmas Island"
msgstr "Osterinsel"

#: lang.pm:262
#, c-format
msgid "Cyprus"
msgstr "Zypern"

#: lang.pm:263 mirror.pm:16 timezone.pm:220
#, c-format
msgid "Czech Republic"
msgstr "Tschechische Republik"

#: lang.pm:264 mirror.pm:21 timezone.pm:225
#, c-format
msgid "Germany"
msgstr "Deutschland"

#: lang.pm:265
#, c-format
msgid "Djibouti"
msgstr "Djibouti"

#: lang.pm:266 mirror.pm:17 timezone.pm:221
#, c-format
msgid "Denmark"
msgstr "Dänemark"

#: lang.pm:267
#, c-format
msgid "Dominica"
msgstr "Dominikanische Republik"

#: lang.pm:268
#, c-format
msgid "Dominican Republic"
msgstr "Dominikanische Republik"

#: lang.pm:269
#, c-format
msgid "Algeria"
msgstr "Algerien"

#: lang.pm:270
#, c-format
msgid "Ecuador"
msgstr "Ecuador"

#: lang.pm:271 mirror.pm:18 timezone.pm:222
#, c-format
msgid "Estonia"
msgstr "Estland"

#: lang.pm:272
#, c-format
msgid "Egypt"
msgstr "Ägypten"

#: lang.pm:273
#, c-format
msgid "Western Sahara"
msgstr "Westsahara"

#: lang.pm:274
#, c-format
msgid "Eritrea"
msgstr "Eritrea"

#: lang.pm:275 mirror.pm:36 timezone.pm:240
#, c-format
msgid "Spain"
msgstr "Spanien"

#: lang.pm:276
#, c-format
msgid "Ethiopia"
msgstr "Äthiopien"

#: lang.pm:277 mirror.pm:19 timezone.pm:223
#, c-format
msgid "Finland"
msgstr "Finnland"

#: lang.pm:278
#, c-format
msgid "Fiji"
msgstr "Fidschi"

#: lang.pm:279
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Falkland Inseln"

#: lang.pm:280
#, c-format
msgid "Micronesia"
msgstr "Mikronesien"

#: lang.pm:281
#, c-format
msgid "Faroe Islands"
msgstr "Faröische Inseln"

#: lang.pm:282 mirror.pm:20 timezone.pm:224
#, c-format
msgid "France"
msgstr "Frankreich"

#: lang.pm:283
#, c-format
msgid "Gabon"
msgstr "Gabun"

#: lang.pm:284 timezone.pm:244
#, c-format
msgid "United Kingdom"
msgstr "Großbritannien"

#: lang.pm:285
#, c-format
msgid "Grenada"
msgstr "Grenada"

#: lang.pm:286
#, c-format
msgid "Georgia"
msgstr "Georgien"

#: lang.pm:287
#, c-format
msgid "French Guiana"
msgstr "Französisch-Guiana"

#: lang.pm:288
#, c-format
msgid "Ghana"
msgstr "Ghana"

#: lang.pm:289
#, c-format
msgid "Gibraltar"
msgstr "Gibraltar"

#: lang.pm:290
#, c-format
msgid "Greenland"
msgstr "Grönland"

#: lang.pm:291
#, c-format
msgid "Gambia"
msgstr "Gambia"

#: lang.pm:292
#, c-format
msgid "Guinea"
msgstr "Guinea"

#: lang.pm:293
#, c-format
msgid "Guadeloupe"
msgstr "Gouadeloupe"

#: lang.pm:294
#, c-format
msgid "Equatorial Guinea"
msgstr "Äquatorial-Guinea"

#: lang.pm:295 mirror.pm:22 timezone.pm:226
#, c-format
msgid "Greece"
msgstr "Griechenland"

#: lang.pm:296
#, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "South Georgia und die South Sandwich Islands"

#: lang.pm:297 timezone.pm:249
#, c-format
msgid "Guatemala"
msgstr "Guatemala"

#: lang.pm:298
#, c-format
msgid "Guam"
msgstr "Guam"

#: lang.pm:299
#, c-format
msgid "Guinea-Bissau"
msgstr "Guinea-Bissau"

#: lang.pm:300
#, c-format
msgid "Guyana"
msgstr "Guyana"

#: lang.pm:301
#, c-format
msgid "Hong Kong SAR (China)"
msgstr "Hong Kong SAR (China)"

#: lang.pm:302
#, c-format
msgid "Heard and McDonald Islands"
msgstr "Heard Island und McDonald Island"

#: lang.pm:303
#, c-format
msgid "Honduras"
msgstr "Honduras"

#: lang.pm:304
#, c-format
msgid "Croatia"
msgstr "Kroatien"

#: lang.pm:305
#, c-format
msgid "Haiti"
msgstr "Haiti"

#: lang.pm:306 mirror.pm:23 timezone.pm:227
#, c-format
msgid "Hungary"
msgstr "Ungarn"

#: lang.pm:307 timezone.pm:202
#, c-format
msgid "Indonesia"
msgstr "Indonesien"

#: lang.pm:308 mirror.pm:24 timezone.pm:228
#, c-format
msgid "Ireland"
msgstr "Irland"

#: lang.pm:309 mirror.pm:25 timezone.pm:204
#, c-format
msgid "Israel"
msgstr "Israel"

#: lang.pm:310 timezone.pm:201
#, c-format
msgid "India"
msgstr "Indien"

#: lang.pm:311
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Britisches Territorium im Indischen Ozean"

#: lang.pm:312
#, c-format
msgid "Iraq"
msgstr "Irak"

#: lang.pm:313 timezone.pm:203
#, c-format
msgid "Iran"
msgstr "Iran"

#: lang.pm:314
#, c-format
msgid "Iceland"
msgstr "Island"

#: lang.pm:315 mirror.pm:26 timezone.pm:229
#, c-format
msgid "Italy"
msgstr "Italien"

#: lang.pm:316
#, c-format
msgid "Jamaica"
msgstr "Jamaika"

#: lang.pm:317
#, c-format
msgid "Jordan"
msgstr "Jordanien"

#: lang.pm:318 mirror.pm:27 timezone.pm:205
#, c-format
msgid "Japan"
msgstr "Japan"

#: lang.pm:319
#, c-format
msgid "Kenya"
msgstr "Kenia"

#: lang.pm:320
#, c-format
msgid "Kyrgyzstan"
msgstr "Kirgisistan"

#: lang.pm:321
#, c-format
msgid "Cambodia"
msgstr "Kambodscha"

#: lang.pm:322
#, c-format
msgid "Kiribati"
msgstr "Kiribati"

#: lang.pm:323
#, c-format
msgid "Comoros"
msgstr "Komoren"

#: lang.pm:324
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "St. Kitts und Nevis"

#: lang.pm:325
#, c-format
msgid "Korea (North)"
msgstr "Nordkorea"

#: lang.pm:326 timezone.pm:206
#, c-format
msgid "Korea"
msgstr "Korea"

#: lang.pm:327
#, c-format
msgid "Kuwait"
msgstr "Kuwait"

#: lang.pm:328
#, c-format
msgid "Cayman Islands"
msgstr "Cayman-Inseln"

#: lang.pm:329
#, c-format
msgid "Kazakhstan"
msgstr "Kasachstan"

#: lang.pm:330
#, c-format
msgid "Laos"
msgstr "Laos"

#: lang.pm:331
#, c-format
msgid "Lebanon"
msgstr "Libanon"

#: lang.pm:332
#, c-format
msgid "Saint Lucia"
msgstr "St. Lucia"

#: lang.pm:333
#, c-format
msgid "Liechtenstein"
msgstr "Liechtenstein"

#: lang.pm:334
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanka"

#: lang.pm:335
#, c-format
msgid "Liberia"
msgstr "Liberia"

#: lang.pm:336
#, c-format
msgid "Lesotho"
msgstr "Lesotho"

#: lang.pm:337 timezone.pm:230
#, c-format
msgid "Lithuania"
msgstr "Litauen"

#: lang.pm:338 timezone.pm:231
#, c-format
msgid "Luxembourg"
msgstr "Luxemburg"

#: lang.pm:339
#, c-format
msgid "Latvia"
msgstr "Litauen"

#: lang.pm:340
#, c-format
msgid "Libya"
msgstr "Lybien"

#: lang.pm:341
#, c-format
msgid "Morocco"
msgstr "Marokko"

#: lang.pm:342
#, c-format
msgid "Monaco"
msgstr "Monaco"

#: lang.pm:343
#, c-format
msgid "Moldova"
msgstr "Moldawien"

#: lang.pm:344
#, c-format
msgid "Madagascar"
msgstr "Madagaskar"

#: lang.pm:345
#, c-format
msgid "Marshall Islands"
msgstr "Marshall Inseln"

#: lang.pm:346
#, c-format
msgid "Macedonia"
msgstr "Mazedonien"

#: lang.pm:347
#, c-format
msgid "Mali"
msgstr "Mali"

#: lang.pm:348
#, c-format
msgid "Myanmar"
msgstr "Burma"

#: lang.pm:349
#, c-format
msgid "Mongolia"
msgstr "Mongolei"

#: lang.pm:350
#, c-format
msgid "Northern Mariana Islands"
msgstr "Nördliche Mariannen-Inseln"

#: lang.pm:351
#, c-format
msgid "Martinique"
msgstr "Martinique"

#: lang.pm:352
#, c-format
msgid "Mauritania"
msgstr "Mauretanien"

#: lang.pm:353
#, c-format
msgid "Montserrat"
msgstr "Montserrat"

#: lang.pm:354
#, c-format
msgid "Malta"
msgstr "Malta"

#: lang.pm:355
#, c-format
msgid "Mauritius"
msgstr "Mauritius"

#: lang.pm:356
#, c-format
msgid "Maldives"
msgstr "Malediven"

#: lang.pm:357
#, c-format
msgid "Malawi"
msgstr "Malawi"

#: lang.pm:358 timezone.pm:250
#, c-format
msgid "Mexico"
msgstr "Mexiko"

#: lang.pm:359 timezone.pm:207
#, c-format
msgid "Malaysia"
msgstr "Malaysia"

#: lang.pm:360
#, c-format
msgid "Mozambique"
msgstr "Mosambik"

#: lang.pm:361
#, c-format
msgid "Namibia"
msgstr "Namibia"

#: lang.pm:362
#, c-format
msgid "New Caledonia"
msgstr "Neukaledonien"

#: lang.pm:363
#, c-format
msgid "Niger"
msgstr "Niger"

#: lang.pm:364
#, c-format
msgid "Norfolk Island"
msgstr "Norfolkinsel"

#: lang.pm:365
#, c-format
msgid "Nigeria"
msgstr "Nigeria"

#: lang.pm:366
#, c-format
msgid "Nicaragua"
msgstr "Nicaragua"

#: lang.pm:367 mirror.pm:28 timezone.pm:232
#, c-format
msgid "Netherlands"
msgstr "Niederlande"

#: lang.pm:368 mirror.pm:30 timezone.pm:233
#, c-format
msgid "Norway"
msgstr "Norwegen"

#: lang.pm:369
#, c-format
msgid "Nepal"
msgstr "Nepal"

#: lang.pm:370
#, c-format
msgid "Nauru"
msgstr "Nauru"

#: lang.pm:371
#, c-format
msgid "Niue"
msgstr "Niue"

#: lang.pm:372 mirror.pm:29 timezone.pm:255
#, c-format
msgid "New Zealand"
msgstr "Neuseeland"

#: lang.pm:373
#, c-format
msgid "Oman"
msgstr "Oman"

#: lang.pm:374
#, c-format
msgid "Panama"
msgstr "Panama"

#: lang.pm:375
#, c-format
msgid "Peru"
msgstr "Peru"

#: lang.pm:376
#, c-format
msgid "French Polynesia"
msgstr "Französisch Polinesien"

#: lang.pm:377
#, c-format
msgid "Papua New Guinea"
msgstr "Papua-Neuguinea"

#: lang.pm:378 timezone.pm:208
#, c-format
msgid "Philippines"
msgstr "Philippinen"

#: lang.pm:379
#, c-format
msgid "Pakistan"
msgstr "Pakistan"

#: lang.pm:380 mirror.pm:31 timezone.pm:234
#, c-format
msgid "Poland"
msgstr "Polen"

#: lang.pm:381
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "St. Pierre und Miquelon"

#: lang.pm:382
#, c-format
msgid "Pitcairn"
msgstr "Pitcairn"

#: lang.pm:383
#, c-format
msgid "Puerto Rico"
msgstr "Puerto Rico"

#: lang.pm:384
#, c-format
msgid "Palestine"
msgstr "Palästina"

#: lang.pm:385 mirror.pm:32 timezone.pm:235
#, c-format
msgid "Portugal"
msgstr "Portugal"

#: lang.pm:386
#, c-format
msgid "Paraguay"
msgstr "Paraguay"

#: lang.pm:387
#, c-format
msgid "Palau"
msgstr "Palau"

#: lang.pm:388
#, c-format
msgid "Qatar"
msgstr "Quatar"

#: lang.pm:389
#, c-format
msgid "Reunion"
msgstr "Réunion"

#: lang.pm:390 timezone.pm:236
#, c-format
msgid "Romania"
msgstr "Rumänien"

#: lang.pm:391 mirror.pm:33
#, c-format
msgid "Russia"
msgstr "Russland"

#: lang.pm:392
#, c-format
msgid "Rwanda"
msgstr "Ruanda"

#: lang.pm:393
#, c-format
msgid "Saudi Arabia"
msgstr "Saudi Arabien"

#: lang.pm:394
#, c-format
msgid "Solomon Islands"
msgstr "Solomon-Inseln"

#: lang.pm:395
#, c-format
msgid "Seychelles"
msgstr "Seychellen"

#: lang.pm:396
#, c-format
msgid "Sudan"
msgstr "Sudan"

#: lang.pm:397 mirror.pm:37 timezone.pm:241
#, c-format
msgid "Sweden"
msgstr "Schweden"

#: lang.pm:398 timezone.pm:209
#, c-format
msgid "Singapore"
msgstr "Singapur"

#: lang.pm:399
#, c-format
msgid "Saint Helena"
msgstr "Sankt Helena"

#: lang.pm:400 timezone.pm:239
#, c-format
msgid "Slovenia"
msgstr "Slowenien"

#: lang.pm:401
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Svalbard and Jan Mayen Islands (Norwegen)"

#: lang.pm:402 mirror.pm:34 timezone.pm:238
#, c-format
msgid "Slovakia"
msgstr "Slowakei"

#: lang.pm:403
#, c-format
msgid "Sierra Leone"
msgstr "Sierra Leone"

#: lang.pm:404
#, c-format
msgid "San Marino"
msgstr "San Marino"

#: lang.pm:405
#, c-format
msgid "Senegal"
msgstr "Senegal"

#: lang.pm:406
#, c-format
msgid "Somalia"
msgstr "Somalia"

#: lang.pm:407
#, c-format
msgid "Suriname"
msgstr "Surinam"

#: lang.pm:408
#, c-format
msgid "Sao Tome and Principe"
msgstr "Sao Tome und Principe"

#: lang.pm:409
#, c-format
msgid "El Salvador"
msgstr "El Salvador"

#: lang.pm:410
#, c-format
msgid "Syria"
msgstr "Syrien"

#: lang.pm:411
#, c-format
msgid "Swaziland"
msgstr "Swaziland"

#: lang.pm:412
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Turks und Caicos Inseln"

#: lang.pm:413
#, c-format
msgid "Chad"
msgstr "Tschad"

#: lang.pm:414
#, c-format
msgid "French Southern Territories"
msgstr "French Southern Territories"

#: lang.pm:415
#, c-format
msgid "Togo"
msgstr "Togo"

#: lang.pm:416 mirror.pm:40 timezone.pm:211
#, c-format
msgid "Thailand"
msgstr "Thailand"

#: lang.pm:417
#, c-format
msgid "Tajikistan"
msgstr "Tadschikistan"

#: lang.pm:418
#, c-format
msgid "Tokelau"
msgstr "Tokelau (Neuseeland)"

#: lang.pm:419
#, c-format
msgid "East Timor"
msgstr "Ost Timor"

#: lang.pm:420
#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistan"

#: lang.pm:421
#, c-format
msgid "Tunisia"
msgstr "Tunesien"

#: lang.pm:422
#, c-format
msgid "Tonga"
msgstr "Tonga"

#: lang.pm:423 timezone.pm:212
#, c-format
msgid "Turkey"
msgstr "Türkei"

#: lang.pm:424
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidad und Tobago"

#: lang.pm:425
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"

#: lang.pm:426 mirror.pm:39 timezone.pm:210
#, c-format
msgid "Taiwan"
msgstr "Taiwan"

#: lang.pm:427 timezone.pm:195
#, c-format
msgid "Tanzania"
msgstr "Tansania"

#: lang.pm:428 timezone.pm:243
#, c-format
msgid "Ukraine"
msgstr "Ukraine"

#: lang.pm:429
#, c-format
msgid "Uganda"
msgstr "Uganda"

#: lang.pm:430
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "United States Minor Outlying Islands"

#: lang.pm:431 mirror.pm:41 timezone.pm:251
#, c-format
msgid "United States"
msgstr "Vereinigte Staaten von Amerika"

#: lang.pm:432
#, c-format
msgid "Uruguay"
msgstr "Uruguay"

#: lang.pm:433
#, c-format
msgid "Uzbekistan"
msgstr "Usbekistan"

#: lang.pm:434
#, c-format
msgid "Vatican"
msgstr "Vatikan"

#: lang.pm:435
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "St. Vincent und die Grenadinen"

#: lang.pm:436
#, c-format
msgid "Venezuela"
msgstr "Venezuela"

#: lang.pm:437
#, c-format
msgid "Virgin Islands (British)"
msgstr "Jungferninseln (britisch)"

#: lang.pm:438
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Jungfern-Inseln (U.S.)"

#: lang.pm:439
#, c-format
msgid "Vietnam"
msgstr "Vietnam"

#: lang.pm:440
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"

#: lang.pm:441
#, c-format
msgid "Wallis and Futuna"
msgstr "Wallis und Futuna"

#: lang.pm:442
#, c-format
msgid "Samoa"
msgstr "Samoa"

#: lang.pm:443
#, c-format
msgid "Yemen"
msgstr "Yemen"

#: lang.pm:444
#, c-format
msgid "Mayotte"
msgstr "Mayotte (Frankreich)"

#: lang.pm:445 mirror.pm:35 timezone.pm:194
#, c-format
msgid "South Africa"
msgstr "Südafrika"

#: lang.pm:446
#, c-format
msgid "Zambia"
msgstr "Sambia"

#: lang.pm:447
#, c-format
msgid "Zimbabwe"
msgstr "Simbabwe"

#: lang.pm:1144
#, c-format
msgid "Welcome to %s"
msgstr "Willkommen zu %s"

#: lvm.pm:83
#, c-format
msgid "Moving used physical extents to other physical volumes failed"
msgstr ""
"Das Verschieben der verwendeten physischen Erweiterungen auf andere "
"physische Datenträger ist fehlgeschlagen"

#: lvm.pm:135
#, c-format
msgid "Physical volume %s is still in use"
msgstr "Der physische datenträger %s wird noch verwendet"

#: lvm.pm:145
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Entfernen Sie erst die Logischen Medien\n"

#: lvm.pm:178
#, c-format
msgid "The bootloader can't handle /boot on multiple physical volumes"
msgstr ""
"Der Bootloader beherrscht „/boot“ nicht auf mehreren physischen Datenträgern"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:10
#, c-format
msgid ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Mandriva "
"Linux distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Mandriva Linux distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read this document carefully. This document is a license agreement "
"between you and  \n"
"Mandriva S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
"explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"Mandriva S.A. will, in no circumstances and to the extent permitted by law, "
"be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without "
"limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties "
"resulting from a court \n"
"judgment, or any other consequential loss) arising out of  the use or "
"inability to use the Software \n"
"Products, even if Mandriva S.A. has been advised of the possibility or "
"occurrence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, Mandriva S.A. or its distributors will, in "
"no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever "
"(including without \n"
"limitation damages for loss of business, interruption of business, financial "
"loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential "
"loss) arising out \n"
"of the possession and use of software components or arising out of  "
"downloading software components \n"
"from one of Mandriva Linux sites  which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities.  Most \n"
"of these components are governed under the terms and conditions of the GNU "
"General Public \n"
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
"licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please "
"read carefully the terms \n"
"and conditions of the license agreement for each component before using any "
"component. Any question \n"
"on a component license should be addressed to the component author and not "
"to Mandriva.\n"
"The programs developed by Mandriva S.A. are governed by the GPL License. "
"Documentation written \n"
"by Mandriva S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"Mandriva S.A. reserves its rights to modify or adapt the Software Products, "
"as a whole or in \n"
"parts, by all means and for all purposes.\n"
"\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of "
"Mandriva S.A.  \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact Mandriva S.A.  \n"
msgstr ""
"Bei dieser Ãœbersetzung handelt es sich um eine inoffizielle Ãœbersetzung\n"
"der Mandriva Linux-Lizenz in die deutsche Sprache. Sie ist keine\n"
"rechtsverbindliche Darstellung der Lizenzbedingungen der Software in\n"
"dieser Distribution - nur der ursprüngliche französische Text der\n"
"Mandriva Linux-Lizenz ist rechtsverbindlich. Wir hoffen aber, dass diese\n"
"Übersetzung den deutschsprechenden Benutzern das Verständnis dieser\n"
"Lizenz erleichtert.\n"
"\n"
"\n"
"Einführung\n"
"\n"
"Das Betriebssystem und die anderen Komponenten, die in Mandriva Linux\n"
"enthalten sind, werden hier „Software-Produkte“ genannt. Die\n"
"Software-Produkte umfassen, aber sind nicht beschränkt auf, die\n"
"Gesamtheit der Programme, Methoden, Regeln, und Dokumentation, welche\n"
"zum Betriebssystem und den anderen Komponenten der Mandriva Linux\n"
"Distribution gehören.\n"
"\n"
"\n"
"1. Lizenzabkommen\n"
"\n"
"Bitte lesen Sie dieses Dokument sorgfältig. Dieses Dokument ist ein\n"
"Lizenzabkommen zwischen Ihnen und Mandriva S. A. welches sich auf\n"
"die Software-Produkte bezieht.\n"
"Durch Installation, Duplizierung oder Benutzung der Software-Produkte in\n"
"irgendeiner Art und Weise erklären Sie sich mit den Bedingungen dieser\n"
"Lizenz einverstanden.\n"
"Wenn Sie mit irgendeinem Punkt dieser Lizenz nicht einverstanden sind,\n"
"ist es Ihnen nicht erlaubt, die Software-Produkte zu installieren,\n"
"duplizieren oder zu benutzen.\n"
"Mit jedem Versuch, die Software-Produkte in einer Art und Weise zu\n"
"benutzen, die nicht den Bedingungen dieser Lizenz entspricht, verlieren\n"
"Sie die Ihnen mit dieser Lizenz eingeräumten Rechte. In diesem Fall\n"
"haben Sie unverzüglich alle Kopien der Software-Produkte zu vernichten.\n"
"\n"
"\n"
"2. Eingeschränkte Garantie\n"
"\n"
"Die Software-Produkte und die beigefügte Dokumentation werden dem\n"
"Benutzer lediglich zur Verfügung gestellt, es wird keinerlei Garantie\n"
"gegeben soweit es gesetzlich zulässig ist.\n"
"Mandriva S. A. haftet unter keinen Umständen, soweit gesetzlich\n"
"zulässig, für direkte oder indirekte Schäden irgendwelcher Art,\n"
"(inklusive uneingeschränkten Schäden aufgrund Verlust von\n"
"Geschäftsbeziehungen, Unterbrechung von Geschäftsvorgängen,\n"
"finanziellen Verlust, Gebühren oder Strafen aufgrund gerichtlicher\n"
"Entscheide, oder jegliche Folgeschäden) die aufgrund der Benutzung oder\n"
"der Unmöglichkeit der Benutzung der Software-Produkte entstehen, auch\n"
"wenn Mandriva S. A. über die Möglichkeit und das Auftreten\n"
"derartiger Schäden unterrichtet wurde.\n"
"\n"
"\n"
"EINGESCHRÄNKTE VERANTWORTLICHKEIT BEZOGEN AUF DEN BESITZ UND DIE\n"
"BENUTZUNG VON SOFTWARE, DIE IN EINIGEN LÄNDERN VERBOTEN IST.\n"
"\n"
"\n"
"Soweit gesetzlich zulässig, haften Mandriva S. A. und deren\n"
"Vertreiber unter keinen Umständen für direkte oder indirekte Schäden\n"
"irgendwelcher Art, (inklusive uneingeschränkten Schäden aufgrund Verlust\n"
"von Geschäftsbeziehungen, Unterbrechung von Geschäftsvorgängen,\n"
"finanziellen Verlust, Gebühren oder Strafen aufgrund gerichtlicher\n"
"Entscheide, oder jegliche Folgeschäden) die aufgrund des Besitzes und\n"
"der Benutzung von Software-Komponenten oder aufgrund des Ladens von\n"
"Software-Komponenten von den Internet-Servern von Mandriva S. A.,\n"
"deren Besitz und Benutzung in einigen Ländern aufgrund lokaler Gesetze\n"
"nicht gestattet ist, entstehen.\n"
"Diese Einschränkung der Verantwortlichkeit bezieht sich auch, aber nicht\n"
"nur, auf die Komponenten für starke Kryptografie enthalten in den\n"
"Software-Produkten.\n"
"\n"
"\n"
"3. Die GPL und verwandte Lizenzen\n"
"\n"
"Die Software-Produkte bestehen aus Komponenten, die von verschiedenen\n"
"Personen und Einrichtungen erstellt wurden. Die meisten Komponenten\n"
"unterliegen den Bedingungen der GNU General Public License, im folgenden\n"
"„GPL“ genannt, oder ähnlichen Lizenzen. Die meisten dieser Lizenzen\n"
"erlauben es, die Komponenten, die diesen Lizenzen unterliegen, zu\n"
"benutzen, zu duplizieren, anzupassen, und weiterzugeben. Bitte lesen sie\n"
"sorgfältig die Bedingungen der Lizenzabkommen von jeder Komponente,\n"
"bevor Sie sie benutzen. Jegliche Frage zur Lizenz einer Komponente ist an\n"
"den Autor der Komponente und nicht an Mandriva S. A. zu richten. Die\n"
"von Mandriva S. A. erstellten Programme unterliegen der GPL.\n"
"Von Mandriva S. A. geschriebene Dokumentation unterliegt einer\n"
"spezifischen Lizenz. Bitte lesen Sie die Dokumentation für weitere\n"
"Details.\n"
"\n"
"\n"
"4. Geistiges Eigentum\n"
"\n"
"Alle Rechte an den Komponenten der Software-Produkte liegen bei den\n"
"entsprechenden Autoren und sind durch die Urheberrechtsgesetze für\n"
"Softwareprodukte geschützt.\n"
"Mandriva S. A. behält sich das Recht vor, die Software-Produkte zu\n"
"modifizieren und anzupassen.\n"
"„Mandriva“, „Mandriva Linux“ und entsprechende Logos sind eingetragene\n"
"Warenzeichen der Mandriva S. A..\n"
"\n"
"\n"
"5. Gesetzliche Bestimmungen\n"
"\n"
"Wenn irgendein Teil dieses Lizenzabkommens durch einen Gerichtsentscheid\n"
"für ungültig, illegal oder inakzeptabel erklärt wird, wird dieser Teil\n"
"aus dem Abkommen ausgeschlossen. Sie bleiben weiterhin an die anderen,\n"
"anwendbaren Teile gebunden.\n"
"Die Bedingungen dieses Lizenzabkommens unterliegen den Gesetzen von\n"
"Frankreich. Alle Unstimmigkeiten bezüglich der Bedingungen dieser Lizenz\n"
"werden vorzugsweise außergerichtlich beigelegt. Letztes Mittel ist das\n"
"zuständige Gericht in Paris, Frankreich.\n"
"Zu jeglicher Frage zu diesem Dokument kontaktieren Sie bitte\n"
"Mandriva S. A.\n"

#: messages.pm:90
#, c-format
msgid ""
"Warning: Free Software may not necessarily be patent free, and some Free\n"
"Software included may be covered by patents in your country. For example, "
"the\n"
"MP3 decoders included may require a licence for further usage (see\n"
"http://www.mp3licensing.com for more details). If you are unsure if a "
"patent\n"
"may be applicable to you, check your local laws."
msgstr ""
"Warnung: Freie Software ist nicht notwendigerweise patentfrei, und einige\n"
"der beigefügten Software könnte durch ein Patent geschützt sein in Ihrem "
"Land.\n"
"Zum Beispiel verlangen die beigefügten MP3-Decoder eine Lizenz für weiter-\n"
"gehende Nutzung (siehe dazu: http://www.mp3licensing.com). Falls Sie "
"unsicher \n"
"sind ob ein Patent sie betrifft prüfen Sie die Gesetze Ihres Landes."

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:98
#, c-format
msgid ""
"\n"
"Warning\n"
"\n"
"Please read carefully the terms below. If you disagree with any\n"
"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
"to continue the installation without using these media.\n"
"\n"
"\n"
"Some components contained in the next CD media are not governed\n"
"by the GPL License or similar agreements. Each such component is then\n"
"governed by the terms and conditions of its own specific license. \n"
"Please read carefully and comply with such specific licenses before \n"
"you use or redistribute the said components. \n"
"Such licenses will in general prevent the transfer,  duplication \n"
"(except for backup purposes), redistribution, reverse engineering, \n"
"de-assembly, de-compilation or modification of the component. \n"
"Any breach of agreement will immediately terminate your rights under \n"
"the specific license. Unless the specific license terms grant you such\n"
"rights, you usually cannot install the programs on more than one\n"
"system, or adapt it to be used on a network. In doubt, please contact \n"
"directly the distributor or editor of the component. \n"
"Transfer to third parties or copying of such components including the \n"
"documentation is usually forbidden.\n"
"\n"
"\n"
"All rights to the components of the next CD media belong to their \n"
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
"\n"
"Achtung\n"
"\n"
"Bitte lesen Sie die nachfolgenden Ausführungen sorgfältig. Wenn Sie mit\n"
"irgendeinem Teil nicht einverstanden sind, dürfen Sie nicht den Inhalt\n"
"der folgenden CDs installieren. Klicken Sie auf „Zurückweisen“, um die\n"
"Installation ohne Verwendung dieser CDs fortzusetzen.\n"
"\n"
"\n"
"Einige Komponenten auf den nachfolgenden CDs unterliegen nicht der GPL\n"
"oder ähnlichen Lizenzabkommen. Jede dieser Komponenten unterliegt dann\n"
"den Bedingungen ihrer eigenen spezifischen Lizenz.\n"
"Bitte lesen Sie diese Lizenzen sorgfältig und nur wenn Sie mit ihnen\n"
"einverstanden sind, dürfen Sie die entsprechenden Produkte entsprechend\n"
"ihrer Lizenz benutzen und weitergeben.\n"
"Solche Lizenzen verbieten im allgemeinen das Transferieren, Duplizieren\n"
"(außer für Sicherheitskopien), Weitergeben, Decompilieren, Disassamblen\n"
"oder Verändern der Komponente.\n"
"Jeder Bruch des Lizenzabkommens beendet sofort die Ihnen im Rahmen der\n"
"Lizenz eingeräumten Rechte. Wenn die jeweilige Lizenz Ihnen nicht\n"
"entsprechende Rechte einräumt, dürfen Sie die Programme nicht auf mehr\n"
"als einem System installieren oder zur Benutzung in einem Netzwerk\n"
"einrichten. Im Zweifelsfall kontaktieren Sie bitte den Vertreiber oder\n"
"Herausgeber der jeweiligen Komponente.\n"
"Transfer an Dritte oder Kopieren solcher Komponenten inklusive ihrer\n"
"Dokumentation ist normalerweise verboten.\n"
"\n"
"\n"
"Alle Rechte an den Komponenten der nachfolgenden CDs liegen bei den\n"
"jeweiligen Autoren und sind durch die Urheberrechtsgesetze für\n"
"Softwareprodukte geschützt.\n"

#. -PO: keep the double empty lines between sections, this is formatted a la LaTeX
#: messages.pm:131
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press Enter to reboot.\n"
"\n"
"\n"
"For information on fixes which are available for this release of Mandriva "
"Linux,\n"
"consult the Errata available from:\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandriva Linux User's Guide."
msgstr ""
"Herzlichen Glückwunsch, die Installation ist abgeschlossen.\n"
"Entfernen Sie die Startmedien (CD-ROMs / Disketten) und drücken Sie die "
"Eingabetaste zum Neustart Ihres Rechners.\n"
"\n"
"Für Informationen zu Sicherheitsaktualisierungen dieser Version von Mandriva "
"Linux informieren Sie sich bitte unter \n"
"\n"
"%s\n"
"\n"
"Wie Sie Ihr System warten können, erfahren Sie im Kapitel „Nach der "
"Installation“ im offiziellen Benutzerhandbuch von Mandriva Linux."

#: modules/interactive.pm:19
#, c-format
msgid "This driver has no configuration parameter!"
msgstr "Dieser Treiber hat keine Konfigurations-Parameter!"

#: modules/interactive.pm:22
#, c-format
msgid "Module configuration"
msgstr "Modul-Konfiguration"

#: modules/interactive.pm:22
#, c-format
msgid "You can configure each parameter of the module here."
msgstr "Sie können alle Modulparamerter hier einstellen."

#: modules/interactive.pm:63
#, c-format
msgid "Found %s interfaces"
msgstr "Schnittstelle(n) %s gefunden"

#: modules/interactive.pm:64
#, c-format
msgid "Do you have another one?"
msgstr "Verfügen Sie über weitere?"

#: modules/interactive.pm:65
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Verfügen Sie über %s Schnittstellen?"

#: modules/interactive.pm:71
#, c-format
msgid "See hardware info"
msgstr "Hardware-Informationen anzeigen"

#: modules/interactive.pm:82
#, c-format
msgid "Installing driver for USB controller"
msgstr "Installiere den Treiber für den USB-Controller"

#: modules/interactive.pm:83
#, c-format
msgid "Installing driver for firewire controller %s"
msgstr "Installiere den Treiber für den Firewire-Controller %s"

#: modules/interactive.pm:84
#, c-format
msgid "Installing driver for hard drive controller %s"
msgstr "Installiere den Treiber für den Festplatten-Controller %s"

#: modules/interactive.pm:85
#, c-format
msgid "Installing driver for ethernet controller %s"
msgstr "Installiere den Treiber für den Ethernet-Controller %s"

#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: modules/interactive.pm:96
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installiere den Treiber für die %s Karte %s"

#: modules/interactive.pm:110
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
"Sie können nun die Optionen für Modul %s angeben.\n"
"Denken Sie daran, dass Adressen mit „0x“ beginnen müssen, etwa „0x300“"

#: modules/interactive.pm:116
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Options are in format ``name=value name2=value2 ...''.\n"
"For instance, ``io=0x300 irq=7''"
msgstr ""
"Sie müssen nun die Optionen für Modul %s angeben.\n"
"Optionen haben die Form „name=wert name2=wert2“.\n"
"Beispielsweise: „io=0x300 irq=7“"

#: modules/interactive.pm:118
#, c-format
msgid "Module options:"
msgstr "Modul-Optionen:"

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: modules/interactive.pm:131
#, c-format
msgid "Which %s driver should I try?"
msgstr "Welchen %s-Treiber soll ich versuchen?"

#: modules/interactive.pm:140
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
"properly, although it normally works fine without them. Would you like to "
"specify\n"
"extra options for it or allow the driver to probe your machine for the\n"
"information it needs? Occasionally, probing will hang a computer, but it "
"should\n"
"not cause any damage."
msgstr ""
"In einigen Fällen benötigt der „%s“ Treiber zusätzliche Informationen,\n"
"um korrekt zu funktionieren, meistens sollte er jedoch auch ohne \n"
"funktionieren. Wollen Sie solche Informationen angeben oder es dem Treiber "
"überlassen, nach geeigneten Parametern zu suchen? (Das Austesten durch den "
"Treiber kann in seltenen Fällen zum „Hängenbleiben“ des Rechners führen, was "
"jedoch keine Hardwareschäden nach sich ziehen sollte.)"

#: modules/interactive.pm:144
#, c-format
msgid "Autoprobe"
msgstr "Automatische Erkennung"

#: modules/interactive.pm:144
#, c-format
msgid "Specify options"
msgstr "Optionen angeben"

#: modules/interactive.pm:156
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"Laden von Modul %s schlug fehl.\n"
"Wollen Sie es erneut mit anderen Parametern versuchen?"

#: partition_table.pm:390
#, c-format
msgid "mount failed: "
msgstr "Fehler beim Einhängen: "

#: partition_table.pm:500
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Diese Rechnerarchitektur kennt keine erweiterten Partitionen"

#: partition_table.pm:518
#, c-format
msgid ""
"You have a hole in your partition table but I can not use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions."
msgstr ""
"Sie haben einen unbenutzten Bereich in Ihrer Partitionstabelle, \n"
"den ich nicht ansprechen kann. Die einzige Lösung ist, dass Sie \n"
"Ihre primären Partitionen so verschieben, dass der Bereich direkt \n"
"neben der erweiterten Partition zu liegen kommt."

#: partition_table.pm:597
#, c-format
msgid "Error reading file %s"
msgstr "Fehler beim Lesen der Datei %s"

#: partition_table.pm:604
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Restaurieren aus der Datei %s schlug fehl: %s"

#: partition_table.pm:606
#, c-format
msgid "Bad backup file"
msgstr "Fehlerhafte Datensicherungs-Datei"

#: partition_table.pm:626
#, c-format
msgid "Error writing to file %s"
msgstr "Fehler beim Schreiben in Datei %s"

#: partition_table/raw.pm:264
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random, corrupted "
"data."
msgstr ""
"Mit Ihrer Platte stimmt etwas nicht!\n"
"Der vorgenommene Integritätstest schlug fehl.\n"
"Das bedeutet, dass jeder Schreibvorgang auf der Platte zu zufälligen oder "
"beschädigten Daten führen wird."

#: raid.pm:42
#, c-format
msgid "Can not add a partition to _formatted_ RAID %s"
msgstr "Kann keine Partition zu dem _formatierten_ RAID %s hinzufügen"

#: raid.pm:150
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nicht genügend Partitionen für RAID-Level %d\n"

#: scanner.pm:95
#, c-format
msgid "Could not create directory /usr/share/sane/firmware!"
msgstr "Konnte Verzeichnis /usr/share/sane/firmware nicht erstellen!"

#: scanner.pm:106
#, c-format
msgid "Could not create link /usr/share/sane/%s!"
msgstr "Konnte Verknüpfung /usr/share/sane/%s nicht erstellen!"

#: scanner.pm:113
#, c-format
msgid "Could not copy firmware file %s to /usr/share/sane/firmware!"
msgstr ""
"Ich konnte die Firmware Datei %s nicht auf /usr/share/sane/firmware kopieren!"

#: scanner.pm:120
#, c-format
msgid "Could not set permissions of firmware file %s!"
msgstr "Konnte keine Zulassung setzen für die Firmware-Datei %s!"

#: scanner.pm:199
#, c-format
msgid "Scannerdrake"
msgstr "ScannerDrake"

#: scanner.pm:200
#, c-format
msgid "Could not install the packages needed to share your scanner(s)."
msgstr ""
"Konnte die notwendigen Programme zum Freigeben Ihrer Scanner nicht "
"installieren."

#: scanner.pm:201
#, c-format
msgid "Your scanner(s) will not be available for non-root users."
msgstr "Ihr(e) Scanner wird nur für Benutzer Root verfügbar sein"

#: security/help.pm:11
#, c-format
msgid "Accept bogus IPv4 error messages."
msgstr "Akzeptiere gefälschte IPv4 Fehlermeldungen."

#: security/help.pm:13
#, c-format
msgid "Accept broadcasted icmp echo."
msgstr "Broadcast-ICMP-Echo akzeptieren."

#: security/help.pm:15
#, c-format
msgid "Accept icmp echo."
msgstr "Akzeptiere ICMP Echo."

#: security/help.pm:17
#, c-format
msgid "Allow autologin."
msgstr "Das automatische Anmelden eines Benutzers erlauben."

#. -PO: here "ALL" is a value in a pull-down menu; translate it the same as "ALL" is
#: security/help.pm:21
#, c-format
msgid ""
"If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n"
"\n"
"If set to \"None\", no issues are allowed.\n"
"\n"
"Else only /etc/issue is allowed."
msgstr ""
"Beim Setzen von „Alle“ sind /etc/issue und /etc/issue.net erlaubt.\n"
"\n"
"Beim Setzen von „Keine“ werden keine Probleme erlaubt.\n"
"\n"
"Andernfalls wird nur /etc/issue erlaubt."

#: security/help.pm:27
#, c-format
msgid "Allow reboot by the console user."
msgstr "Den Neustart des Rechners durch den Konsolen Benutzer erlauben."

#: security/help.pm:29
#, c-format
msgid "Allow remote root login."
msgstr "Remote-Root-Login erlauben."

#: security/help.pm:31
#, c-format
msgid "Allow direct root login."
msgstr "Erlaube direkte Root Anmeldung."

#: security/help.pm:33
#, c-format
msgid ""
"Allow the list of users on the system on display managers (kdm and gdm)."
msgstr ""
"Erlaube die Liste der Benutzer dieses Rechner im Displaymanager (kdm und "
"gdm)."

#: security/help.pm:35
#, c-format
msgid ""
"Allow to export display when\n"
"passing from the root account to the other users.\n"
"\n"
"See pam_xauth(8) for more details.'"
msgstr ""
"Erlaube die Freigabe der Anzeige,\n"
"wenn von root zu einem anderen Nutzer gewechselt wird.\n"
"\n"
"Siehe pam_xauth(8) für Details.'"

#: security/help.pm:40
#, c-format
msgid ""
"Allow X connections:\n"
"\n"
"- \"All\" (all connections are allowed),\n"
"\n"
"- \"Local\" (only connection from local machine),\n"
"\n"
"- \"None\" (no connection)."
msgstr ""
"Erlaube X-Verbindungen: \n"
"\n"
"- \"ALLE\" (alle Verbindungen sind erlaubt),\n"
"\n"
"- \"LOKAL\" (mir Verbindungen vom lokalen Rechner),\n"
"\n"
"- \"KEINE\" (keine Verbindungen)."

#: security/help.pm:48
#, c-format
msgid ""
"The argument specifies if clients are authorized to connect\n"
"to the X server from the network on the tcp port 6000 or not."
msgstr ""
"Dieses Argument gibt an, ob Clients authorisiert sind, den X-Server\n"
"vom Netzwerk auf TCP-Port 6000 zu konnektieren oder nicht."

#. -PO: here "ALL", "Local" and "None" are values in a pull-down menu; translate them the same as they're
#: security/help.pm:53
#, fuzzy, c-format
msgid ""
"Authorize:\n"
"\n"
"- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if "
"set to \"ALL\",\n"
"\n"
"- only local ones if set to \"Local\"\n"
"\n"
"- none if set to \"None\".\n"
"\n"
"To authorize the services you need, use /etc/hosts.allow (see hosts.allow"
"(5))."
msgstr ""
"Authorisieren:\n"
"\n"
"- Alle Dienste, die durch TCP-Wrapper (siehe die hosts.deny(5) Manpage) "
"kontrolliert werden falls „ALLE“ gesetzt wird,\n"
"\n"
"- nur lokale Dienste, wenn „LOKAL“ gesetzt wird,\n"
"\n"
"- keine Dienste, wenn „KEINE“ gesetzt wird.\n"
"\n"
"Um einen Dienst zu authorisieren, benutzen Sie bitte die Datei /etc/hosts."
"allow (siehe die hosts.allow(5) Manpage). "

#: security/help.pm:63
#, c-format
msgid ""
"If SERVER_LEVEL (or SECURE_LEVEL if absent)\n"
"is greater than 3 in /etc/security/msec/security.conf, creates the\n"
"symlink /etc/security/msec/server to point to\n"
"/etc/security/msec/server.<SERVER_LEVEL>.\n"
"\n"
"The /etc/security/msec/server is used by chkconfig --add to decide to\n"
"add a service if it is present in the file during the installation of\n"
"packages."
msgstr ""
"Wenn SERVER_LEVEL (oder SECURE_LEVEL wenn nicht vorhanden)\n"
"in /etc/security/msec/security.conf größer als 3 ist, wird der Symlink\n"
"/etc/security/msec/server zu /etc/security/msec/server.<SERVER_LEVEL>\n"
"erstellt.\n"
"Die Datei /etc/security/msec/server wird von „chkconfig --add“ verwendet,\n"
"um zu entscheiden, ob ein Dienst hinzugefügt wird, wenn er in der Datei\n"
"während der Installation des Programmes vorhanden ist."

#: security/help.pm:72
#, fuzzy, c-format
msgid ""
"Enable crontab and at for users.\n"
"\n"
"Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n"
"and crontab(1))."
msgstr ""
"Aktiviere/Deaktiviere crontab und at für Benutzer.\n"
"\n"
"Speichert erlaubte Benutzer in /etc/cron.allow und /etc/at.allow (siehe man "
"at(1)\n"
"und crontab(1))."

#: security/help.pm:77
#, fuzzy, c-format
msgid "Enable syslog reports to console 12"
msgstr "System-Protokoll-Berichte auf Konsole 12 aktivieren/deaktivieren"

#: security/help.pm:79
#, fuzzy, c-format
msgid ""
"Enable name resolution spoofing protection.  If\n"
"\"%s\" is true, also reports to syslog."
msgstr ""
"Aktiviere/Deaktiviere den Schutz vor Namensauflösungs-Manipulation. Wenn\n"
"„%s“ gewählt ist wird auch an das Systemprotokoll berichtet."

#: security/help.pm:80
#, c-format
msgid "Security Alerts:"
msgstr "Sicherheitswarnungen:"

#: security/help.pm:82
#, fuzzy, c-format
msgid "Enable IP spoofing protection."
msgstr "Aktiviere Schutz gegen IP Spoofing"

#: security/help.pm:84
#, fuzzy, c-format
msgid "Enable libsafe if libsafe is found on the system."
msgstr "Libsafe aktivieren, falls auf dem System gefunden"

#: security/help.pm:86
#, fuzzy, c-format
msgid "Enable the logging of IPv4 strange packets."
msgstr "Aktiviere das Protokollieren von seltsamen IPv4 Packeten"

#: security/help.pm:88
#, fuzzy, c-format
msgid "Enable msec hourly security check."
msgstr "Aktiviere msec stündlichen Sicherheits Check"

#: security/help.pm:90
#, c-format
msgid ""
"Enable su only from members of the wheel group. If set to no, allows su from "
"any user."
msgstr ""
"Aktiviere su nur für Mitglieder der Gruppe „wheel“ oder erlaube su für jeden "
"Benutzer."

#: security/help.pm:92
#, c-format
msgid "Use password to authenticate users."
msgstr "Benutzer müssen sich mit einem Passwort authentifizieren."

#: security/help.pm:94
#, fuzzy, c-format
msgid "Activate ethernet cards promiscuity check."
msgstr "Aktiviere/Deaktiviere die Vermischtheitsprüfung für Netzwerkkarten."

#: security/help.pm:96
#, fuzzy, c-format
msgid "Activate daily security check."
msgstr "Tägliche Sicherheitschecks aktivieren/deaktivieren.."

#: security/help.pm:98
#, fuzzy, c-format
msgid "Enable sulogin(8) in single user level."
msgstr "Erlaube/Verbiete sulogin(8) im Single User Level"

#: security/help.pm:100
#, c-format
msgid "Add the name as an exception to the handling of password aging by msec."
msgstr ""
"Fügt den Namen als eine Ausnahme an die Behandlung für die Passwort-Alterung "
"von msec."

#: security/help.pm:102
#, c-format
msgid "Set password aging to \"max\" days and delay to change to \"inactive\"."
msgstr ""
"Setze Passwort-Alterung auf „maximal“ Tage um die Alterung abzuschalten."

#: security/help.pm:104
#, c-format
msgid "Set the password history length to prevent password reuse."
msgstr ""
"Setzt die Passwort-Historie-Dauer um der Wiederverwendung von Passwörtern "
"vorzubeugen."

#: security/help.pm:106
#, c-format
msgid ""
"Set the password minimum length and minimum number of digit and minimum "
"number of capitalized letters."
msgstr ""
"Setzt die minimale Passwort-Länge sowie minimale Anzahl von Ziffern und "
"Großbuchstaben."

#: security/help.pm:108
#, fuzzy, c-format
msgid "Set the root's file mode creation mask."
msgstr "Setzen der Root Umask"

#: security/help.pm:109
#, c-format
msgid "if set to yes, check open ports."
msgstr "Auf „Ja“ gestellt, werden offene Ports kontrolliert."

#: security/help.pm:110
#, c-format
msgid ""
"if set to yes, check for:\n"
"\n"
"- empty passwords,\n"
"\n"
"- no password in /etc/shadow\n"
"\n"
"- for users with the 0 id other than root."
msgstr ""
"Falls „Ja“, kontrolliere:\n"
"\n"
"- leere Passwörter,\n"
"\n"
"- fehlende Passwörter in „/etc/shadow“,\n"
"\n"
"- Kennzeichen außer „root“ mit ID 0."

#: security/help.pm:117
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
msgstr ""
"Prüfe die Berechtigungen der Dateien in den Heimatverzeichnissen der "
"Benutzer, wenn „Ja“ gesetzt ist."

#: security/help.pm:118
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""
"Wenn auf „Ja“ gezetzt, überprüfe ob die Netzwerk Geräte im gemischten Modus "
"sind"

#: security/help.pm:119
#, c-format
msgid "if set to yes, run the daily security checks."
msgstr "Wenn auf „Ja“ gesetzt, werden täglich Sicherheitschecks durchgeführt."

#: security/help.pm:120
#, c-format
msgid "if set to yes, check additions/removals of sgid files."
msgstr "Prüfe Änderungen an den sgid-Dateien, wenn „Ja“ gesetzt ist."

#: security/help.pm:121
#, c-format
msgid "if set to yes, check empty password in /etc/shadow."
msgstr "Wenn auf „Ja“ gesetzt, prüfe auf leere Passwörter in /etc/shadow."

#: security/help.pm:122
#, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
msgstr ""
"Wenn auf „Ja“ gesetzt, kontrolliere die Prüfsumme der suid/sgid Dateien"

#: security/help.pm:123
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
msgstr ""
"Wenn auf „Ja“ gesetzt, Suche von Veränderungen bei „suid root“ Dateien."

#: security/help.pm:124
#, c-format
msgid "if set to yes, report unowned files."
msgstr "Wenn auf „Ja“ gesetzt, werden Dateien ohne Eigentümer gemeldet."

#: security/help.pm:125
#, c-format
msgid "if set to yes, check files/directories writable by everybody."
msgstr ""
"Wenn auf Ja gesetzt, überprüfe Dateien/Verzeichnisse die für alle schreibbar "
"sind."

#: security/help.pm:126
#, c-format
msgid "if set to yes, run chkrootkit checks."
msgstr "Wenn auf „Ja“ gesetzt, starte chkrootkit Überprüfung"

#: security/help.pm:127
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
msgstr ""
"Wenn ausgefüllt, wird E-Mail an diese Adresse geschickt, sonst an „root“."

#: security/help.pm:128
#, c-format
msgid "if set to yes, report check result by mail."
msgstr "Falls markiert, Ergebnis per E-Mail zustellen."

#: security/help.pm:129
#, c-format
msgid "Do not send mails if there's nothing to warn about"
msgstr "Sende keine Emails, wenn vor nichts zu warnen ist."

#: security/help.pm:130
#, c-format
msgid "if set to yes, run some checks against the rpm database."
msgstr "Prüfe die RPM-Datenbank, wenn „Ja“ gesetzt ist."

#: security/help.pm:131
#, c-format
msgid "if set to yes, report check result to syslog."
msgstr "Wenn auf „Ja“ gesetzt, werden Prüfergebnisse an syslog schicken"

#: security/help.pm:132
#, c-format
msgid "if set to yes, reports check result to tty."
msgstr "Wenn auf „Ja“ gesetzt, werden Prüfergebnisse nach tty gesendet."

#: security/help.pm:134
#, c-format
msgid "Set shell commands history size. A value of -1 means unlimited."
msgstr ""
"Setzt die Größe des Kommandozeilenarchivs. Der Wert „-1“ steht für "
"unbegrenzt."

#: security/help.pm:136
#, c-format
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr "Setzen des Shell-Timeouts. Der Wert Null bedeutet kein Timeout."

#: security/help.pm:136
#, c-format
msgid "Timeout unit is second"
msgstr "Auszeit-Dauer in Sekunden"

#: security/help.pm:138
#, fuzzy, c-format
msgid "Set the user's file mode creation mask."
msgstr "Setzen der Benutzerzugriffsmaske."

#: security/l10n.pm:11
#, c-format
msgid "Accept bogus IPv4 error messages"
msgstr "Akzeptiere gefälschte IPv4 Fehlermeldungen"

#: security/l10n.pm:12
#, c-format
msgid "Accept broadcasted icmp echo"
msgstr "Broadcast-ICMP-Echo akzeptieren"

#: security/l10n.pm:13
#, c-format
msgid "Accept icmp echo"
msgstr "Akzeptiere ICMP Echo"

#: security/l10n.pm:15
#, c-format
msgid "/etc/issue* exist"
msgstr "/etc/issue* existiert"

#: security/l10n.pm:16
#, c-format
msgid "Reboot by the console user"
msgstr "Neustart durch den Konsolen Benutzer"

#: security/l10n.pm:17
#, c-format
msgid "Allow remote root login"
msgstr "Remote-Root-Login erlauben"

#: security/l10n.pm:18
#, c-format
msgid "Direct root login"
msgstr "Direkte Root Anmeldung"

#: security/l10n.pm:19
#, c-format
msgid "List users on display managers (kdm and gdm)"
msgstr "Benutzer in den Display-Managern auflisten (kdm und gdm)"

#: security/l10n.pm:20
#, c-format
msgid "Export display when passing from root to the other users"
msgstr "Anzeige exportieren wenn von root zu anderen Benutzern gewechselt wird"

#: security/l10n.pm:21
#, c-format
msgid "Allow X Window connections"
msgstr "X Window Verbindungen erlauben"

#: security/l10n.pm:22
#, c-format
msgid "Authorize TCP connections to X Window"
msgstr "Erlaube TCP Verbindungen zum X Windows System"

#: security/l10n.pm:23
#, c-format
msgid "Authorize all services controlled by tcp_wrappers"
msgstr "Autorisiere all Dienste, die von TCP-Wrappern kontolliert werden"

#: security/l10n.pm:24
#, c-format
msgid "Chkconfig obey msec rules"
msgstr "Chkconfig folgt msec-Regeln"

#: security/l10n.pm:25
#, c-format
msgid "Enable \"crontab\" and \"at\" for users"
msgstr "Aktiviere  „crontab“ und „at“ für Benutzer"

#: security/l10n.pm:26
#, c-format
msgid "Syslog reports to console 12"
msgstr "Syslog berichtet auf Konsole 12"

#: security/l10n.pm:27
#, c-format
msgid "Name resolution spoofing protection"
msgstr "Aktivier Schutz gegen Namenauflösung"

#: security/l10n.pm:28
#, c-format
msgid "Enable IP spoofing protection"
msgstr "Aktiviere Schutz gegen IP Spoofing"

#: security/l10n.pm:29
#, c-format
msgid "Enable libsafe if libsafe is found on the system"
msgstr "Libsafe aktivieren, falls auf dem System gefunden"

#: security/l10n.pm:30
#, c-format
msgid "Enable the logging of IPv4 strange packets"
msgstr "Aktiviere das Protokollieren von seltsamen IPv4 Packeten"

#: security/l10n.pm:31
#, c-format
msgid "Enable msec hourly security check"
msgstr "Aktiviere msec stündlichen Sicherheits Check"

#: security/l10n.pm:32
#, c-format
msgid "Enable su only from the wheel group members"
msgstr "Erlaube su nur für Mitglieder der Wheel-Gruppe"

#: security/l10n.pm:33
#, c-format
msgid "Use password to authenticate users"
msgstr "Benutzer müssen sich mit Passwort authentifizieren."

#: security/l10n.pm:34
#, c-format
msgid "Ethernet cards promiscuity check"
msgstr "Ethernet-Karten Offenheits Überprüfung"

#: security/l10n.pm:35
#, c-format
msgid "Daily security check"
msgstr "Täglicher Sicherheitscheck"

#: security/l10n.pm:36
#, c-format
msgid "Sulogin(8) in single user level"
msgstr "Sulogin(8) im Einzelplatznutzer Ebene"

#: security/l10n.pm:37
#, c-format
msgid "No password aging for"
msgstr "Kein Passwort Ablaufdatum für"

#: security/l10n.pm:38
#, c-format
msgid "Set password expiration and account inactivation delays"
msgstr "Setze Passwort Ablauf und Nutzerkonto Abschalt Verzögerung"

#: security/l10n.pm:39
#, c-format
msgid "Password history length"
msgstr "Passwort Verlaufslänge"

#: security/l10n.pm:40
#, c-format
msgid "Password minimum length and number of digits and upcase letters"
msgstr "Minimale Passwortlänge und die Anzahl der Ziffern und Buchstaben"

#: security/l10n.pm:41
#, c-format
msgid "Root umask"
msgstr "Root umask"

#: security/l10n.pm:42
#, c-format
msgid "Shell history size"
msgstr "Anzal gespeicherter Kommandozeilenaufrufe"

#: security/l10n.pm:43
#, c-format
msgid "Shell timeout"
msgstr "Zeitüberschreitung der Shell"

#: security/l10n.pm:44
#, c-format
msgid "User umask"
msgstr "User umask"

#: security/l10n.pm:45
#, c-format
msgid "Check open ports"
msgstr "Prüfe offene Ports"

#: security/l10n.pm:46
#, c-format
msgid "Check for unsecured accounts"
msgstr "Prüfe auf ungesicherte Benutzerkonten"

#: security/l10n.pm:47
#, c-format
msgid "Check permissions of files in the users' home"
msgstr ""
"Überprüfe Dateiberechtigungen in den persönlichen Verzeichnissen (/home)"

#: security/l10n.pm:48
#, c-format
msgid "Check if the network devices are in promiscuous mode"
msgstr "Überprüfe, ob sich die Netwerkgeräte in einem offenen Modus befinden"

#: security/l10n.pm:49
#, c-format
msgid "Run the daily security checks"
msgstr "Tägliche Sicherheitschecks durchführen"

#: security/l10n.pm:50
#, c-format
msgid "Check additions/removals of sgid files"
msgstr "Überprüfe das Hinzufügen/Entfernen von „sgid“ Dateien"

#: security/l10n.pm:51
#, c-format
msgid "Check empty password in /etc/shadow"
msgstr "Prüfe auf leere Passwörter in /etc/shadow"

#: security/l10n.pm:52
#, c-format
msgid "Verify checksum of the suid/sgid files"
msgstr "Verifiziere die Prüfsumme der „suid/sgid“ Dateien"

#: security/l10n.pm:53
#, c-format
msgid "Check additions/removals of suid root files"
msgstr "Überprüfe das Hinzufügen/Entfernen von „suid“ Dateien"

#: security/l10n.pm:54
#, c-format
msgid "Report unowned files"
msgstr "Dateien ohne Eigentümer melden"

#: security/l10n.pm:55
#, c-format
msgid "Check files/directories writable by everybody"
msgstr "Überprüfe Dateien/Verzeichnisse die schreibbar für alle sind"

#: security/l10n.pm:56
#, c-format
msgid "Run chkrootkit checks"
msgstr "Starte chkrootkit Überprüfung"

#: security/l10n.pm:57
#, c-format
msgid "Do not send empty mail reports"
msgstr "Keine leeren E-Mail-Berichte senden"

#: security/l10n.pm:58
#, c-format
msgid "If set, send the mail report to this email address else send it to root"
msgstr ""
"Wenn ausgefüllt, wird E-Mail an diese Adresse geschickt, sonst an „root“."

#: security/l10n.pm:59
#, c-format
msgid "Report check result by mail"
msgstr "Ergebnis per E-Mail bekanntgeben"

#: security/l10n.pm:60
#, c-format
msgid "Run some checks against the rpm database"
msgstr "Überprüfe die rpm Datenbank"

#: security/l10n.pm:61
#, c-format
msgid "Report check result to syslog"
msgstr "Ergebnis in SysLog speichern"

#: security/l10n.pm:62
#, c-format
msgid "Reports check result to tty"
msgstr "Sendet Prüfbericht an tty"

#: security/level.pm:10
#, c-format
msgid "Welcome To Crackers"
msgstr "Cracker-Spielplatz"

#: security/level.pm:11
#, c-format
msgid "Poor"
msgstr "Schwach"

#: security/level.pm:12
#, c-format
msgid "Standard"
msgstr "Standard"

#: security/level.pm:13
#, c-format
msgid "High"
msgstr "Hoch"

#: security/level.pm:14
#, c-format
msgid "Higher"
msgstr "Höher"

#: security/level.pm:15
#, c-format
msgid "Paranoid"
msgstr "Paranoid"

#: security/level.pm:41
#, c-format
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive. It must not be used for a machine connected to others\n"
"or to the Internet. There is no password access."
msgstr ""
"Diese Ebene ist mit Vorsicht zu verwenden. Zwar macht sie Ihr System \n"
"einfacher handhabbar, aber auch leichter angreifbar: In dieser Form darf \n"
"der Rechner nicht als Netzwerkrechner (LAN oder Modem) verwendet werden, \n"
"da Angreifer mangels Passwort an Ihre Daten gelangen können!"

#: security/level.pm:44
#, c-format
msgid ""
"Passwords are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Passwortabfragen sind nun eingeschaltet, aber die Verwendung als \n"
"Netzwerkrechner kann hier nicht empfohlen werden."

#: security/level.pm:45
#, c-format
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
"Das ist die Standard-Sicherheitsebene für Rechner, mit Internetzugang \n"
"als Client."

#: security/level.pm:46
#, c-format
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
"Es gibt bereits mehr Restriktionen und jede Nacht werden automatische "
"Sicherheitstests durchgeführt."

#: security/level.pm:47
#, c-format
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
"The security is now high enough to use the system as a server which can "
"accept\n"
"connections from many clients. Note: if your machine is only a client on the "
"Internet, you should choose a lower level."
msgstr ""
"Mit dieser Sicherheitsebene wird es möglich, das System als einen \n"
"Server zu verwenden.\n"
"Die Sicherheit ist nun ausreichend hoch, um das System als Server \n"
"einzusetzen, der einer Vielzahl von Clients einen Verbindungsaufbau \n"
"erlaubt. Es sei hier angemerkt, dass Ihr Rechner, wenn Sie nur als \n"
"Client ins Internet gehen, besser eine niedrigere Sicherheitsebene \n"
"verwenden sollte."

#: security/level.pm:50
#, c-format
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
"Diese Ebene bietet die selbe Funktionalität, wie die vorherige. Jedoch ist \n"
"das System nun komplett geschlossen. Es ist die höchste Sicherheitsebene."

#: security/level.pm:55
#, c-format
msgid "Security"
msgstr "Sicherheit"

#: security/level.pm:55
#, c-format
msgid "DrakSec Basic Options"
msgstr "DrakSec-Grundeinstellungen"

#: security/level.pm:57
#, c-format
msgid "Please choose the desired security level"
msgstr "Wählen Sie die gewünschte Sicherheitsebene"

#: security/level.pm:61
#, c-format
msgid "Security level"
msgstr "Sicherheitsebene"

#: security/level.pm:63
#, c-format
msgid "Use libsafe for servers"
msgstr "„libsafe“ bei Servern verwenden"

#: security/level.pm:64
#, c-format
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "Eine Bibliothek, die gegen sog. „buffer overflow“-Angriffe schützt."

#: security/level.pm:65
#, c-format
msgid "Security Administrator (login or email)"
msgstr "Sicherheitsadministrator (Benutzername oder E-Mail)"

#: services.pm:19
#, c-format
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Startet das ALSA (Advanced Linux Sound Architecture) Sound-System"

#: services.pm:20
#, c-format
msgid "Anacron is a periodic command scheduler."
msgstr ""
"Mit dem Dienst anacron können cron-Prozesse auch zu anderen als den \n"
"vorgegebenen Zeiten gestartet werden. Dies ist vor Allem dann \n"
"sinnvoll, wenn Ihr Rechner nicht rund um die Uhr läuft, da sonst \n"
"Prozesse, die etwa zwischen Mitternacht und 6:00 Uhr gestartet \n"
"werden sollten, nie ausgeführt würden."

#: services.pm:21
#, c-format
msgid ""
"apmd is used for monitoring battery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
"Der APM-Dienst (apmd) wird von Laptops verwendet, um den Ladestatus \n"
"der Batterie durch den Syslog-Dienst erfassen zu lassen. Mit seiner \n"
"Hilfe kann man den Computer auch rechtzeitig herunterfahren lassen, \n"
"bevor die Batterien leer sind."

#: services.pm:23
#, c-format
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
"Dieser Dienst startet Applikationen der at-Warteschlange wenn der \n"
"dafür vorgesehene Zeitpunkt erreicht ist. Lässt die Systemauslastung \n"
"es zu, werden sog. Batch-Anwendungen gestartet."

#: services.pm:25
#, c-format
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
"basic\n"
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
"Der Befehl cron wird unter UNIX/Linux dazu verwendet, Benutzerprogramme \n"
"zu vordefinierten regelmäßigen Zeiten abzuarbeiten. \n"
"Der Dienst vixie cron erweitert dieses Konzept um weitere Funktionen, etwa \n"
"ein verbessertes Sicherheitskonzept und einfachere Konfiguration."

#: services.pm:28
#, c-format
msgid ""
"Common UNIX Printing System (CUPS) is an advanced printer spooling system"
msgstr ""

#: services.pm:29
#, c-format
msgid "Launches the graphical display manager"
msgstr ""

#: services.pm:30
#, c-format
msgid ""
"FAM is a file monitoring daemon. It is used to get reports when files "
"change.\n"
"It is used by GNOME and KDE"
msgstr ""
"FAM ist ein Datei-Monitor-Dienst. Er wird benutzt um anzuzeigen, \n"
"wenn sich Dateien ändern.\n"
"FAM wird von GNOME und KDE genutzt."

#: services.pm:32
#, c-format
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""
"Der GPM-Dienst stellt Ihnen eine Mausunterstützung in textbasierten Linux-\n"
"Programmen, wie dem Midnight Commander, zur Verfügung. Es erlaubt\n"
"auch mausbasierte Ausschneiden-und-Einfügen-Operationen auf der\n"
"Konsole und unterstützt Pop-Up-Menüs auf der Konsole."

#: services.pm:35
#, c-format
msgid "HAL is a daemon that collects and maintains information about hardware"
msgstr ""

#: services.pm:36
#, c-format
msgid ""
"HardDrake runs a hardware probe, and optionally configures\n"
"new/changed hardware."
msgstr ""
"HardDrake führt Hardwaretests durch, und konfiguriert (falls nötig) \n"
"neue/geänderte Hardware."

#: services.pm:38
#, c-format
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
"Apache ist ein World-Wide-Web-Server. Mit seiner Hilfe können Sie \n"
"HTML-Dateien über HTTP publizieren. Der Server ist CGI-fähig."

#: services.pm:39
#, c-format
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
"starting\n"
"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
"disables\n"
"all of the services it is responsible for."
msgstr ""
"Der Internet Superserver-Dienst (inetd) startet je nach Bedarf \n"
"etliche andere Internet-Dienste, so etwa telnet, ftp, rsh oder \n"
"rlogin. Dies jedoch nur, wenn die entsprechenden Dienste in der \n"
"Datei „/etc/inetd.conf“ freigeschaltet sind. \n"
"Schalten Sie diesen Dienst ab, können Sie auf keine der von inetd \n"
"verwalteten Dienste mehr zugreifen."

#: services.pm:43
#, c-format
msgid ""
"Launch packet filtering for Linux kernel 2.2 series, to set\n"
"up a firewall to protect your machine from network attacks."
msgstr ""
"Startet Paketfilterung für Linux 2.2-Kernel, um Ihren Rechner \n"
"durch eine Firewall vor Angriffen aus dem Netz zu schützen."

#: services.pm:45
#, c-format
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard.  This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
"Dieser Dienst lädt die Tastaturbelegung, die in der Datei \n"
"„/etc/sysconfig/keyboard“ angegeben ist. Mittels „kbdconfig“ \n"
"können Sie diese Einstellung ändern. Schalten Sie diesen Dienst ab, \n"
"müssen Sie ab dem nächsten Systemstart mit der amerikanischen \n"
"Tastatur vorlieb nehmen."

#: services.pm:48
#, c-format
msgid ""
"Automatic regeneration of kernel header in /boot for\n"
"/usr/include/linux/{autoconf,version}.h"
msgstr ""
"Automatische Neuerstellung der Kernel-Header in /boot für\n"
"/usr/include/linux/{autoconf,version}.h"

#: services.pm:50
#, c-format
msgid "Automatic detection and configuration of hardware at boot."
msgstr ""
"Automatische Erkennung und Konfiguration neuer Hardware während des \n"
"Systemstarts."

#: services.pm:51
#, c-format
msgid ""
"Linuxconf will sometimes arrange to perform various tasks\n"
"at boot-time to maintain the system configuration."
msgstr ""
"Linuxconf versucht beim Systemstart einige Verwaltungsaufgaben \n"
"auszuführen."

#: services.pm:53
#, c-format
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
"Der Dienst lpd ist der Drucker-Server Ihres Rechners. Wenn Sie \n"
"diesen Dienst abschalten werden Druckaufträge nicht mehr abgearbeitet.\n"
"Hauptaufgabe von lpd ist es, Druckaufträge an den jeweiligen \n"
"zuständigen Drucker (dieser kann auch einen anderen Rechner hängen) \n"
"zu senden."

#: services.pm:55
#, c-format
msgid ""
"Linux Virtual Server, used to build a high-performance and highly\n"
"available server."
msgstr ""
"Der Linux Virtual Server kann verwendet werden, um ein \n"
"hochperformanten Hochverfügbarkeitsserver aufzusetzen."

#: services.pm:57
#, c-format
msgid ""
"DBUS is a daemon which broadcasts notifications of system events and other "
"messages"
msgstr ""

#: services.pm:58
#, c-format
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
msgstr ""
"Der Dienst named (BIND) stellt ihnen einen Server zur Verfügung, \n"
"mit dessen Hilfe Rechnernamen in IP-Adressen umgesetzt werden. \n"
"Ein solcher Dienst wird „Domain Name Server“ (DNS) genannt. \n"
"Falls Sie nur einen Rechner besitzen, mit dem Sie per Modem/ISDN ins \n"
"Netz gehen, benötigen Sie diesen Dienst nicht."

#: services.pm:59
#, c-format
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
"Dieser Dienst ist verantwortlich dafür, dass alle Netzwerk-Dateisysteme \n"
"(NFS) beim Systemstart eingehängt werden, etwa SMB (Lan Manager/Windows) \n"
"und NCP (NetWare)."

#: services.pm:61
#, c-format
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
"Dieser Dienst aktiviert Netzwerkgeräte (etwa Netzwerkkarten), die \n"
"so konfiguriert wurden, dass sie ab dem Systemstart zur Verfügung \n"
"stehen sollen."

#: services.pm:63
#, c-format
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
"NFS ist ein geläufiges Protokoll in TCP/IP Netzwerken um Dateien \n"
"durch verschiedene Rechner gemeinsam nutzen zu können\n"
" (File sharing). \n"
"Dieser Dienst stellt Ihnen einen solchen Server zur Verfügung. \n"
"Konfiguriert wird er in der Datei „/etc/exports“."

#: services.pm:66
#, c-format
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
"NFS ist ein geläufiges Protokoll in TCP/IP-Netzwerken um Dateien \n"
"durch verschiedene Rechner gemeinsam nutzen zu können. \n"
"Der Dienst nfslock stellt Ihnen hierfür Sperr-Mechanismen zur \n"
"Verfügung, damit eine Datei nicht durch mehrere Personen \n"
"gleichzeitig verändert werden kann."

#: services.pm:68
#, c-format
msgid "Synchronizes system time using the Network Time Protocol (NTP)"
msgstr ""

#: services.pm:69
#, c-format
msgid ""
"Automatically switch on numlock key locker under console\n"
"and Xorg at boot."
msgstr ""