summaryrefslogtreecommitdiffstats
path: root/perl-install/install_any.pm
blob: 9ee692fd26dfa59bbf8fa92de1be4f1ceb280174 (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
package install_any; # $Id$

use diagnostics;
use strict;

use vars qw(@ISA %EXPORT_TAGS @EXPORT_OK @needToCopy @needToCopyIfRequiresSatisfied);

@ISA = qw(Exporter);
%EXPORT_TAGS = (
    all => [ qw(getNextStep spawnShell addToBeDone) ],
);
@EXPORT_OK = map { @$_ } values %EXPORT_TAGS;

#-######################################################################################
#- misc imports
#-######################################################################################
use common qw(:common :system :functional :file);
use run_program;
use partition_table qw(:types);
use partition_table_raw;
use devices;
use fsedit;
use modules;
use detect_devices;
use any;
use log;
use fs;

#- package that have to be copied for proper installation (just to avoid changing cdrom)
#- here XFree86 is copied entirey if not already installed, maybe better to copy only server.
@needToCopy = qw(
XFree86-8514 XFree86-AGX XFree86-Mach32 XFree86-Mach64 XFree86-Mach8 XFree86-Mono
XFree86-P9000 XFree86-S3 XFree86-S3V XFree86-SVGA XFree86-W32 XFree86-I128
XFree86-Sun XFree86-SunMono XFree86-Sun24 XFree86-3DLabs XFree86-FBDev XFree86-server
XFree86 XFree86-glide-module Device3Dfx Glide_V3-DRI Glide_V5 Mesa
dhcpcd pump dhcpxd dhcp-client isdn4net isdn4k-utils dev pptp-adsl-fr rp-pppoe ppp ypbind
rhs-printfilters lpr cups cups-drivers pnm2ppa Lexmark-1100-printer-driver__lm1100 samba ncpfs
);
#- package that have to be copied only if all their requires are satisfied.
@needToCopyIfRequiresSatisfied = qw(
xpp kups
);

#-######################################################################################
#- Media change variables&functions
#-######################################################################################
my $postinstall_rpms = '';
my $current_medium = 1;
my $asked_medium = 1;
my $cdrom = undef;
sub useMedium($) {
    #- before ejecting the first CD, there are some files to copy!
    #- does nothing if the function has already been called.
    $_[0] > 1 and $::o->{method} eq 'cdrom' and setup_postinstall_rpms($::o->{prefix}, $::o->{packages});

    $asked_medium eq $_[0] or log::l("selecting new medium '$_[0]'");
    $asked_medium = $_[0];
}
sub changeMedium($$) {
    my ($method, $medium) = @_;
    log::l("change to medium $medium for method $method (refused by default)");
    0;
}
sub relGetFile($) {
    local $_ = $_[0];
    m|\.rpm$| ? "$::o->{packages}[2]{$asked_medium}{rpmsdir}/$_" : $_;
}
sub askChangeMedium($$) {
    my ($method, $medium) = @_;
    my $allow;
    do {
	eval { $allow = changeMedium($method, $medium) };
    } while ($@); #- really it is not allowed to die in changeMedium!!! or install will cores with rpmlib!!!
    $allow;
}
sub errorOpeningFile($) {
    my ($file) = @_;
    $file eq 'XXX' and return; #- special case to force closing file after rpmlib transaction.
    $current_medium eq $asked_medium and log::l("errorOpeningFile $file"), return; #- nothing to do in such case.
    $::o->{packages}[2]{$asked_medium}{selected} or return; #- not selected means no need for worying about.

    my $max = 32; #- always refuse after $max tries.
    if ($::o->{method} eq "cdrom") {
	cat_("/proc/mounts") =~ m|(/tmp/\S+)\s+/tmp/rhimage| and $cdrom = $1;
	return unless $cdrom;
	ejectCdrom($cdrom);
	while ($max > 0 && askChangeMedium($::o->{method}, $asked_medium)) {
	    $current_medium = $asked_medium;
	    eval { fs::mount($cdrom, "/tmp/rhimage", "iso9660", 'readonly') };
	    my $getFile = getFile($file); $getFile and return $getFile;
	    $current_medium = 'unknown'; #- don't know what CD is inserted now.
	    ejectCdrom($cdrom);
	    --$max;
	}
    } else {
	while ($max > 0 && askChangeMedium($::o->{method}, $asked_medium)) {
	    $current_medium = $asked_medium;
	    my $getFile = getFile($file); $getFile and return $getFile;
	    $current_medium = 'unknown'; #- don't know what CD image has been copied.
	    --$max;
	}
    }

    #- keep in mind the asked medium has been refused on this way.
    #- this means it is no more selected.
    $::o->{packages}[2]{$asked_medium}{selected} = undef;

    #- on cancel, we can expect the current medium to be undefined too,
    #- this enable remounting if selecting a package back.
    $current_medium = 'unknown';

    return;
}
sub getFile {
    my ($f, $method) = @_;
    my $rel = relGetFile($f);
    log::l("getFile $f ($method) relGetFile $rel");
    do {
	if ($method =~ /crypto/i) {
	    require crypto;
	    log::l("crypto::getFile $f");
	    crypto::getFile($f);
	} elsif ($::o->{method} eq "ftp") {
	    require ftp;
	    ftp::getFile($rel);
	} elsif ($::o->{method} eq "http") {
	    require http;
	    log::l("http getFile $f");
	    http::getFile($rel);
	} else {
	    #- try to open the file, but examine if it is present in the repository, this allow
	    #- handling changing a media when some of the file on the first CD has been copied
	    #- to other to avoid media change...
	    my $f2 = "$postinstall_rpms/$f";
	    $f2 = "/tmp/rhimage/$rel" unless $postinstall_rpms && -e $f2;
	    log::l("local getFile $f2");
	    open GETFILE, $f2 and *GETFILE;
	}
    } || errorOpeningFile($f);
}
sub getAndSaveFile {
    my ($file, $local) = @_;
    log::l("getAndSaveFile $file $local");
    local *F; open F, ">$local" or return;
    local $/ = \ (16 * 1024);
    my $f = ref($file) ? $file : getFile($file) or return;
    local $_;
    while (<$f>) { syswrite F, $_ }
    1;
}


#-######################################################################################
#- Post installation RPMS from cdrom only, functions
#-######################################################################################
sub setup_postinstall_rpms($$) {
    my ($prefix, $packages) = @_;

    $postinstall_rpms and return;
    $postinstall_rpms = "$prefix/usr/postinstall-rpm";

    require pkgs;
    require commands;

    log::l("postinstall rpms directory set to $postinstall_rpms");
    clean_postinstall_rpms(); #- make sure in case of previous upgrade problem.
    commands::mkdir_('-p', $postinstall_rpms);

    #- compute closure of unselected package that may be copied,
    #- don't complain if package does not exists as it may happen
    #- for the various architecture taken into account (X servers).
    my %toCopy;
    foreach (@needToCopy) {
	my $pkg = pkgs::packageByName($packages, $_);
	pkgs::selectPackage($packages, $pkg, 0, \%toCopy) if $pkg;
    }
    @toCopy{@needToCopyIfRequiresSatisfied} = ();

    my @toCopy = map { pkgs::packageByName($packages, $_) } keys %toCopy;

    #- extract headers of package, this is necessary for getting
    #- the complete filename of each package.
    #- copy the package files in the postinstall RPMS directory.
    #- last arg is default medium '' known as the CD#1.
    pkgs::extractHeaders($prefix, \@toCopy, $packages->[2]{1});
    commands::cp((map { "/tmp/rhimage/" . relGetFile(pkgs::packageFile($_)) } @toCopy), $postinstall_rpms);
}
sub clean_postinstall_rpms() {
    require commands;
    $postinstall_rpms and -d $postinstall_rpms and commands::rm('-rf', $postinstall_rpms);
}

#-######################################################################################
#- Functions
#-######################################################################################
sub kernelVersion {
    my ($o) = @_;
    local $_ = readlink("$::o->{prefix}/boot/vmlinuz") and return first(/vmlinuz-(.*)/);

    my $p = pkgs::packageByName($o->{packages}, "kernel") or die "I couldn't find the kernel package!";
    pkgs::packageVersion($p) . "-" . pkgs::packageRelease($p);
}


sub getNextStep {
    my ($s) = $::o->{steps}{first};
    $s = $::o->{steps}{$s}{next} while $::o->{steps}{$s}{done} || !$::o->{steps}{$s}{reachable};
    $s;
}

sub spawnShell {
    return if $::o->{localInstall} || $::testing;

    -x "/bin/sh" or die "cannot open shell - /usr/bin/sh doesn't exist";

    fork and return;

    local *F;
    sysopen F, "/dev/tty2", 2 or die "cannot open /dev/tty2 -- no shell will be provided";

    open STDIN, "<&F" or die '';
    open STDOUT, ">&F" or die '';
    open STDERR, ">&F" or die '';
    close F;

    c::setsid();

    ioctl(STDIN, c::TIOCSCTTY(), 0) or warn "could not set new controlling tty: $!";

    exec {"/bin/sh"} "-/bin/sh" or log::l("exec of /bin/sh failed: $!");
}

sub fsck_option {
    my ($o) = @_;
    my $y = $o->{security} < 3 && $::beginner ? "-y " : "";
    substInFile { s/^(\s*fsckoptions="?)(-y )?/$1$y/ } "$o->{prefix}/etc/rc.d/rc.sysinit";
}

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

    #- make sure of this place to be available for installation, this could help a lot.
    #- currently doing a very small install use 36Mb of postinstall-rpm, but installing
    #- these packages may eat up to 90Mb (of course not all the server may be installed!).
    #- 50mb may be a good choice to avoid almost all problem of insuficient space left...
    my $minAvailableSize = 50 * sqr(1024);

    my $n = !$::testing && getAvailableSpace_mounted($o->{prefix}) || 
            getAvailableSpace_raw($o->{fstab}) * 512 / 1.07;
    $n - max(0.1 * $n, $minAvailableSize);
}

sub getAvailableSpace_mounted {
    my ($prefix) = @_;
    my $dir = -d "$prefix/usr" ? "$prefix/usr" : "$prefix";
    my (undef, $free) = common::df($dir) or return;
    log::l("getAvailableSpace_mounted $free KB");
    $free * 1024 || 1;
}
sub getAvailableSpace_raw {
    my ($fstab) = @_;

    do { $_->{mntpoint} eq '/usr' and return $_->{size} } foreach @$fstab;
    do { $_->{mntpoint} eq '/'    and return $_->{size} } foreach @$fstab;

    if ($::testing) {
	my $nb = 450;
	log::l("taking ${nb}MB for testing");
	return $nb << 11;
    }
    die "missing root partition";
}

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

    require pkgs;
    if (!$o->{packages} || is_empty_hash_ref($o->{packages}[0])) {
	$o->{packages} = pkgs::psUsingHdlists($o->{prefix}, $o->{method});

	push @{$o->{default_packages}}, "nfs-utils-clients" if $o->{method} eq "nfs";
	push @{$o->{default_packages}}, "numlock" if $o->{miscellaneous}{numlock};
	push @{$o->{default_packages}}, "kernel-secure" if $o->{security} > 3;
	push @{$o->{default_packages}}, "kernel-smp" if $o->{security} <= 3 && detect_devices::hasSMP(); #- no need for kernel-smp if we have kernel-secure which is smp
	push @{$o->{default_packages}}, "kernel-pcmcia-cs" if $o->{pcmcia};
	push @{$o->{default_packages}}, "apmd" if $o->{pcmcia};
	push @{$o->{default_packages}}, "raidtools" if $o->{raid} && !is_empty_array_ref($o->{raid}{raid});
	push @{$o->{default_packages}}, "reiserfs-utils" if grep { isReiserfs($_) } @{$o->{fstab}};
	push @{$o->{default_packages}}, "cdrecord" if detect_devices::getIDEBurners();
	push @{$o->{default_packages}}, "alsa", "alsa-utils" if modules::get_alias("snd-slot-0") =~ /^snd-card-/;

	pkgs::getDeps($o->{prefix}, $o->{packages});
	pkgs::selectPackage($o->{packages}, pkgs::packageByName($o->{packages}, 'basesystem') || die("missing basesystem package"), 1);

	#- some program that may be crazy on some conditions (hack waiting for Aurora to work if no fb).
	$o->{allowFB} or push @pkgs::skip_list, 'Aurora';

	#- must be done after selecting base packages (to save memory)
	pkgs::getProvides($o->{packages});

	$o->{compss} = pkgs::readCompss($o->{prefix}, $o->{packages});
	#- must be done after getProvides
	$o->{compssListLevels} = pkgs::readCompssList($o->{packages}, lang::get_langs());
	($o->{compssUsers}, $o->{compssUsersSorted}, $o->{compssUsersIcons}) = 
	  pkgs::readCompssUsers($o->{packages}, $o->{compss});

	my @l = ();
	push @l, "kapm", "kcmlaptop", "DrakProfile", "DrakSync" if $o->{pcmcia};
	push @l, "Glide_V5"  if detect_devices::matching_desc('Voodoo 5');
	push @l, "Glide_V3-DRI"  if detect_devices::matching_desc('Voodoo (3|Banshee)');
	push @l, "Device3Dfx", "XFree86-glide-module" if detect_devices::matching_desc('Voodoo');
	require timezone;
	require lang;
	push @l, "isdn4k-utils" if ($o->{timezone}{timezone} || timezone::bestTimezone(lang::lang2text($o->{lang}))) =~ /Europe/;
	$_->{values} = [ map { $_ + 50 } @{$_->{values}} ] foreach grep {$_} map { pkgs::packageByName($o->{packages}, $_) } @l;

    } else {
	#- this has to be done to make sure necessary files for urpmi are
	#- present.
	pkgs::psUpdateHdlistsDeps($o->{prefix}, $o->{method});

	#- remove upgrade flag with selection one. TOCHECK
	#pkgs::unselectAllPackagesIncludingUpgradable($o->{packages});
    }
}

sub addToBeDone(&$) {
    my ($f, $step) = @_;

    return &$f() if $::o->{steps}{$step}{done};

    push @{$::o->{steps}{$step}{toBeDone}}, $f;
}

sub setAuthentication {
    my ($o) = @_;
    my ($shadow, $md5, $nis) = @{$o->{authentication} || {}}{qw(shadow md5 NIS)};
    my $p = $o->{prefix};
    any::enableMD5Shadow($p, $shadow, $md5);
    any::enableShadow($p) if $shadow;
    if ($nis) {
	$o->pkg_install("ypbind");
	my $domain = $o->{netc}{NISDOMAIN};
	$domain || $nis ne "broadcast" or die _("Can't use broadcast with no NIS domain");
	my $t = $domain ? "domain $domain" . ($nis ne "broadcast" && " server")
	                : "ypserver";
	substInFile {
	    $_ = "#~$_" unless /^#/;
	    $_ .= "$t $nis\n" if eof;
	} "$p/etc/yp.conf";
	require network;
	network::write_conf("$p/etc/sysconfig/network", $o->{netc});
    }
}

sub killCardServices {
    my $pid = chop_(cat_("/tmp/cardmgr.pid"));
    $pid and kill(15, $pid); #- send SIGTERM
}

sub hdInstallPath() {
    cat_("/proc/mounts") =~ m|/\w+/(\S+)\s+/tmp/hdimage| or return;
    my ($part) = grep { $_->{device} eq $1 } @{$::o->{fstab}};    
    $part->{mntpoint} or grep { $_->{mntpoint} eq "/mnt/hd" } @{$::o->{fstab}} and return;
    $part->{mntpoint} ||= "/mnt/hd";
    $part->{mntpoint} . first(readlink("/tmp/rhimage") =~ m|^/tmp/hdimage/(.*)|);
}

sub unlockCdrom(;$) {
    my ($cdrom) = @_;
    $cdrom or cat_("/proc/mounts") =~ m|(/tmp/\S+)\s+/tmp/rhimage| and $cdrom = $1;
    eval { $cdrom and ioctl detect_devices::tryOpen($1), c::CDROM_LOCKDOOR(), 0 };
}
sub ejectCdrom(;$) {
    my ($cdrom) = @_;
    $cdrom or cat_("/proc/mounts") =~ m|(/tmp/\S+)\s+/tmp/rhimage| and $cdrom = $1;
    my $f = eval { $cdrom && detect_devices::tryOpen($cdrom) } or return;
    getFile("XXX"); #- close still opened filehandle
    eval { fs::umount("/tmp/rhimage") };
    ioctl $f, c::CDROMEJECT(), 1;
}

sub setupFB {
    my ($o, $vga) = @_;

    $vga ||= 785; #- assume at least 640x480x16.

    require bootloader;
    #- update bootloader entries with vga, all kernel are now framebuffer.
    foreach (qw(vmlinuz vmlinuz-secure vmlinuz-smp vmlinuz-hack)) {
	if (my $e = bootloader::get("/boot/$_", $o->{bootloader})) {
	    $e->{vga} = $vga;
	}
    }
    bootloader::install($o->{prefix}, $o->{bootloader}, $o->{fstab}, $o->{hds});
    1;
}

sub install_urpmi {
    my ($prefix, $method, $mediums) = @_;

    my @cfg = map_index {
	my $name = $_->{fakemedium};

	local *LIST;
	open LIST, ">$prefix/var/lib/urpmi/list.$name" or log::l("failed to write list.$name"), return;

	my $dir = ${{ nfs => "file://mnt/nfs", 
                      hd => "file:/" . hdInstallPath(),
		      ftp => $ENV{URLPREFIX},
		      http => $ENV{URLPREFIX},
		      cdrom => "removable_cdrom_$::i://mnt/cdrom" }}{$method} . "/$_->{rpmsdir}";

	local *FILES; open FILES, "packdrake -c /tmp/$_->{hdlist} | parsehdlist - |";
	chop, print LIST "$dir/$_\n" foreach <FILES>;
	close FILES or log::l("parsehdlist failed"), return;
	close LIST;

	$dir .= " with ../base/$_->{hdlist}" if $method =~ /ftp|http/;
	"$name $dir\n";
    } values %$mediums;
    eval { output "$prefix/etc/urpmi/urpmi.cfg", @cfg };
}


#-###############################################################################
#- kde stuff
#-###############################################################################
sub kderc_largedisplay {
    my ($prefix) = @_;

    update_userkderc($prefix, 'KDE', 
		     Contrast => 7,
		     kfmIconStyle => "Large",
		     kpanelIconStyle => "Normal", #- to change to Large when icons looks better
		     KDEIconStyle => "Large");
    substInFile {
	s/^(GridWidth)=85/$1=100/;
	s/^(GridHeight)=70/$1=75/;
    } $_ foreach list_skels($prefix, '.kde/share/config/kfmrc');
}

sub kdeicons_postinstall {
    my ($prefix) = @_;

    #- parse etc/fstab file to search for dos/win, floppy, zip, cdroms icons.
    #- handle both supermount and fsdev usage.
    my %l = (
	     'cdrom' => [ 'cdrom', 'Cd-Rom' ],
	     'zip' => [ 'zip', 'Zip' ],
	     'floppy-ls' => [ 'floppy', 'LS-120' ],
	     'floppy' => [ 'floppy', 'Floppy' ],
    );
    foreach (fs::read_fstab("$prefix/etc/fstab")) {

	my ($name_, $nb) = $_->{mntpoint} =~ m|.*/(\S+?)(\d*)$/|;
	my ($name, $text) = @{$l{$name_} || []};

	my $f = ${{
	    supermount => sub { $name .= '.fsdev' if $name },
	    vfat => sub { $name = 'Dos_'; $text = $name_ },
	}}{$_->{type}};
	&$f if $f;

	template2userfile($prefix, 
			  "$ENV{SHARE_PATH}/$name.kdelnk.in",
			  "Desktop/$text" .  ($nb && " $nb"). ".kdelnk",
			  1, %$_) if $name;
    }

    my @l = list_skels($prefix, 'Desktop/Doc.kdelnk');
    if (my ($lang) = all("$prefix/usr/doc/mandrake")) {
	substInFile { s|^(URL=.*?)/?$|$1/$lang/index.html| } @l;
	substInFile { s|^(url=/usr/doc/mandrake/)$|$1$lang/index.html| } "$prefix/usr/lib/desktop-links/mandrake.links";
    } else {
	unlink @l;
	substInFile { $_ = '' if /^\[MDKsupport\]$/ .. /^\s*$/ } "$prefix/usr/lib/desktop-links/mandrake.links";
    }

    # rename the .kdelnk to the name found in the .kdelnk as kde doesn't use it
    # for displaying
    foreach my $dir (grep { -d $_ } list_skels($prefix, 'Desktop')) {
	foreach (grep { /\.kdelnk$/ } all($dir)) {
	    cat_("$dir/$_") =~ /^Name\[\Q$ENV{LANG}\E\]=(.{2,14})$/m
	      and rename "$dir/$_", "$dir/$1.kdelnk";
	}
    }
}

sub kdemove_desktop_file {
    my ($prefix) = @_;
    my @toMove = qw(doc.kdelnk news.kdelnk updates.kdelnk home.kdelnk printer.kdelnk floppy.kdelnk cdrom.kdelnk FLOPPY.kdelnk CDROM.kdelnk);

    #- remove any existing save in Trash of each user and
    #- move appropriate file there after an upgrade.
    foreach my $dir (grep { -d $_ } list_skels($prefix, 'Desktop')) {
	unlink("$dir/Trash/$_") && rename("$dir/$_", "$dir/Trash/$_")
	    foreach grep { -e "$dir/$_" } @toMove, grep { /\.rpmorig$/ } all($dir)
    }
}


#-###############################################################################
#- auto_install stuff
#-###############################################################################
sub auto_inst_file() { ($::g_auto_install ? "/tmp" : "$::o->{prefix}/root") . "/auto_inst.cfg.pl" }

sub g_auto_install(;$) {
    my ($f) = @_; $f ||= auto_inst_file;
    my $o = {};

    $o->{default_packages} = [ map { pkgs::packageName($_) } grep { pkgs::packageFlagSelected($_) && !pkgs::packageFlagBase($_) } values %{$::o->{packages}[0]} ];

    my @fields = qw(mntpoint type size);
    $o->{partitions} = [ map { my %l; @l{@fields} = @$_{@fields}; \%l } grep { $_->{mntpoint} } @{$::o->{fstab}} ];
    
    exists $::o->{$_} and $o->{$_} = $::o->{$_} foreach qw(lang autoSCSI authentication printer mouse wacom netc timezone superuser intf keyboard mkbootdisk users installClass partitioning isUpgrade manualFstab nomouseprobe crypto security netcnx useSupermount autoExitInstall); #- TODO modules bootloader 

    if (my $card = $::o->{X}{card}) {
	$o->{X}{$_} = $::o->{X}{$_} foreach qw(default_depth resolution_wanted);
	if ($o->{X}{default_depth} and my $depth = $card->{depth}{$o->{X}{default_depth}}) {
	    $depth ||= [];
	    $o->{X}{resolution_wanted} ||= join "x", @{$depth->[0]} unless is_empty_array_ref($depth->[0]);
	    $o->{X}{monitor} = $::o->{X}{monitor} if $::o->{X}{monitor}{manual};
	}
    }

    local $o->{partitioning}{auto_allocate} = 1;
    local $o->{autoExitInstall} = 1;

    $_ = { %{$_ || {}} }, delete @$_{qw(oldu oldg password password2)} foreach $o->{superuser}, @{$o->{users} || []};
    
    output($f, 
	   "# You should always check the syntax with 'perl -cw auto_inst.cfg.pl' before testing\n",
	   Data::Dumper->Dump([$o], ['$o']), "\0");
}

sub loadO {
    my ($O, $f) = @_; $f ||= auto_inst_file;
    my $o;
    if ($f =~ /^(floppy|patch)$/) {
	my $f = $f eq "floppy" ? 'Mandrake/base/auto_inst.cfg' : "patch";
	unless ($::testing) {
	    fs::mount(devices::make("fd0"), "/mnt", (arch() =~ /sparc/ ? "romfs" : "vfat"), 'readonly');
	    $f = "/mnt/$f";
	}
	-e $f or $f .= '.pl';

	my $b = before_leaving {
	    fs::umount("/mnt") unless $::testing;
	    modules::unload($_) foreach qw(vfat fat);
	};
	$o = loadO($O, $f);
    } else {
	-e "$f.pl" and $f .= ".pl" unless -e $f;

	my $fh = -e $f ? do { local *F; open F, $f; *F } : getFile($f) or die _("Error reading file $f");
	{
	    local $/ = "\0";
	    no strict;
	    eval <$fh>;
	    close $fh;
	    $@ and log::l("Bad kickstart file $f (failed $@)");
	}
	add2hash_($o ||= {}, $O);
    }
    bless $o, ref $O;
}

sub generate_ks_cfg {
    my ($o) = @_;
    
    return if $o->{method} =~ /hd|cdrom/;

    my $ks;
    if ($o->{method} =~ /ftp|http/) {
	$ks .= "url --url $ENV{URLPREFIX}\n";
    } elsif ($o->{method} =~ /nfs/) {
	cat_("/proc/mounts") =~ m|(\S+):(\S+)\s+/tmp/rhimage nfs| or die;
	$ks .= "nfs --server $1 --dir $2\n";
    }
    my ($intf) = values %{$o->{intf}};
    if ($intf->{BOOTPROTO} =~ /^(dhcp|bootp)$/) {
	$ks .= "network --bootproto $intf->{BOOTPROTO}\n";
    } else {
	require network;
	my %l = (ip => $intf->{IPADDR}, netmask => $intf->{NETMASK}, gateway => $o->{netc}{GATEWAY});
	$ks .= "network " . join(" ", map_each { $::b && "--$::a $::b" } %l);
	$ks .= " --nameserver $_" foreach network::dnsServers($o->{netc});
	$ks .= "\n";
    }
    $ks;
}

sub suggest_mount_points {
    my ($hds, $prefix, $uniq) = @_;
    my @parts = grep { isTrueFS($_) } fsedit::get_fstab(@$hds);

    my (%mntpoints, $user);

    my %l = (
	     '/'     => 'etc/fstab',
	     '/boot' => 'vmlinuz',
	     '/tmp'  => '.X11-unix',
	     '/usr'  => 'X11R6',
	     '/var'  => 'catman',
	    );

    foreach my $part (@parts) {
	$part->{mntpoint} && !$part->{unsafeMntpoint} and next; #- if already found via an fstab

	my $handle = any::inspect($part, $prefix) or return;
	my $d = $handle->{dir};
	my ($mnt) = grep { -e "$d/$l{$_}" } keys %l;
	$mnt ||= (stat("$d/.bashrc"))[4] ? '/root' : '/home/user' . ++$user if -e "$d/.bashrc";
	$mnt ||= (grep { -d $_ && (stat($_))[4] >= 500 && -e "$_/.bashrc" } glob_("$d")) ? '/home' : ''; 

	next if $uniq && fsedit::mntpoint2part($mnt, \@parts);
	$part->{mntpoint} = $mnt; delete $part->{unsafeMntpoint};

	#- try to find other mount points via fstab
	fs::get_mntpoints_from_fstab([ fsedit::get_fstab(@$hds) ], $d, $uniq) if $mnt eq '/';
    }
#-    $_->{mntpoint} || fsedit::suggest_part($_, $hds) foreach @parts;

    $_->{mntpoint} and log::l("suggest_mount_points: $_->{device} -> $_->{mntpoint}") foreach fsedit::get_fstab(@$hds);
}

#- mainly for finding the root partitions for upgrade
sub find_root_parts {
    my ($hds, $prefix) = @_;
    log::l("find_root_parts");
    suggest_mount_points($hds, $prefix);
    grep { delete($_->{mntpoint}) eq '/' } fsedit::get_fstab(@$hds);
}
sub use_root_part {
    my ($fstab, $part, $prefix) = @_;
    {
	my $handle = any::inspect($part, $prefix) or die;
	fs::get_mntpoints_from_fstab($fstab, $handle->{dir}, 'uniq');
    }
    map { $_->{mntpoint} = 'swap' } grep { isSwap($_) } @$fstab; #- use all available swap.
    fs::mount_all($fstab, $prefix);
}

sub getHds {
    my ($o, $f_err) = @_;
    my $ok = 1;
    my $flags = $o->{partitioning};

    my @drives = detect_devices::hds();
#    add2hash_($o->{partitioning}, { readonly => 1 }) if partition_table_raw::typeOfMBR($drives[0]{device}) eq 'system_commander';

  getHds: 
    $o->{hds} = catch_cdie { fsedit::hds(\@drives, $flags) }
      sub {
	  $ok = 0;
	  my $err = $@; $err =~ s/ at (.*?)$//;
	  log::l("error reading partition table: $err");
	  !$flags->{readonly} && $f_err and $f_err->($err);
      };

    if (is_empty_array_ref($o->{hds}) && $o->{autoSCSI}) {
	$o->setupSCSI; #- ask for an unautodetected scsi card
	goto getHds;
    }

    $ok = fsedit::verifyHds($o->{hds}, $flags->{readonly}, $ok)
        unless $flags->{clearall} || $flags->{clear};

    $o->{fstab} = [ fsedit::get_fstab(@{$o->{hds}}) ];
    fs::check_mounted($o->{fstab});
    fs::merge_fstabs($o->{fstab}, $o->{manualFstab});

    my @win = grep { isFat($_) && isFat({ type => fsedit::typeOfPart($_->{device}) }) } @{$o->{fstab}};
    log::l("win parts: ", join ",", map { $_->{device} } @win) if @win;
    if (@win == 1) {
	$win[0]{mntpoint} = "/mnt/windows";
    } else {
	my %w; foreach (@win) {
	    my $v = $w{$_->{device_windobe}}++;
	    $_->{mntpoint} = $_->{unsafeMntpoint} = "/mnt/win_" . lc($_->{device_windobe}) . ($v ? $v+1 : ''); #- lc cuz of StartOffice(!) cf dadou
	}
    }

    my @sunos = grep { isSunOS($_) && type2name($_->{type}) =~ /root/i } @{$o->{fstab}}; #- take only into account root partitions.
    if (@sunos) {
	my $v = '';
	map { $_->{mntpoint} = $_->{unsafeMntpoint} = "/mnt/sunos" . ($v && ++$v) } @sunos;
    }
    #- a good job is to mount SunOS root partition, and to use mount point described here in /etc/vfstab.

    $ok;
}

sub log_sizes {
    my ($o) = @_;
    my @df = common::df($o->{prefix});
    log::l(sprintf "Installed: %dMB(df), %dMB(rpm)", ($df[0] - $df[1]) / 1024, sum(`rpm --root $o->{prefix} -qa --queryformat "%{size}\n"`) / sqr(1024)) if -x "$o->{prefix}/bin/rpm";
}

1;
""
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr ""
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr ""
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr ""
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr ""
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr ""
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr ""
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr ""
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr ""
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr ""
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr ""
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr ""
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr ""
-#: ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr ""
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr ""
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr ""
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr ""
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr ""
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr ""
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr ""
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr ""
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr ""
-#: ../../keyboard.pm_.c:288
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr ""
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr ""
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr ""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:301
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:302
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:303
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:304
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:305
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:306
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:307
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:308
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:309
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5069,51 +5084,51 @@ msgstr ""
msgid "No mouse"
msgstr ""
-#: ../../mouse.pm_.c:440
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr ""
-#: ../../mouse.pm_.c:441
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr ""
-#: ../../mouse.pm_.c:442
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr ""
-#: ../../my_gtk.pm_.c:690
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:725
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr ""
-#: ../../my_gtk.pm_.c:725 ../../printerdrake.pm_.c:1612
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr ""
-#: ../../my_gtk.pm_.c:726 ../../printerdrake.pm_.c:1610
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr ""
-#: ../../my_gtk.pm_.c:1058
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr ""
-#: ../../my_gtk.pm_.c:1122 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
msgid "Info"
msgstr ""
-#: ../../my_gtk.pm_.c:1143
+#: ../../my_gtk.pm_.c:1141
msgid "Expand Tree"
msgstr ""
-#: ../../my_gtk.pm_.c:1144
+#: ../../my_gtk.pm_.c:1142
msgid "Collapse Tree"
msgstr ""
-#: ../../my_gtk.pm_.c:1145
+#: ../../my_gtk.pm_.c:1143
msgid "Toggle between flat and group sorted"
msgstr ""
@@ -5156,7 +5171,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:248
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr ""
@@ -5186,10 +5201,10 @@ msgid "Host name"
msgstr ""
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:179
-#: ../../network/netconnect.pm_.c:206 ../../network/netconnect.pm_.c:229
-#: ../../network/netconnect.pm_.c:237
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr ""
@@ -5355,54 +5370,54 @@ msgstr ""
msgid "Second DNS Server (optional)"
msgstr ""
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr ""
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr ""
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -5414,12 +5429,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:256
-#: ../../network/netconnect.pm_.c:276 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5427,7 +5442,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -5435,95 +5450,95 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:172
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:173 ../../printerdrake.pm_.c:2541
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
#: ../../standalone/drakfloppy_.c:146
msgid "Expert Mode"
msgstr ""
-#: ../../network/netconnect.pm_.c:179 ../../printerdrake.pm_.c:145
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:206
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:231
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:237
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr ""
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:256
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5531,20 +5546,20 @@ msgid ""
"%s"
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:271
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -5764,16 +5779,16 @@ msgid ""
"to the extended partitions."
msgstr ""
-#: ../../partition_table.pm_.c:776
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../partition_table.pm_.c:778
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr ""
-#: ../../partition_table.pm_.c:800
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr ""
@@ -6032,16 +6047,12 @@ msgstr ""
msgid "Automatic CUPS configuration"
msgstr ""
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:163 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr ""
-#: ../../printerdrake.pm_.c:164
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6054,13 +6065,13 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:172 ../../printerdrake.pm_.c:199
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr ""
-#: ../../printerdrake.pm_.c:173
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6078,11 +6089,11 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:182
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr ""
-#: ../../printerdrake.pm_.c:200
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6096,11 +6107,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:219
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:220
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6110,15 +6121,19 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:223 ../../printerdrake.pm_.c:225
-#: ../../printerdrake.pm_.c:226
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr ""
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr ""
+
#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
@@ -7274,7 +7289,7 @@ msgstr ""
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
-#: ../../security/msec.pm_.c:48
+#: ../../security/msec.pm_.c:144
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 "
@@ -7282,7 +7297,7 @@ msgid ""
" or to the Internet. There is no password access."
msgstr ""
-#: ../../security/msec.pm_.c:54
+#: ../../security/msec.pm_.c:150
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -7292,10 +7307,14 @@ msgid ""
"a client on the Internet, you should choose a lower level."
msgstr ""
-#: ../../security/msec.pm_.c:73 ../../standalone/drakfont_.c:680
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
msgid "Advanced Options"
msgstr ""
+#: ../../security/msec.pm_.c:199
+msgid "Basic Options"
+msgstr ""
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7739,11 +7758,11 @@ msgstr ""
msgid "Installing packages..."
msgstr ""
-#: ../../standalone/XFdrake_.c:129
+#: ../../standalone/XFdrake_.c:131
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
-#: ../../standalone/XFdrake_.c:133
+#: ../../standalone/XFdrake_.c:135
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
@@ -7942,26 +7961,26 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:548
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr ""
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr ""
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr ""
@@ -8012,10 +8031,11 @@ msgstr ""
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:871
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
msgid ""
"\n"
-"Drakbackup activities via $daemon_media:\n"
+"Drakbackup activities via %s:\n"
"\n"
msgstr ""
@@ -8033,13 +8053,6 @@ msgid ""
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:895
-msgid ""
-"\n"
-"Drakbackup activities via $net_proto:\n"
-"\n"
-msgstr ""
-
#: ../../standalone/drakbackup_.c:900
msgid ""
"\n"
@@ -8370,10 +8383,6 @@ msgstr ""
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1981
-msgid "\n"
-msgstr ""
-
#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
@@ -9036,7 +9045,7 @@ msgid "connecting to Bugzilla wizard ..."
msgstr ""
#: ../../standalone/drakbug_.c:129
-msgid "No browser available please! Please install one"
+msgid "No browser available! Please install one"
msgstr ""
#: ../../standalone/drakconnect_.c:80
@@ -9530,19 +9539,19 @@ msgstr ""
msgid "Post Uninstall"
msgstr ""
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr ""
-#: ../../standalone/drakgw_.c:122
+#: ../../standalone/drakgw_.c:123
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9550,31 +9559,31 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr ""
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr ""
-#: ../../standalone/drakgw_.c:142
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:150
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9582,19 +9591,19 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr ""
-#: ../../standalone/drakgw_.c:171
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:176
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -9604,31 +9613,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr ""
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr ""
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr ""
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9638,17 +9647,17 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:249
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr ""
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9658,15 +9667,15 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr ""
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr ""
-#: ../../standalone/drakgw_.c:276
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9677,7 +9686,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:288
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9689,74 +9698,74 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr ""
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:302
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:313
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:321
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr ""
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr ""
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:366
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr ""
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr ""
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr ""
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9886,11 +9895,11 @@ msgstr ""
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakxtv_.c:151
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:152
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10121,15 +10130,15 @@ msgstr ""
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:69
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr ""
-#: ../../standalone/mousedrake_.c:79
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr ""
-#: ../../standalone/mousedrake_.c:83
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr ""
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 60896970c..1046b1a74 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -1,36 +1,69 @@
# KTranslator Generated File
-# Copyright (c) 1999-2000 MandrakeSoft
-# Schalk. W. Cronj <schalkc@ntaba.co.za>, 2000
+# KTranslator Generated File
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Schalk W. Cronj <schalkc@ntaba.co.za>, 2000
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-09-09 22:06-0000\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-20 21:28-0000\n"
"Last-Translator: Schalk W. Cronj <schalkc@uk.ntaba.com>\n"
"Language-Team: Afrikaans <mandrake@af.org.za>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigureer skyfkoppe afsonderlik"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Gebruik Xinerama-ekstensies"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigureer net die \"%s\" kaart (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64MB of meer"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Kies 'n X-bediener"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X-bediener"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Multikopkonfigurasie"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -38,43 +71,44 @@ msgstr ""
"U stelsel onderstuen multikopkonfigurasie.\n"
"Wat wil u doen?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Videokaart"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Kies die geheue grootte van u videokaart"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Selekteer 'n videokaart"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree-konfigurasie"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Kies 'n X-bediener"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Watter tipe XFree-konfigurasie verlang u?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X-bediener"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Konfigureer skyfkoppe afsonderlik"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Kies 'n X-bediener"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Gebruik Xinerama-ekstensies"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X-bediener"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigureer net die \"%s\" kaart (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Watter tipe XFree-konfigurasie verlang u?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s met 3D-hardwareversnelling"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -83,34 +117,18 @@ msgstr ""
"U videokaart kan slegs 3D-versnelling onder XFree %s ondersteun.\n"
"DIt word wel onder XFree %s ondersteun wat dalk beter 2D-ondersteuning het."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"U videokaart kan vir 3D-hardewareversnelling ondestuen word in XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s met 3D-hardwareversnelling"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %s "
-"bied,\n"
-"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -122,31 +140,60 @@ msgstr ""
"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES.\n"
"U kaart word deur XFree %s ondersteun, wat beter 2D-ondersteuning bied."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %s "
+"bied,\n"
+"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installasievertoondrywer)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree-konfigurasie"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Kies die geheue grootte van u videokaart"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Selekteer opsies vir bediener"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Behou die veranderinge?\n"
+"Huidige konfigurasie is:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Kies 'n monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Aangepaste"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generies"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Herroep"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -168,512 +215,326 @@ msgstr ""
"monitor spesifiseer nie, dit kan die monitor beskadig. Indien u twyfel,\n"
"kies konservatief."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horisontale verfristempo"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikale verfristempo"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor is nie opgestel nie"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafikakaart is nog nie konfigureer nie"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Resolusie is nog nie gekies nie"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Wil u die konfigurasie toets?"
-
-#
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Toets konfigurasie"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 kleure (8 bis)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"probeer van die parameters verander"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32-duisend kleure (15 bis)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Daar was 'n fout:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65-duisend kleure (16 bis)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "uitgang binne %ds"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16-miljoen kleure (24 bis)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Is dit korrek?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 biljoen kleure (32 bis)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Hier is fout, probeer van die parameters verander"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resolusies"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resolusie"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Kies die resolusie en kleurdiepte"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Videokaart: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 bediener: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Nog"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Kanselleer"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "OK"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Kundige modus"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Vertoon almal"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Wil u die konfigurasie toets?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolusies"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Toets konfigurasie"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Sleutelbord uitleg: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Muistipe: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Muistoestel: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor HoriSink: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor VertVerfris: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Videokaart: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Videokaart: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Video geheue: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Kleurdiepte: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolusie: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 bediener: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86-drywer: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window konfigurasie word opgestel"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Wat wil u doen?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Verander monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Verander videokaart"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Verander bedienerinstellings"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Verander resolusie"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Vertoon inligting"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Toets weer"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Verlaat"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Behou die veranderinge?\n"
-"Huidige konfigurasie is:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X met herlaai"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Ek kan u rekenaar so opstel om X outomaties te laai.\n"
"Wil u X begin met 'n herlaai?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 kleure (8 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32-duisend kleure (15 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65-duisend kleure (16 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16-miljoen kleure (24 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 biljoen kleure (32 bis)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64MB of meer"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standaard VGA, 640x480 teen 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 teen 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-aanpasbaar, 1024x768 teen 87Hz interverweef (nie 800x600 nie)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 102x768 teen 87 Hz interverweef, 800x600 teen 56 Hz "
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Verlengde Super VGA, 800x600 teen 60 Hz, 640x480 teen 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Nie-interverweefde SVGA, 1024x768 teen 60 Hz, 800x600 teen 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Hod frekwensie SVGA, 1024x768 teen 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 60Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 74Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 76Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor wat 1600x1220 kan doen teen 70Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor wat 1600x1220 kan doen teen 76Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Eerste sektor van herlaaipartisie"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Eerste sektor van skyf (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO installasie"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Waar wil u die herlaaistelsel installeer"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub installasie"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO met tekskieskaart"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO met grafiese kieskaart"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Laai vauit DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Herlaaistelsel hoofopsies"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Herlaaistelsel om te gebruik"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Herlaaiprogram installasie"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Herlaaitoestel"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (werk nie op 'n ou BIOS'e nie)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompak"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompak"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Videomodus"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Wagperiode voro verstekstelsel gelaai word"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Wagwoord"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Wagwoord (weer)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Beperk instruksielynopsies"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "beperk"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Maak /tmp skoon met elke herlaai"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Presiese RAM grootte indien nodig (%d MB bespeur)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Gebruik multiprofiele"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Gee die geheuegrootte in MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Beginboodskap"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Tydsbeperking vir stelselkernlaai"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Laat CD-herlaai toe?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Laat OF-herlaai toe?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Verstek bedryfstelsel?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -682,83 +543,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Voeg by"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Klaar"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Verander"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Ander bedryfstelsel (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Ander bedryfstelsel (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Ander bedryfstelsel (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Beeld"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Basis"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Aanlas"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lees-skryf"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Onveilig"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Verstek"
@@ -791,53 +652,75 @@ msgstr "U moet oor 'n ruilpartisie beskik"
msgid "This label is already used"
msgstr "Hierdie etiket is alreeds in gebruik"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Het %s %s koppelvlakke gevind"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Beskik u oor nog?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Het u enige %s koppelvlakke?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Nee"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Sien hardeware inligting"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Drywer vir %s kaart %s in installasieproses"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, 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 ""
+"U kan noue die opsies voorsien vir module %s.\n"
+"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
+"Bv. ``io=0x300 irq-7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Module opsies:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Watter %s drywer meot ek probeer?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -853,37 +736,15 @@ msgstr ""
"rekenaar self daarvoor aftas. In uitsonderlike gevalle mag die rekenaar\n"
"ophang, maar dit sal nie skade veroorsaak nie."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Aftas"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Spesifieer opsies"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"U kan noue die opsies voorsien vir module %s.\n"
-"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
-"Bv. ``io=0x300 irq-7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Module opsies:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -892,50 +753,55 @@ msgstr ""
"Laai van module %s het gefaal.\n"
"Wil u ander parameters probeer?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Die wagwoorde is te eenvoudig"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Hierdie genruikerskode bestaan alreeds"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Voeg gebruiker by"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -944,32 +810,32 @@ msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Aanvaar gebruiker"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Regte naam"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Gebruikerskode"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Dop"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Outointeken"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -977,125 +843,104 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
"Verlang u hierdie funksionaliteit?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Kies die verstek gebruiker:"
#
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Alles"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Voeg 'n gebruiker by"
-#
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Aangepaste"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS word gelaai"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Kanselleer"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Krakers welkom"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Swak"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standaard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Hoog"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Hoog"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoes"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1107,7 +952,7 @@ msgstr ""
"wagwoord\n"
"toegang nie."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1115,7 +960,7 @@ msgstr ""
"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
"aanbeveel nie."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1125,60 +970,61 @@ msgstr ""
"wat aan die internet as 'n klint konnekteer. Daar is heelwat "
"sekuriteitstoetse."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik word.\n"
"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie klinte\n"
"af kan aanvaar."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
"Sekuriteitseienskappe is maksimaal."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Gebruik sekuriteitsvlak"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Sekuriteitsvlak word gestel."
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Selekteer opsies vir bediener"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1201,13 +1047,13 @@ msgstr ""
# and only one line per string for the GRUB messages
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welkom by GRUB, die bedryfstelselkieskaart!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1216,39 +1062,39 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Druk ENTER om die gekose bedryfstelsel te laai, 'e' om te redigeer."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "instruksies voor herlaai, of 'c' vir 'n instruksielyn."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Die uitgeligte inskrywing sal outomaties in %ds gelaai word."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "nie genoeg spasie in /boot nie"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Werkskerm"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Beginkieskaart"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Waar wil u die herlaaistelsel installeer"
@@ -1261,17 +1107,21 @@ msgstr "Gee hulp beskikbaar nie (nog nie).\n"
msgid "Boot Style Configuration"
msgstr "Herlaaistylkonfigurasie"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ler"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Ler/_Verlaat"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<ctrl>Q"
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1304,14 +1154,14 @@ msgstr "Yaboot metode"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"U gebruik huidig %s as herlaaibestuurder.\n"
"Kliek op Konfigureer om opstelassistent te laai."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigureer"
@@ -1321,7 +1171,7 @@ msgid "System mode"
msgstr "Stelselmode"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Laai X-Windowstelsel met herlaai"
#: ../../bootlook.pm_.c:148
@@ -1332,14 +1182,16 @@ msgstr "Nee, ek verlang outo-aanteken"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, ek verlang outoaanteken met hierdie (gebruiker,werkskerm)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1388,7 +1240,7 @@ msgstr "Ek kan nie meer partisies byvoeg nie"
msgid "Screenshots will be available after install in %s"
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frankryk"
@@ -1396,7 +1248,7 @@ msgstr "Frankryk"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belgies"
@@ -1424,11 +1276,12 @@ msgstr "Norweegs"
msgid "Sweden"
msgstr "Sien"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Italiaans"
@@ -1438,7 +1291,7 @@ msgstr "Italiaans"
msgid "Austria"
msgstr "seriaal"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1446,8 +1299,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Rugsteun u data eers asb."
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lees noukeurig!"
@@ -1460,11 +1313,12 @@ msgstr ""
"Indien u beplan om 'aboot' te gebruik, los spasie aan die begin\n"
"van die skyf. (2048 sektors is genoeg)."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Fout"
@@ -1472,11 +1326,11 @@ msgstr "Fout"
msgid "Wizard"
msgstr "Assistent"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Kies aksie"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1488,78 +1342,78 @@ msgstr ""
"Ek stel voor u verstel eers die grootte van di partisie\n"
"(kliek daarop en kliek dan op \"Verstel Grootte\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Kliek asb. op 'n partisie"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detail"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "Gejoernaliseer"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Ruilarea"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Leeg"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Ander"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "LOersteltipes:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Skep"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipe"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Gebruik ``%s'' instede."
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Uitwis"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Gebruik ``Ontheg'' eerste"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1567,67 +1421,72 @@ msgstr ""
"Alle data om hierdie partisie %s sal uitgewis word na verandering van die "
"partisietipe"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Kies 'n partisie"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Kies 'n ander partisie"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Verlaat"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Skakel oor na kundige gebruiksvlak"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Skakel oor na normale gebruiksvlak"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Herroep"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Wil u in elk geval voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Verlaat, maar moenie iets stoor nie"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Wil u die /etc/fstab veranderinge stoor?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Outo-allokeer"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Verwydeer almal"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Nog"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Hardeskyfinligting"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Alle primre partisies is gebruik"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ek kan nie meer partisies byvoeg nie"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1635,35 +1494,35 @@ msgstr ""
"Om meer partisies te verkry, verwyder asb. een om 'n ektensiepartisiete kan "
"skep"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Skryf partisietabel"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Reddingspartisietabel"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Verwyderbare media"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Selekteer lOer"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1671,11 +1530,11 @@ msgstr ""
"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
"Wil u voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Waarskuwing"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1683,124 +1542,131 @@ msgstr ""
"Sit 'n floppie in die aandrywer.\n"
"Alle data op hierdie floppie sal verloor word."
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Partisietabel Reddingspoging"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Gedetaileerde inligting"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Hegpunt"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opsies"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Verstel Grootte"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Skuif"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatteer"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Heg"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Voeg by RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Voeg by LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ontheg"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Verwyder uit RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Verwyder uit LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Verander RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Gebruik vir teruglus"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Kies 'n nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Kies sektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "LOerstelseltipe: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Hegpunt:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Voorkeure: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Teruglusler %s word geformateer"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Verander partisietipe"
#
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Watter lerstelsel verlang u?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Oorskakeling van ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Waar wil u teruglusler %s heg?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Waar wil u toestel %s heg?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1808,126 +1674,133 @@ msgstr ""
"Kan nie hegpunt ontset nie, omdat hierdie partisie vir teruglus\n"
"gebruik word. Verwyder eers die teruglus."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "FAT lerstelselgrense word bereken"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Grootteverandering"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Hierdie partisie se greootte kan nie verstel word nie"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Alle data om hierdie partisie moet gerugsteun word."
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met die grootteverandering"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Kies die nuwe grootte"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nuwe grootte in MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Na watter skyf wil u skuif?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Na watter sektor wil u skuif?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Verskuiwing"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Partisie word verskuif..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Kies 'n bestaande RAID om by toe te voeg"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nuut"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Kies 'n bestaande LVM om by toe te voeg"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM naam?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Teruglus"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Teruglus lernaam:"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Regte naam"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Ler word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Ler bestaan alreeds. Moet dit gebruik word?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Hegopsies:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Verskeie"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "toestel"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "vlak"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "blokgrootte"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Watter tipe van partisionering?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Hierdie pakket moet opgradeer word\n"
+"Is u seker u wil dit deselekteer?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1940,7 +1813,7 @@ msgstr ""
"gebruik\n"
"nie, dan het u nie /boot nodig nie."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1953,7 +1826,7 @@ msgstr ""
"gebruik,moet u\n"
"asb. 'n /boot partisie skep,"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1963,137 +1836,137 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partisietabel van skyf %s gaan opdateer word!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "U sal moet herlaai voor die veranderinge geaktiveer kan word"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met formatering."
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatering"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Teruglusler %s word geformateer"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Partisie %s word formateer"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid het gefaal"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "LPD word verwyder..."
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Toestel:"
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipe:"
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Naam: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Begin: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Grootte: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektore"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silinder %d na silinder %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Geformateer\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nie geformatter\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Geheg\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Teruglus ler(s): %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2101,27 +1974,27 @@ msgstr ""
"Verstekpartisie vir herlaai\n"
" (vir MS_DOS doeleindes, nie LILO s'n nie)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Vlak %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Blokgrootte %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-skywe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Teruglus lernaam: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2133,7 +2006,7 @@ msgstr ""
"drywerpartisie is en verkieslik alleen gelos\n"
"moet word.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2144,65 +2017,65 @@ msgstr ""
"Hierdie spesiale herlaaipartisie\n"
"is om u stelsel te duolaai.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Grootte: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info:"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-skywe %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partisietabeltipe: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "op bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opsies: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "LOerstelseltipe: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2212,36 +2085,66 @@ msgstr "Verander tipe"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Kliek asb. op 'n partisie"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Magtiging"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Gebruikerskode"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Gebruikerskode"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS-domein"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS bediener"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering ban %s het gefaal"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ek weet nie om %s as tipe %s te formateer nie"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck het gefaal met kode %d of sein %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout met onthegting van %s: %s"
@@ -2258,67 +2161,321 @@ msgstr ""
msgid "server"
msgstr "bediener"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "U kan nie JFS vir partisies kleiner as 16MB gebruik nie"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Hegpunte moet met 'n / begin"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Hierdie lergids moet altyd in die wortellerstelsel bly"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr "U benodig 'n ware lerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "U kan nie LVM logiese volume vir hegpunt %s gebruik nie."
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Four om %s in skryfmode te open: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"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 ""
"'n Fout het voorgekom - geen geldige toestelle om die nuwe lerstelsels op "
"te skep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "U get geen partisies nie!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Gebruik outobespeuring"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generies"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Kaartgeheue (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Formatering"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Verander tipe"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Verlaat"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Help"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Help"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Help/_Aangaande..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Muis"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kaartgeheue (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Kanselleer"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Muis"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Beskrywing"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Magtiging"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Selekteer lOer"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Netwerkportaaltoestel"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 knoppies"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Hardeskyfdeteksie."
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Sien hardeware inligting"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Vertoon inligting"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Stel muistoestel op"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Op poort %s bespeur"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Wag asb."
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekondes"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Drukkerdata word gelees..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Aftas"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
#, fuzzy
msgid ""
@@ -2333,7 +2490,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2444,9 +2601,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2635,7 +2791,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2647,9 +2803,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2695,21 +2850,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2725,9 +2879,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2748,9 +2902,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2867,38 +3020,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2973,11 +3120,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3001,7 +3148,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr "Kies asb. "
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3016,7 +3163,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3031,7 +3178,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3047,7 +3194,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3055,23 +3202,23 @@ msgstr ""
"Kies asb. die korrekte poort. Onthou dat COM1 onder MS Windows \n"
"ttyS0 onder GNU/Linux is."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3093,7 +3240,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3115,7 +3262,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3123,7 +3270,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3144,7 +3291,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3168,7 +3315,7 @@ msgstr ""
"inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om die\n"
"betrokke bedryfstelsels te laai."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3182,29 +3329,28 @@ msgstr ""
"Behalwe as u werklik weet wat u doen moet u \"Eerste sektor van skyf (MBR)\" "
"kies."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3213,7 +3359,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3239,7 +3385,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX sal probeer om vir PCI SCSI-kaarte te soek.\n"
@@ -3261,7 +3407,7 @@ msgstr ""
"Windows-bedryfstelsel te bekom.\n"
"U kan dit ook vanaf die internet onttrek indien u sulke toegang het."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3271,9 +3417,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3285,7 +3430,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3311,7 +3456,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3338,18 +3483,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3357,12 +3501,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3378,14 +3521,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3396,7 +3539,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3404,12 +3547,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3424,20 +3567,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Hierdie floppie is nie in FAT-formaat nie"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3445,7 +3588,7 @@ msgstr ""
"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
"\"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fout met die les van ler %s"
@@ -3475,7 +3618,7 @@ msgstr "U moet oor 'n ruilpartisie beskik"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3483,59 +3626,59 @@ msgstr ""
"\n"
"Wil u steeds voortgaan?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "U moet oor 'n FAT partisie wat as /boot/efi geheg is, beskik"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Gebruik beskikbare spasie"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Gebruik bestaande partisies"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Daar is geen bestaande partisies om te gebruik nie"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Gebruik vir die Windows-partisie vir teruglus"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Watter partisie wil u vir Linux4Win gebruik?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Kies die groottes"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Basispartisiegrootte in MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Ruilpartisiegrootte in MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Gebruik die beskikbare spasie op die Windowspartisie"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Watter partisie se grootte wil u verander?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Windowslerstelselgrense word bereken"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3544,11 +3687,14 @@ msgstr ""
"Die FAT-verstellingsprogram kan nie u partisie hanteer nie.\n"
"Fout: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr "U Windows-partisie is te gefragmenteer. Loop eers 'defrag' asb."
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3570,54 +3716,54 @@ msgstr ""
"hierdie installasie. Rugstuen ook u data. Insien u skeer is van u saak, kies "
"OK."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Watter grootte wil u vir Windows behou?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partisie %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT-grootteverandering het gefaal: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Daar is geen FAT partisies om te verander of om as teruglus (nie genoeg "
"spasie nie) te gebruik nie"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Wis hele skyf"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Verwyder Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "U het meer as een hardeskyf, waar wil u Linux installeer?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Alle bestaande partisies en data sal uitgewis word op skyf %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Gespesialiseerde skyfpartisionering"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Gebruik fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3626,11 +3772,11 @@ msgstr ""
"U het nou partisie %s partisioneer.\n"
"Wanneer u klaar is, stoor u veranderinge met 'w'."
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Die Windowspartisie beskik nie oor die nodige spasie nie."
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ek kon geen plek vir installasie vind nie."
@@ -3638,16 +3784,16 @@ msgstr "Ek kon geen plek vir installasie vind nie."
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partisionering het misluk: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Netwerk op pad op"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Netwerk op pad af"
@@ -3659,12 +3805,12 @@ msgstr ""
"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
"nie. Gaan op u eie risiko voort."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplikaat hegpunt %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3676,12 +3822,12 @@ msgstr ""
"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Welkom by %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
@@ -3691,9 +3837,9 @@ msgstr "Geen sagteskyaandrywer beskikbaar nie"
msgid "Entering step `%s'\n"
msgstr "Gaan stap '%s' binne\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3705,98 +3851,53 @@ msgstr ""
"'F1' druk wanneer u vanaf die CDROM herlaai en dan 'text' op die "
"instruksielyn intik."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Installasieklas"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Kies asb. een van die volgende installasieklasse:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Die totale grootte vir die gekose groepe is naastenby %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Indien u verkies om minder as hierdie grootte te installeer, kies dan 'n\n"
-"persentasie van pakkette wat u wil installeer.\n"
-"\n"
-"'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
-"'n persentasie van 100%% sal alles gekose pakkette installeer."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"U het net spasie op u hardeskyf vir %d%% van hierdie pakkette.\n"
-"\n"
-"Indien u minder wil installeer, kies die persentasie wat u verlang.\n"
-"'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
-"'n Persentasie van %d%% sal soveel moontlik probeer installeer."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "U sal met meer akkuraatheid in die volgende stap kan kies."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Persentasie pakkette om te installeer"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Kies pakketgroepe"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Individuele pakketseleksie"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Totale grootte: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Foutiewe pakket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Naam: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Weergawe: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Groote: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Belangrikheid: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
@@ -3804,104 +3905,105 @@ msgstr ""
"beskikbaar is nie"
#
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Die volgende pakkette gaan installeer word"
#
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Dei volgende pakkette gaan verwyder word"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Hierdie is 'n verpligte pakket. Dit kan nie uitgehaal word nie."
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds genstalleer"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "U kan nie hierdie pakket deselekteer nie. Dit moet opgradeer word."
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Wys outogeselekteerde pakkette."
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installasie"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Laai/Stoor op floppie"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Pakketseleksie word opgedateer"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimale installasie"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Besig met installasie"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Skatting"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Tyd oor "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Wag asb. installasie word voorberei"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakkette"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Installeer pakket %s"
#
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aanvaar "
#
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Weier"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3916,17 +4018,17 @@ msgstr ""
"nie\n"
"hieroor beskik nie, druk Kanselleer om installasies vanaf di CDROM te vermy."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Gaan steeds voort?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Daar was 'n fout met pakkette:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Daar was 'n fout met die installasie van die pakkette:"
@@ -3971,11 +4073,11 @@ msgstr "'n Fout het voorgekom"
msgid "Do you really want to leave the installation?"
msgstr "Wil u die werklik die drukker verwyder?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lisensieooreenkoms"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -3990,7 +4092,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4096,113 +4198,117 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Sleutelbord"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Wat is u sleutelborduitleg?"
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Hierdie is die volledige lys van beskikbare sleutelborde"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Watter installasieklas verlang u?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installeer/Opgradeer"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Is hierdie 'n installasie of opgradering?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Aanbevole"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Kundige"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Opgradeer"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Pakketseleksie word opgedateer"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Muispoort"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Knoppie-emulasie"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Knop-2 Emulasie"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Knop-3 emulasie"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Stel PCMCIA op..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE word opgestel"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "geen beskikbare partisies"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Hegpunte vir partisies word nou gesoek"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Kies die hegpunte"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"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 loose all the partitions?\n"
@@ -4214,7 +4320,7 @@ msgstr ""
"\n"
"Will u al die partisies verwyder?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4222,7 +4328,7 @@ msgstr ""
"DrakX kon nie die partisietabel korrek interpreteer nie.\n"
"Gaan aan op u eie risiko!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4231,74 +4337,77 @@ msgstr ""
"sal herlaaipartisie met DiskDrake moet skep indien u die stelsel wil "
"herlaai."
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Geen wortellerstelsel gevind nie"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Basispartisie"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Wat is die basispartisie (/) van u stelsel?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "U moet herlaai om die partisietabelveranderinge te aktiveer"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Kies die partisies om te formatteer"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Toets vir foutiewe areas?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Partisies word formateer"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Ler %s word geskep en formatteer"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by."
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr "Soek vir beskikbare pakkette"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr "Soek vir beskikbare pakkette"
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Soek vir pakkette om op te gradeer."
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds genstalleer"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"U stelsel het nie genoeg plek vir 'n installasie of opgradering nie (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Klaar (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimum (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Aanbevole (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -4306,55 +4415,55 @@ msgstr ""
"Kies asb. die laai of stoor pakketkeuse op die floppie.\n"
"Die formaat is dieselfde as outoinstallasie-genereerde floppies."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Laai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Oplaai vanaf floppie"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Pakketkeuse"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Stoor op floppie"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Kies pakket om te installeer"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Wag"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4364,16 +4473,16 @@ msgstr ""
"Indien u oor geen van die gelyste CD's beskik nie, kliek Kanselleer.\n"
"Indien u net oor sekere CDs beskik, deselekteer die ander en kliek OK."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CDROM getiteld \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Berei installasie voor"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4382,23 +4491,23 @@ msgstr ""
"Installeer nou pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Postinstallasiekonfigurasie"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Sit asb. die module-opdateringsfloppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4466,161 +4575,192 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Spiel word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Kies 'n spiel waar die pakkette verkry kan word"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Spiel word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardewareklok gestel vir GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Outotydsinkronisasie met NTP"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP-bediener"
#
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Verwyder CUPS-bediener"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Geen drukker"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Beskik u oor nog?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Opsomming"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Muis"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Tydsone"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Drukker"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN-kaart"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Klankkaart"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV-kaaer"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "KDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Verwyder Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Plaaslike lers"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Kies 'root' se wagwoord"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Geen wagwoord"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Magtiging"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Basis-dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP-bediener"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "NIS-magtiging"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS-bediener"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "LDAP-magtiging"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS-domein"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP-bediener"
+
+#: ../../install_steps_interactive.pm_.c:1142
+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"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4647,19 +4787,19 @@ msgstr ""
"Indien u 'n herlaaiskyf wil maak,\n"
"plaas 'n skyf in die aandrywer en druk \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Eerste sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Tweede sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Mis hierdie stap"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4683,7 +4823,7 @@ msgstr ""
"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4692,28 +4832,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Kies die sagteskyfaandrywer wat u wil gebruik"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Sit 'n skyf in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Herlaaiskyf word geskryf"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Herlaaistelsel word voorberei"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4721,11 +4861,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Wil u aboot gebruik?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4733,15 +4873,15 @@ msgstr ""
"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
"word die eerste partisie vernietig?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Herlaaistelselinstallasie"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: "
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4752,18 +4892,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sit 'n le floppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Outoinstallasieskyf word geskep."
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4773,7 +4912,8 @@ msgstr ""
"\n"
"Wil u werklik nou aborteer?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4784,7 +4924,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4798,17 +4938,21 @@ msgstr ""
"bekyk die errata beskikbaar op\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
"hoofstuk in die Offisile Liux-Mandrake Gebruikersgids."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Skep outoinstallasieskyf"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4817,15 +4961,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Outomaties"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Herspeel"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Stoor pakketseleksie"
@@ -4852,414 +4996,398 @@ msgstr ""
msgid "Choose a file"
msgstr "Kies 'n ler"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Gevorderd"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Wag asb."
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Maak boom oop"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Maak boom toe"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Skakel tussen plat- en groepsortering"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Swak keuse, probeer weer\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opsies: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Wil u aboot gebruik?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "U keuse? (verstek %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tseggies (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Duits"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spaans"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finnies"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Frans"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norweegs"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Pools"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Russies"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Sweeds"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "VK sleutelbord"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "VSA sleutelbord"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albanies"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenies (oud)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenies (tikmasjien)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjani (latyns)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgies"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulgaars"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliaans (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarussies"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Switsers (Duitse uitleg)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Switsers (Franse uitleg)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tseggies (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Duits (geen dooie sleutels)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Deens"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norweegs)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoniaans"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgies (Russiese uitleg)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgies (Latynse uitleg)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grieks"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hongaars"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroaties"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelies"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelies (Foneties)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iranies"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Yslandies"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italiaans"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japanees 106 sleutels"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Koreaanse sleutelbord"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latyns-Amerikaans"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanies AZERTY (oud)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanies AZERTY (nuut)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanies \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanies \"foneties\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvies"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Masedonies"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Nederlands"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Pools (QWERTY uitleg)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Pools (QWERTZ uitleg)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugees"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadees (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Romanies (QWERTZ)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Romanies (QWERTY)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Russue (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Sloveens"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovaaks (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovaaks (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Serwies (Kirillies)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Tabel"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai sleutelbord"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tajik sleutelbord"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turks (tradisionele \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turks (moderne \"Q\" modem)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukranies"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "VSA internasionale sleutelbord"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vitnamees \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslaavs (latynse uitleg)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5272,7 +5400,31 @@ msgstr "Sirkulre heg %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Verwyder eers die logiese volumes\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefoonnommer"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formateer partisies"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5313,10 +5465,6 @@ msgstr "1 knop"
msgid "Generic 2 Button Mouse"
msgstr "Generiese 2-knop muis"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Generies"
-
#
#: ../../mouse.pm_.c:46
msgid "Wheel"
@@ -5383,39 +5531,55 @@ msgid "No mouse"
msgstr "Geen muis"
#
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Toets asb. die muis"
#
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Om die muis te aktiveer"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEEG DIE WIEL!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Finnies"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Volgende ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Vorige"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Is dit korrek?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Maak boom oop"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Maak boom toe"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Skakel tussen plat- en groepsortering"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Konnekteer aan die internet"
@@ -5463,7 +5627,7 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie.\n"
"Ek kan nie hierdie konneksietipe opstel nie."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Kies die netwerkkoppelvlak"
@@ -5476,7 +5640,7 @@ msgstr "Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die internet."
msgid "no network card found"
msgstr "geen netwerkkaart gevind nie"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Stel netwerk op"
@@ -5493,15 +5657,15 @@ msgstr ""
"bv. ``myne.mywerk.co.za''."
#
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Rekenaarnaam"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Netwerkkonfigurasie-assistent"
@@ -5547,7 +5711,7 @@ msgstr "ISDN Konfigurasie"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Kies u internetdiensvoorsiener.\n"
"Indien nie in die lys nie kies Ongelys"
@@ -5567,14 +5731,14 @@ msgstr "Protokol vir die res van die wreld"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol vir die res vd wreld \n"
" geen D-Kanaal nie (bruikhuurlyne)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Watter protokol verlang u?"
#: ../../network/isdn.pm_.c:199
@@ -5598,7 +5762,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Indien u 'n ISA-kaart het, behoort die waardes op die volgende skerm reg te "
@@ -5615,13 +5780,13 @@ msgid "Continue"
msgstr "Gaan voort"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Wat is u ISDN-kaart?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Ek het 'n ISDB PCI-kaart gevind, maar ek ken nie die tipe nie. Kies asb.'n "
"PCI-kaart op die volgende skerm."
@@ -5638,47 +5803,47 @@ msgstr "Op watter seriaalpoort is u modem gekoppel?"
msgid "Dialup options"
msgstr "Opbelopsies"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Konneksienaam"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefoonnommer"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Aantekenkode"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skriptipe"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminaaltipe"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Domeinnaam"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Eerste DNS-bediener (opsioneel)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Tweede DNS-bediener (opsioneel)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -5686,7 +5851,7 @@ msgstr ""
"\n"
"U kan diskonnekteer or herkonfigureer."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -5694,11 +5859,11 @@ msgstr ""
"\n"
"U kan u konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "U is tans aan die internet gekonnekteer."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -5706,33 +5871,33 @@ msgstr ""
"\n"
"U kan aan die internet konnekter of u konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "U is nie tans aan die internet gekonnekteer nie."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Konnekteer"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Diskonnekteer"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Stel netwerk op"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internetkonneksie en konfigurasie"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ons gaan nou die %s konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -5751,12 +5916,12 @@ msgstr ""
"\n"
"Drk OK om voort te gaan."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5767,9 +5932,9 @@ msgstr ""
"Kliek op OK om hierdee konfigurasie te behou, of op Kanselleer om u Internet "
"& Netwerkkonneksie te herkonfigureer.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -5779,66 +5944,72 @@ msgstr ""
"Ons gaan nou u internet/netwerkkonneksie konfigureer.\n"
"Iniden u nie outobespeuring verlang nie, deselekteer die opsie.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Kies die profiel om te konfigureer"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Gebruik outobespeuring"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Kundige bedryfsvlak"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Toestel word afgetas..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normale modemkonneksie"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "Op poort %s bespeur"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN konneksie"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s bespeur"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL konneksie"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "op koppelvlak %s bespeur"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabelkonneksie"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "Kabelkonneksie bespeur"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN konneksie"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ethernet kaart(e) bespeur"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Kies die konneksie wat u wil konfigureer"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -5848,23 +6019,23 @@ msgstr ""
"Kies die een wat u verlang.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internetkonneksie"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5875,7 +6046,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -5885,7 +6056,7 @@ msgstr ""
"\n"
"Die kongiurasie gaan op u stelsel toegepas word.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -5893,16 +6064,16 @@ msgstr ""
"Nadat dit klaar is, sal dit beter wes om u X-omgewing te herlaai\n"
"om die rekenaarnaamveranderingprobleem te voorkom."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -5912,7 +6083,7 @@ msgstr ""
"U kan die toestel net so aanvaar.\n"
"Veranderinge aan onderstaande velde sal hierdie konfigurasie oorskryf."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -5922,40 +6093,45 @@ msgstr ""
"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
"(1.2.3.4) gegee word."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigureer netwerktoestel %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr "(drywer %s)"
#
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adres"
#
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmasker"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Outomatiese IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Gelaai tydens herlaaityd"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5967,64 +6143,64 @@ msgstr ""
"bv. ``myne.mywerk.co.za''.\n"
"U mag ook die netwerkhek byvoeg indien daar een is"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS bediener"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Netwerkportaaltoestel"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Instaanbedienerkonfigurasie"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP instaanbediener"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP instaanbediener"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Instaanbediener moet begin met http://"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Instaanbediener moet begin met ftp://"
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internetkonfigurasie"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Wil u nou aan die internet konnekteer?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Konneksie word getoets..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Die stelsel is nou aan die internet gekonnekteer."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Vir sekuriteitsredes, word u nou gediskonnekteer."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6033,111 +6209,116 @@ msgstr ""
"Probeer om u stelsel te herkonfigureer."
#
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Konneksiekonfigurasie"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Vul asb. die velde hieronder in"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kaart IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kaartgeheue (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kaart I/O"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kaart IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kaart IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "U persoonlike telefoonnommer"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Voorsienernaam (bv voorsiener.co.za)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Voorsiener se telefoonnommer"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Voorsiener DNS 1 (opsioneel)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Voorsiener DNS 2 (opsioneel)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Kies u land"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Belmetode"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Konneksiespoed"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Konneksie tydlimiet (in sekondes)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Gebruikerskode"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Wagwoord"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "heg het gefaal"
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Ekstensiepartisie word nie op hierdie platform ondersteun nie"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"U het 'n gat die partisietabel maar ek kan dit nie gebruik nie.\n"
"Die enigste oplossing is om die primre partisie te skuif sodat die gat\n"
"langs die ekstensie partisies is"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Herstel van ler %s het gefaal: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Korrupte rugsteunler"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Fout in die skryf van %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6148,194 +6329,194 @@ msgstr ""
"Dit beteken dat enigiets wat na u hardeskyf geskryf word as gemors sal "
"eindig."
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "benodig"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "belangrik"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "baie oulik"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "oulik"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "moontlik"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Generiese Unixdrukstelsel (Common Unix Printing System) "
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - Nuwe generasie LPR"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Lyndrukkerdiensprogram"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Druk sonder drukkertou"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Plaaslike drukker"
#
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Eksterne drukker"
#
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Eksterne CUPS-drukker"
#
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Eksterne LPD-drukker"
#
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Netwerkdrukker (sok)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Eksterne SMB/Windows 95/98/NT-drukker"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Eksterne Netware-drukker"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Tik drukkertoestel URI in"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Pyk drukstuk na program"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Onbekende model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Plaaslike drukker"
#
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Eksterne drukker"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Fout in die skryf van %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(op %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(op hierdie rekenaar)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS-bediener IP:"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Verstek)"
@@ -6359,13 +6540,13 @@ msgstr ""
"op te stel nie; drukkers wod outomaties bespeur.\n"
"Indien u twyfel, kies \"Eksterne CUPS-drukker\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Konfigurasie"
#
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Verwyder CUPS-bediener"
@@ -6395,7 +6576,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP-adres moet iets soos 192.168.1.20. lyk"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Die poortnommer moet heeltal wees."
@@ -6403,7 +6584,7 @@ msgstr "Die poortnommer moet heeltal wees."
msgid "CUPS server IP"
msgstr "CUPS-bediener IP:"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Poort"
@@ -6411,22 +6592,13 @@ msgstr "Poort"
msgid "Automatic CUPS configuration"
msgstr "Outomatiese CUPS konfigurasie"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Toestel word afgetas..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Toets poorte"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Voeg drukker by"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6439,14 +6611,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6465,12 +6637,12 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Eksterne drukker"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6484,11 +6656,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6498,36 +6670,40 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Gebruik outobespeuring"
#
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Toets poorte"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s bespeur"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6535,43 +6711,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Tik drukkertoestel URI in"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Plaaslike drukker"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6579,7 +6755,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6587,73 +6763,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Tik drukkertoestel URI in"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Kleurkonfigurasie"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "Installeer pakket %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "Installeer pakket %s"
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "Installeer pakket %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Eksterne lpd drukkeropsies"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6663,28 +6849,28 @@ msgstr ""
"van die drukkkerbediener en die naam van die drukkertou\n"
"voorsien word."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Eksterne bedienernaam"
#
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Eksterne bedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Eksterne drukkernam ontbreek!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) drukkeropsies"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6697,35 +6883,35 @@ msgstr ""
"nie); moontlik die IP adres van die drukkerbediener; die drukkernaam; \n"
"toepaslike gebruikerskode en wagwoord; werkgroepnaam."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB-bedienernaam"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB-bediener IP:"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Drukkernaam:"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Werkgroep:"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "f die bedienernaam f die bediener-IP moet verskaf word!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "SAMBA-deelnaam ontbreek!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6749,7 +6935,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6758,7 +6944,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6766,11 +6952,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare drukkeropsies"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6783,28 +6969,28 @@ msgstr ""
"rekenaarnaam nie); moontlik die IP adres van die drukkerbediener;\n"
"die drukkernaam; toepaslike gebruikerskode en wagwoord."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Drukkerbediener"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Drukkertounaam"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP-bedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP-tounaam ontbreek!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Sokdrukkeropsies"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -6818,19 +7004,19 @@ msgstr ""
"maar dit mag anders wees met ander bedieners. Raadpleeg die handleiding\n"
"wat saam met die hardeware gekom het."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Drukkerbedienernaam"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Drukkerbedienernaam ontbreek!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Drukkertoestel URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -6840,11 +7026,11 @@ msgstr ""
"CUPS- of Foomatic-formaat wees. Nie alle UTI-tipes moet deur al die "
"spoelprogramme ondersteun nie."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "'n Geldige URI moet verskaf word!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -6854,30 +7040,26 @@ msgstr ""
"Die Beskrywing- en Liggingvelde is opsioneel.\n"
"Hulle dien as inligting vir gebruikers."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Drukkernaam"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Beskrywing"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Ligging"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "Drukkerdata word gelees..."
#
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6892,27 +7074,27 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Is dit korrek?"
#
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Eksterne drukkernaam"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Drukkermodelkeuse"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Oor watter tipe drukker beskik u?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6921,18 +7103,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6942,12 +7124,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Internetkonfigurasie"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6955,7 +7137,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6968,7 +7150,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6978,22 +7160,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opsie %s moet 'n heeltal wees!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Opsie %s moet 'n nommer wees"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Opsie %s is buite bereik!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7002,11 +7184,11 @@ msgstr ""
"Wil u hierdie drukker (\"%s\")\n"
"die verstek drukker maak?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Toetsbladsye"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7014,40 +7196,40 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Geen toetsbladsye"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Druk"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standaard toetsbladsy"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternatiewe toetsbladsy (Lettergrootte)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternatiewe toetsbladsy (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Fototoetsbladsy"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Druk toetsbladsy(e)"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Toetsbladsy(e) word gedruk..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7062,7 +7244,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7070,16 +7252,16 @@ msgstr ""
"Toetsbladsy(e) is na die drukker gestuur.\n"
"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Het dit reg gewerk?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Geen drukker"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7088,15 +7270,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7105,49 +7287,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7157,7 +7339,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7166,30 +7348,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Sluit af"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Netwerk op pad af"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Netwerk op pad af"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Sluit af"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7197,36 +7390,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Dra drukkerkonfigurasie oor"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7236,51 +7429,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD en LPRng ondersteun nie IPP-drukkers nie.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Moet nie drukkers oordra nie"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Oordrag"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7288,61 +7481,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nuwe drukkernaam"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "%s word oorgedra..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Konneksie word begin..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7350,12 +7543,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7365,7 +7558,7 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -7373,27 +7566,27 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Hoog"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoes"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7409,12 +7602,12 @@ msgid ""
msgstr ""
#
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7428,68 +7621,68 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Installeerde sagteware word deursoek..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "LPRng word verwyder..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "LPD word verwyder..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Kies drukkerspoelprogram"
#
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Watter drukkerstelsel (spoelprogram) verlang u?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "Installeer pakket %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Konfigureer drukker"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Wil u 'n drukwerk nou konfigureer?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Drukkerstelsel:"
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Drukker"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7500,7 +7693,7 @@ msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7510,30 +7703,34 @@ msgstr ""
"Hier is die bestaande drukkertoue.\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Stel netwerk op"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normale modus"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Verlaat"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Wil u die konfigurasie toets?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -7542,104 +7739,104 @@ msgstr ""
"Drukker %s: %s %s\n"
"Wil u hierdie drukker verander?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Gaan voort!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Drukkerkonneksietipe"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Drukkernaam,. beskrywing, ligging"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Drukkervervaardiger, model, drywer"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Drukkervervaardiger, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Maak hierdie die verstekdrukker"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Druk toetsbladsy(e)"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Wil u die konfigurasie toets?"
#
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Verwyder drukker"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "Drukkerdata word gelees..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Verstek drukker"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Drukker \"%s\" is nou die verstekdrukker"
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Wil u die werklik die drukker verwyder?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "Drukkerdata word gelees..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7720,24 +7917,62 @@ msgstr "Die wagwoorde stem nie ooreen nie. Probeer weer!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Kan nie 'n partisie by geformatteerde RAID md%d byvoeg nie"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Kan nie ler %s skryf nie"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid het gefaal"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid het gefaal. Dalk is 'raidtools' nie beskikbaar nie."
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Hierdie vlak moet met sorg gebruik word. Dit maak 'n stelsel baie maklik\n"
+"om te gebruik, maar is baie sensitief. Dit moet nie gebruik vir 'n rekenaar\n"
+"wat aan ander rekenaars of die internet gekoppel is nie. Daar is geen "
+"wagwoord\n"
+"toegang nie."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Met hierdie sekuriteitsvlak, kan die stelsel as 'n bediener gebruik word.\n"
+"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie klinte\n"
+"af kan aanvaar."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Sluit konfigurasie af"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opsies"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Loop die ALSA (Gevorderde Linux Klankargitektuur) klankstelsel"
@@ -7794,7 +8029,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7865,7 +8100,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -7941,7 +8176,7 @@ msgstr ""
"gebruik word. Portmap moet loop op rekenaars wat as bedieners vir hierdie\n"
"protokolle, en ander protokolle wat die RPC meganisme gebruik, dien."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8036,7 +8271,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Stelselmode"
@@ -8157,6 +8392,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Beheersentrum"
@@ -8261,6 +8497,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "Installeer pakket %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8269,6 +8514,160 @@ msgstr ""
"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
"Ek sal die nodige partisies skoonmak."
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Dra drukkerkonfigurasie oor"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Datbasis"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Datbasis"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS-bediener"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS-bediener"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Voeg gebruiker by"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP-Klint"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nie gekonnekteer nieKabelkonneksie"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Uitwis"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Selekteer lOer"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Voeg gebruiker by"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP-Klint"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Konfigurasie in aabou..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "herkonfigureer"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Geen sagteskyaandrywer beskikbaar nie"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Fout!"
@@ -8307,6 +8706,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Outoinstallasieskyf word geskep."
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8315,12 +8719,12 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Geluk!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -8328,36 +8732,29 @@ msgstr ""
"Die floppie is sukselvol geskep.\n"
"U kan nou weer 'n installasie uitspeel."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Installasie"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Voeg 'n gebruiker by"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Teruglusler %s word geformateer"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8365,15 +8762,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8381,715 +8770,781 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "Fout met die les van ler %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Pakketkeuse"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Verwyder Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Korrupte rugsteunler"
#
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN konneksie"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Kies drukkerkonneksie"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Kies die pakkette wat u wil installeer"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Netwerkkoppelvlak"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipe"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "gebruik hardeksyfoptimisasie?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "gebruik hardeksyfoptimisasie?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Wag"
#
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Wiel"
#
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Wiel"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Module opsies:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Stel lerstelsels op"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Muistoestel: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opsies"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:2083
+#
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Toets asb. die muis"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN konneksie"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Kies drukkerkonneksie"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Ander"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Installeer stelsel"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Herstel vanaf ler"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Herstel vanaf ler"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Aangepaste"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Vorige"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Toestand"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Herstel vanaf ler"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Teks"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Kies pakkette om te installeer"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Die volgende pakkette gaan installeer word"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Korrupte rugsteunler"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Stoor in ler"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Konfigurasie"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Sluit konfigurasie af"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Stel lerstelsels op"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9121,7 +9576,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9130,7 +9585,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9171,7 +9626,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9199,12 +9654,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9221,7 +9681,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9261,7 +9721,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9272,7 +9732,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9285,7 +9745,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9329,105 +9789,527 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s installasie het gefaal a.g.v. hierdie fout: "
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsole hulpprogramme"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Beheersentrum"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "verpligtend"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Muis"
+
+#
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Eksterne drukker"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Drukkernaam:"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Drukker"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Netwerkkonfigurasie-assistent"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Magtiging"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pakketkeuse"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Wag asb."
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Verlaay installasie"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Poort"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Netwerkkonfigurasie (%d toestelle)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profiel:"
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Vee profiel uit..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profiel om uit te vee..."
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nuwe profiel..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Bedienernaam:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Internettoegang"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipe:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Portaal:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Koppelvlak:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Konfigureer internettoegang..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "LAN-konfigurasie"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Drywer"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Koppelvlak"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Toestand"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Stel plaaslike netwerk op..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Assistent..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Pas toe"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Wag asb... Konfigurasie word toegpas"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Gekonnekteer"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nie gekonnekteer nieKabelkonneksie"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Konnekteer..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Diskonnekteer..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "LAN konfigurasie"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Toestel %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Herlaaiprotokol"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Gelaai tydens herlaaityd"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP-klint"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "Aktiveer nou dadelik"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "deaktiveer nou dadelik"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Internetkonneksiekonfigurasie"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Internetkonneksiekonfigurasie"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Konneksietipe:"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parameters"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Portaal"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernetkaart"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP-Klint"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "gebruik: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Modulenaam"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Grootte"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "herlaaiskyfskepping"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "verstek"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy Fout: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "bedryfstelselkernweergawe"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Algemeen"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Kundige area"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd opsionele parameters"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Voeg module by"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "forseer"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "indien nodig"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "laat SCSI-modules weg"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "laat RAID-modules weg"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Verwyder module"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Uitset"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Bou die skyf"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "versker asb dat die regte mediatipe vir toestel %s beskikbaar is"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Daar is geen medium for toestel %s nie.\n"
+"Sit asb. een in."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Kon nie vurk nie: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Kon nie mkbootdisk ordentelik afsluit nie:\n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s is nie gevind nie"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Klaar"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Formatteer floppie"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Berei installasie voor"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "Laai dit"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "beperk"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9436,124 +10318,123 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formateer partisies"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "Denstallasie van RPMs"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Sluit konfigurasie af"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Hegpunt"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Kies die partisies om te formatteer"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Kantoor"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Aborteer"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Drukker"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Installeer stelsel"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Selekteer lOer"
#
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Verwyder drukker"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Beginboodskap"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Installasie"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Verlaay installasie"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetkonneksiedeling is ontsper"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9565,31 +10446,31 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "deaktiveer"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "ignoreer/sien oor"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "herkonfigureer"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Bedieners word gedeaktiveer..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Internetkonneksiedeling is gedeaktiveer"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetkonneksiedeling is gesper"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9601,19 +10482,19 @@ msgstr ""
"\n"
"Wat wil u doen?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "Aktiveer"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Bedieneers word aktiveer..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Internetkonneksiedeling is geaktiveer"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -9630,21 +10511,21 @@ msgstr ""
"\n"
"Wil u internetdeling opstel?\n"
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Koppelvlak %s (met module %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Koppelvlak %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -9652,12 +10533,12 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
"hardewarekonfigurasieprogram."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Netwerkkoppelvlak"
#
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9672,19 +10553,19 @@ msgstr ""
"\n"
"Ek gaan nou u LAN met daardie kaart opstel."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Kies asb. die netwerkkaart wat aan die loakel area netwerk gekoppel is."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9694,17 +10575,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Outomatiese CUPS konfigurasie"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Verander drukkerkonfigurasie"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9715,7 +10596,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9727,33 +10608,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS-bediener IP:"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Moontlike LAN-adresbotsing gevind in konfigurasie %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Vuurmuurkonfigurasie gevind!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -9761,44 +10642,44 @@ msgstr ""
"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na "
"dietyd self regstellings moet aanbring."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Konfigurasie in aabou..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Probleme met Installasue van pakket %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Die opstelling van is alreeds gedoen, maar is tans gedeaktiveer."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Die opstelling is alreeds gedoen en is alreeds ook geaktiveer."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Geen internetkonneksiedeling is al gekonfigureer nie."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Internetkonneksiedelingkonfigurasie"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9808,206 +10689,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Internetkonneksiedeling"
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Netwerkkonfigurasie (%d toestelle)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profiel:"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Vee profiel uit..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profiel om uit te vee..."
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nuwe profiel..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Bedienernaam:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Internettoegang"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipe:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Portaal:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Koppelvlak:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Konfigureer internettoegang..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "LAN-konfigurasie"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Drywer"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Koppelvlak"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Toestand"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Stel plaaslike netwerk op..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistent..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Pas toe"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Wag asb... Konfigurasie word toegpas"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Gekonnekteer"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nie gekonnekteer nieKabelkonneksie"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Konnekteer..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Diskonnekteer..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "LAN konfigurasie"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Toestel %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Herlaaiprotokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Gelaai tydens herlaaityd"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP-klint"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "Aktiveer nou dadelik"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktiveer nou dadelik"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Internetkonneksiekonfigurasie"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Internetkonneksiekonfigurasie"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Konneksietipe:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameters"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Portaal"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernetkaart"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP-Klint"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Sekuriteitsvlak word gestel."
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Beheersentrum"
@@ -10016,94 +10697,130 @@ msgstr "Beheersentrum"
msgid "Choose the tool you want to use"
msgstr "Kies die instrument wat u wil gebruik"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Kanadees (Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Frankryk"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Yslandies"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "seriaal"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Daar was 'n fout met die installasie van die pakkette:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10149,7 +10866,7 @@ msgstr "Kon nie die intydse opgradering begin nie !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr ""
@@ -10159,51 +10876,47 @@ msgstr ""
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr ""
+msgstr "/Ler/_Nuut"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr ""
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
-msgstr ""
+msgstr "/Ler/_Oopmaak"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr ""
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
-msgstr ""
+msgstr "/Ler/_Stoor"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr ""
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr ""
+msgstr "/Ler/Stoor _as"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
-msgstr ""
+msgstr "/Ler/-"
#: ../../standalone/logdrake_.c:108
msgid "/_Options"
-msgstr ""
+msgstr "/_Opsies"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
-msgstr ""
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
+msgstr "/Opsies/Toets"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr ""
+msgstr "/Help/_Aangaande..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -10263,7 +10976,7 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10272,12 +10985,12 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Konfigurasie"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
#, fuzzy
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
@@ -10289,69 +11002,99 @@ msgstr ""
"Hier kan u die HTTP en FTP-instaanbedieners\n"
"opstel met of sonder aantekenkodes en wagwoorde\n"
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache, Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "skadu's"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domeinnaam"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Verlaat"
+msgid "Ftp Server"
+msgstr "NIS-bediener"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix e-posbediener, Inn netnuusbediener"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS-bediener"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS-bediener"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Dienste"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Drukkerbediener"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "interessant"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Formatering"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Kleurkonfigurasie"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "Geen 'serial_usb' gevind nie\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuleer derde knop?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Drukkerdata word gelees..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Toestel word afgetas..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10395,6 +11138,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Vuurmuurkonfigurasie"
@@ -10746,10 +11501,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedia - Klank"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Nutsprogramme"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "dokumentasie"
@@ -10855,10 +11606,6 @@ msgstr ""
"en om ook die web deur te blaai."
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Aaaargivering, emulators, monitorprogramme"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Persoonlike finansies"
@@ -10908,2016 +11655,154 @@ msgstr "Multimedia - CD Sny"
msgid "Scientific Workstation"
msgstr "Wetenskaplike werkstasie"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Aborteer"
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Geen"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Kies die verstek gebruiker:"
-
-#
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Pas toe/herlees drukkers"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "U kan die opsies vir module %s hier intik."
-
-#~ msgid "mount failed"
-#~ msgstr "heg het gefaal"
-
-#~ msgid "Low"
-#~ msgstr "Laag"
-
-#~ msgid "Medium"
-#~ msgstr "Medium"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "'n Aantal verbetering op heirdie sekuriteitsvlak, die hoof een is meer\n"
-#~ "sekuriteitswaarskuwings en -toetse."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimedia"
-
-#~ msgid "Boot mode"
-#~ msgstr "Herlaaimodus"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Kundige"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux beheer tyd in GMT (Greenwichmeridiaantyd) en vertaal dit dan\n"
-#~ "in u lokale tyd volgends die gekose tydsone."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Konnekteer aan die internet"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Diskonnekteer van die internet"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck het gefaal met kode %d of sein %d"
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Konfigureer netwerkkonneksie (LAN or internet)"
+#~ msgid "Choose options for server"
+#~ msgstr "Selekteer opsies vir bediener"
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Na watter skyf wil u skuif?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Kies die pakkette wat u wil installeer"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Info"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor is nie opgestel nie"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome werkstasie"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache is 'n WWW-bediener.\n"
-#~ "Dit kan HTML-lers uitstuur en CGI's hanteer"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafikakaart is nog nie konfigureer nie"
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) is die domeinnaamdiens (DNS) wat gebruik word om\n"
-#~ "rekenaarname na IP-adresse toe om te skakel."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Resolusie is nog nie gekies nie"
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Wat is u muistoestel?"
-
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "Beskikbare NFS-gedelde hulpbronne word gesoek"
-
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "Beskikbare NFS-gedelde hulpbronne van bediner %s word gesoek."
-
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "Beskikbare SAMBA-gedelde hulpbronne word gesoek"
-
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "Beskikbare SAMBA-gedelde hulpbronnevan bediener %s word gesoek"
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Verlaat"
-
-#~ msgid "Removable media"
-#~ msgstr "Verwyderbare media"
-
-#~ msgid "Active"
-#~ msgstr "Aktief"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Nee"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "'n Drukker, model \"%s\", is opgespoor op "
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Plaaslikte drukkertoestel"
-
-#~ msgid "Printer Device"
-#~ msgstr "Drukkertoestel:"
-
-#~ msgid "Device/file name missing!"
-#~ msgstr "Toestel/Lernaam ontbreek"
-
-#
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Drukkers op eksterne CUPS-bediener(s)"
-
-#
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Drukkers op eksterne CUPS-bediener(s)"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Stelselmode"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Ander"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Wat is u sleutelborduitleg?"
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Kliek asb. op 'n partisie"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tipe:"
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Korrupte rugsteunler"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Stel X op"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Drukkertoestel:"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Kanselleer"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "OK"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Sluit af"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Konneksie word begin..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Konneksie word afgesluit..."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Die stelsel is nou ontkoppel."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Kies die grootte van die installasie"
-
-#~ msgid "Total size: "
-#~ msgstr "Totale grootte: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Wag asb.,"
-
-#~ msgid "Total time "
-#~ msgstr "Totale tyd "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Gebruik bestaande konfigurasie vir X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "Watter toestel is die drukker aan gekoppel?\n"
-#~ "(let op dat /dev/lp0 ekwiwalent is aan LPT1:)\n"
-
-#~ msgid "%s"
-#~ msgstr "%s"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Waarskuwing! Die netwerkkaart is alreeds opgestel. Ek gaan dit "
-#~ "herkonfigureer?"
-
-#~ msgid "New"
-#~ msgstr "Nuut"
-
-#~ msgid "Remote"
-#~ msgstr "Ekstern"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Kliek asb. op 'n partisie"
-
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr ""
-#~ "Indien bo-gelyste inskrywings nie die nodige inskrywing bevat nie, voeg "
-#~ "dit hier by:"
-
-#~ msgid "Shared resource"
-#~ msgstr "Gedelde hulpbron"
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Vaagheid (%s). Wees meer presies\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (verstek %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "U keuse? (Verstek %s tik 'none' vir geen)"
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "kan nie /etc/sysconfig/autologin oopmaak vir lees nie: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Wil u die netwerk herlaai?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Stem u saam?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Ek gaan nou die netwerktoestel herlaai: \n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Ek gaan nou die netwerktoestel %s herlaai. Stem u saam?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Indien u spesifiek anders weet, is die gewone keuse \"/dev/hda\"\n"
-#~ "(primre meester IDE-skyf) of \"/dev/sda\" (eerste SCSI-skyf)."
-
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr ""
-#~ "Konneksie tydlimiet (in sekondes) [ beta, nog nie gemplementeer nie ]"
-
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Kon nie \"%s\" die verstek drukker maak nie!"
-
-#
-#~ msgid "Test the mouse here."
-#~ msgstr "Toets die muis hier."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Kies voorkeurtaal vir installasie en stelselgebruik."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Kies die sleutelborduitleg uit die bostaande lys"
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Selekteer:\n"
-#~ "\n"
-#~ " - Afgemeet: Indien u vertroud genoeg is met GNU/Linux, kan u die "
-#~ "primre\n"
-#~ " gebruik van u rekenaar kies. Sien onder vir details.\n"
-#~ "\n"
-#~ " - Kundige: Indien u vlot is in GNU/Linux en 'n hoogs aangepaste "
-#~ "installasie wil\n"
-#~ " doen, kan u die deur die gebruik van u rekenaar te kies.\n"
-#~ " MOET ASB. NIE HIERDIE OPSIE KIES INDIEN U NIE WEET WAT U DOEN NIE."
-
-#, fuzzy
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Die verskillende opsies vir u rekenaar se gebruik (indien u \"Afgemeet"
-#~ "\" \n"
-#~ "of \"Kundige\" sou kies) is die volgende:\n"
-#~ "\n"
-#~ " - Normaal: Indien die rekenaar primr vir daaglikse kantoorgebruik is.\n"
-#~ " Moenie programmeringspakette verwag nie.\n"
-#~ "\n"
-#~ " - Ontwikkeling: Indien die rekenaar vir programontwikkel;ing gebruik "
-#~ "sal\n"
-#~ " word. 'n Volledige stel kompileerders, saamstellers en ontfouters "
-#~ "sal \n"
-#~ " opgesit word.\n"
-#~ "\n"
-#~ " - Bediener: Indien die rekenaar primr 'n bediener sal wees, hetsy met "
-#~ "NFS,\n"
-#~ " SMB, drukkerbediening, NIS magtiging ens.\n"
-#~ " Moenie vensterstelsels soos KDE en GNOME verwag nie.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "U kan nou die pakketgroepe kies wat u wil installeer of opgradeer.\n"
-#~ "\n"
-#~ "DrakX sal dan kyk of daar genoegsame spasie is vir die volledige "
-#~ "installasie.\n"
-#~ "Indien nie sal u verwittig word. Indien u voortgaan, sal van die minder "
-#~ "belangrike\n"
-#~ "pakkette nie installeer word nie.Heel onder kan u die opsie \"Individuele "
-#~ "pakketkeuses\"\n"
-#~ "kies waarna u deur meer as 'n 1000 pakkette sal moet blaai....."
-
-#, fuzzy
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Indienu al die CDs in die bogenoemde lys het, kliek OK.\n"
-#~ "Indien u geen het nie, kliek Kanselleer.\n"
-#~ "Indien sekere CDs weg is, onselekteer hulle en kliek dan OK."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "U kan nou die opbelopsie invul. Indien u\n"
-#~ "twyfel kry die korrekte inligting van u ISP."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Sleutel in:\n"
-#~ "\n"
-#~ " - IP-adres: Indien u dit nie weet nie vra u netwerkadministrateur of "
-#~ "ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Netmasker: \"255.255.255.0\" is gewoonlik 'n goeie keuse. Indien u "
-#~ "twyfel,\n"
-#~ " vra die netwerkadministrateur of ISP.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Outomatiese IP: Indien u netwerk bootp of dhcp protokolle ondersteun, "
-#~ "kies\n"
-#~ " hierdie opsie. In so 'n geval is 'n IP-adresinskrywing nie nodig "
-#~ "nie. Indien u\n"
-#~ " twyfel, vra die netwerkadministrateur of ISP.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Indien u netwerk NIS gebruik, kies \"Gebruik NIS\". Indien u twyfel vra\n"
-#~ "die netwerkadministrateur."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "U kan nou die opbelopsie invul. Indien u\n"
-#~ "twyfel kry die korrekte inligting van u ISP."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Indien u instaanbedieners wil gebruik, stel hulle hier op.. Indien u "
-#~ "twyfel vra\n"
-#~ "die netwerkadministrateur of ISP."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "U kan 'n kriptografiese pakket installeer indien u internetkonneksie reg "
-#~ "opgestel is.\n"
-#~ "Kies eers die spiel waar u die pakket vanaf wil aflaai en kies dan die "
-#~ "pakkette\n"
-#~ "om te installeer.\n"
-#~ "\n"
-#~ "Let wel: U moet 'n spiel en pakkette selekteer n.a.l plaaslike wetgewing."
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "U kan nou die 'root' wagwoord voorsien vir u Mandrake Linux stelsel.\n"
-#~ "Die wagworod moet twee keer ingevoer word en te verfier dat dit\n"
-#~ "korrek is.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is die administrateur van die stelsel en is die enigste gebruiker\n"
-#~ "wat toegelaat wiord om die stelselkonfigurasie te verander. In di lig,\n"
-#~ "kies asb. die wagwoord sorgvuldig. Ongemagtigde gebruik van die root\n"
-#~ "rekening kan uitermatiglik nadelig wees vir die integriteit van die\n"
-#~ "stelsel. Die wagwoord moet alfanumeries wees en ten minste 8 karakters\n"
-#~ "lank. MOENIE die wagwoord rens neerskryf nie. Moet dit nie te lank of "
-#~ "te\n"
-#~ "ingwikkeld maak nie, u moet dit met min moeite onthou."
-
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "U mag nou een of meer gewone gebruikersrekeninge skep. Dit is in\n"
-#~ "teenstelling met die bevoorregte 'root' rekening. Elke "
-#~ "gebruikersrekening\n"
-#~ "sal oor sy eie voorkeure (grafiese omgewing, programstelling, ens.) en\n"
-#~ "tuisgids (waar hierdie instellings gestoor word) beskik.\n"
-#~ "\n"
-#~ "\n"
-#~ "Derhalwe moet u in die stelsel intkeen met u eie gebruikerskode en slegs\n"
-#~ "'root' gebruik vir administratiewe doeleindes.\n"
-#~ "\n"
-#~ "Skep eerstens 'n rekening vir uself. Selfs indien u die enigste "
-#~ "gebruiker\n"
-#~ "op die stelsel sal wees, moet u NIE as 'root' vir u daaglikse gebruik\n"
-#~ "inteken NIE. 'n Onbruikbare stelsel kan net een tikfout ver weg wees.\n"
-#~ "\n"
-#~ "\n"
-#~ "Derhalwe moet u aanteken met die gebruikerskode wat u hier skep en "
-#~ "'root'\n"
-#~ "net vir admintratiewe doeleindes gebruik."
-
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "LILO en Grub hoof opsies is:\n"
-#~ " - Herlaaitoestel: Stel die naam van die toestel (bv. hardeskyfpartisie\n"
-#~ " wat die herlaaisektor bevat. Indien u spesifiek anders weet\n"
-#~ " kies \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Wagperiode voor verstekbedryfstelsel gelaai word. Kies die syfer in\n"
-#~ " tiendes van 'n sekonde at die herlaaistelsel moet wag.\n"
-#~ " Hierdie is handig op stelsels wat onmiddelik die hardeskyf skop na "
-#~ "die\n"
-#~ " sleutelbord geaktiveer is. Die herlaaistelsel sal nie wag nie indien "
-#~ "die\n"
-#~ " wagperiode nul is.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Videomode: Kies die spesifieke VGA teksmode wat gebruik moet word "
-#~ "met\n"
-#~ " herlaai. Die volgende waardes is beskikbaar:\n"
-#~ " * normaal: selekteer normale 80x25 mode.\n"
-#~ " * syfer: die ooreenstemmende teksmode."
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO 'n herlaaiprogram vir SPARC. Dir kan GNU/Linux of enige ander\n"
-#~ "bedryfstelsel wat op u rekenar teenwoordig is, laai. Gewoonlik word "
-#~ "hierdie\n"
-#~ "bedryfstelsels reg bespeur en bygevoeg. Indien nie, kan u 'n inskrywing "
-#~ "maak\n"
-#~ "op hierdie skerm. Maak seker u kies die korrekte paramters.\n"
-#~ "\n"
-#~ "\n"
-#~ "U mag dalk toegang tot ander bedryfstelsels beperk, in welke geval u die "
-#~ "nodige\n"
-#~ "inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om "
-#~ "die\n"
-#~ "betrokke bedryfstelsels te laai."
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "SILO hoofkeuses is:\n"
-#~ " - Herlaaitoestel: Waar wil u die inligting om GNU/Linux te laai plaas? "
-#~ "Die beste is\n"
-#~ "gewoonlik om \"Eerste hardeskyfsektor (MBR)\" te kies.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Wagperiode voor verstekbedryfstelsel gelaai word. Kies die syfer in\n"
-#~ " tiendes van 'n sekonde at die herlaaistelsel moet wag.\n"
-#~ " Hierdie is handig op stelsels wat onmiddelik die hardeskyf skop na "
-#~ "die\n"
-#~ " sleutelbord geaktiveer is. Die herlaaistelsel sal nie wag nie indien "
-#~ "die\n"
-#~ " wagperiode nul is."
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Dit is tyd om die X-vensterstelsel op te stel. Hierdie is die kern van\n"
-#~ "die GNU/Linux grafiese omgewing. Vir hierdie doeleindes, moet u 'n "
-#~ "videokaart\n"
-#~ "en monitor kies. Meeste van hierdie stappe is outomaties en u moet net\n"
-#~ "verifier of dit korrek is.\n"
-#~ "\n"
-#~ "\n"
-#~ "Na konfigurasie sal X outmaties gelaai word, behalwe as u DrakX "
-#~ "andersins\n"
-#~ "aans. Indien die stelling u nie pas nie, kom terug en verander so veel\n"
-#~ "keer soos nodig."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Indien iets verkeerd is in die X-konfigurasie, gebruik hierdie opsies om\n"
-#~ "die X-vensterstelsel reg op te stel."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Indien u verkies om 'n grafiese intekenarea te kry, kies \"Ja\", "
-#~ "andersins \"Nee\"."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "U stelsel gaan nou herlaai.\n"
-#~ "\n"
-#~ "U nuwe Mandrake Linux stelsel sal outomaties laai. Indien u 'n ander\n"
-#~ " bedryfstelsel wil laai, lees die ekstra instruksies noukeurig deur."
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Skryf /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formatteer almal"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Na formatering van alle partisies"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "alle data om hierdie partisies sal verloor word"
-
-#~ msgid "Reload"
-#~ msgstr "Herlaai"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr "Wil u 'n outoinstallasieskyf maak vir Linux replikasie?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL konfigurasie"
-
-#, fuzzy
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Met 'n eksterne CUPS-bediener, hoef u glad nie 'n drukker hier\n"
-#~ "op te stel nie; drukkers wod outomaties bespeur.\n"
-#~ "Indien u twyfel, kies \"Eksterne CUPS-bediener\"."
-
-#~ msgid "Remote queue"
-#~ msgstr "Eksterne drukkertou"
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Eksterne tounaam ontbreek!"
-
-#~ msgid "Command line"
-#~ msgstr "Instruksielyn"
-
-#~ msgid "Modify printer"
-#~ msgstr "Verander drukker"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Netwerkmonitor"
-
-#~ msgid "Profile "
-#~ msgstr "Profiel"
-
-#~ msgid "Connection Time: "
-#~ msgstr "Konneksietyd"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "Internetkonneksie"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "Internetdiskonneksie"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "Diskonnekteer van die internet het misluk."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "Diskonneksie van die internet sukssevol"
-
-#~ msgid "Connection complete."
-#~ msgstr "Konneksie suksesvol"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Verstek loopvlak"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Konfigurasielerinhoud is onverstaanbaar"
-
-#~ msgid "Adapter"
-#~ msgstr "Toestel"
-
-#~ msgid "Disable network"
-#~ msgstr "Sper netwerkstelsel"
-
-#~ msgid "Enable network"
-#~ msgstr "Aktiveer netwerk"
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (of ADSL) konneksie"
-
-#~ msgid "Choose"
-#~ msgstr "kies"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "U kan die URI, om die drukker via CUPS te gebruik, direk spesifiseer"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Ja, druk ASCII toetsbladsy"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Ja, druk die PostScript toetsbladsy"
-
-#~ msgid "Paper Size"
-#~ msgstr "Papiergrootte"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Stoot papier uit na voltooiing?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint-dryweropsies"
-
-#~ msgid "Color depth options"
-#~ msgstr "Kleurdiepte opsies"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Druk teks as PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Korrigeer trapsgewyse teks?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Aantal bladsye per uitsetblad?"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Regs/Links kantlyne in punte (1/72 van 'n duim)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Bo/Onder kantlyne in punte (1/72 van 'n duim)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Ekstra GhostScriptopsies"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Ekstra teksopsies"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Omgekeerde bladsyorde"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Kies eksterne drukkerkonneksie"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Elke drukker benodig 'n naam (bv. lp)\n"
-#~ "Ander parameters soos 'n beskrywing en 'n ligging kan ook gegee word.\n"
-#~ "Wat is die drukker se naam en wat is die konneksietipe?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Elke drukkertou (waar drukstukke heengaan) het 'n naam nodig \n"
-#~ "(baie keer 'lp') and 'n gekoppelde spoelgids. Watter naam en\n"
-#~ "spoelgids moet gebruik word?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Tounaam"
-
-#~ msgid "Spool directory"
-#~ msgstr "Spoelgids"
-
-#~ msgid "Disable"
-#~ msgstr "Deaktiveer"
-
-#~ msgid "Enable"
-#~ msgstr "Aktiveer"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Om 'n veiliger stelsel te bou, moet u \"Gebruik skaduler\" \n"
-#~ "en \"Gebruik MD5 wagwoorde\" kies."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Indien u netwerk NIS wil gebruik, kies \"Gebruik NIS\" hier. Indien u "
-#~ "twyfel vra\n"
-#~ "die sysadmin.."
-
-#~ msgid "yellow pages"
-#~ msgstr "geelbladsye"
-
-#~ msgid "Light configuration"
-#~ msgstr "Ligte konfigurasie"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "Voorsiener DNS 1"
-
-#~ msgid "Provider dns 2"
-#~ msgstr "Voorsiener DNS 2"
-
-#, fuzzy
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Wil u nou aan die internet konnekteer?"
-
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr "Selekteer lOer"
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "Konfigureer internetkonneksie"
-
-#, fuzzy
-#~ msgid "Configure..."
-#~ msgstr "Stel X op"
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Stel netwerk op"
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Hierdie skrip laai de nodige modules vir 'n USB-muis."
-
-#, fuzzy
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
-#~ msgstr ""
-#~ "Nou dat u internetkonfigurasie opgestel is,\n"
-#~ "moet u die rekenaar opstel om dit te deel.\n"
-#~ "LW: U benodig 'n ware netwerkkaart om 'n lokalearea netwerk (LAN) op te "
-#~ "stel.\n"
-#~ "\n"
-#~ "Wil u internetdeling opstel?\n"
-
-#~ msgid "Automatic dependencies"
-#~ msgstr "Outomatiese afhanklikhede"
-
-#, fuzzy
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Stel X op"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr "Maar 'n herlaaiskyf"
-
-#~ msgid "Choice"
-#~ msgstr "Keuse"
-
-#, fuzzy
-#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
-#~ msgstr ""
-#~ "U kan nou 'n paar diverse opsies vir u stelsel kies.\n"
-#~ "\n"
-#~ " - Optimeer hardeskyf. Hierdie kan hardeskyfwerksverrigting verbeter, "
-#~ "maar is net\n"
-#~ " vir kundige gebruikers bedoel. Sekere gebroke koppelvlakke kan data "
-#~ "runeer.\n"
-#~ " Die bedryfstelsel kern het 'n swartlys van hardeskywe, maar indien u "
-#~ "onaangename\n"
-#~ " verrassings wil voorkom los hierdie opsie uit.\n"
-#~ "\n"
-#~ " - Sekuriteitsvlak: Lees die handleiding vir volledigheid, maar in "
-#~ "kort:\n"
-#~ " Kies \"Medium\" indien u twyfel. Vir 'n hoogs veilige stelsel kies "
-#~ "\"Paranoes\",\n"
-#~ " maar pasop: OP HIERDIE VLAK KLAN SELFS NIE 'ROOT' OP DIE KONSOLE\n"
-#~ " AANTEKEN NIE. Vir 'root' toegang moet 'n gewone gebruiker eers "
-#~ "aanteken en dan\n"
-#~ " \"su\". Dit is uitsluitlik vir 'n bediener bedoel.\n"
-#~ "\n"
-#~ " - Presiese geheuegrootte: Daar is geen ongelukkig standaard metode om "
-#~ "die geheuegrootte\n"
-#~ " uit die BIOS te bepaal nie. Soms sal Linux nie die grootte korrek "
-#~ "bepaal nie. In hierdie geval\n"
-#~ " kan die korrekte grootte her gegee word. Let daarop dat 'n verskil "
-#~ "van 2-4MB normaal is.\n"
-#~ "\n"
-#~ " - Outohegting van verwyderbare media: Indien u nie elke keer die "
-#~ "hegting per intik wil doen\n"
-#~ " nie (van CDROMs, floppies, ZIpaandrywers ens.), selekteer hierdie "
-#~ "opsie.\n"
#~ "\n"
-#~ " - NumLock: Indien u NumLock wil aansit by herlaaityd, selekteer hierdie "
-#~ "opsie. Dit sal\n"
-#~ " nie noodwendig NumLock onder X aansit nie."
+#~ "probeer van die parameters verander"
-#~ msgid "Miscellaneous"
-#~ msgstr "Arbitrre items"
+#~ msgid "An error occurred:"
+#~ msgstr "Daar was 'n fout:"
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Diverse vrae"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "uitgang binne %ds"
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "U kan nie supermount in ho sekuriteitsvlak gebruik nie."
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Is dit korrek?"
-#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ "Warskuwing: IN HIERDIE SEKURITEITSVLAK, kan ROOT nie by die KONSOLE "
-#~ "AANTEKEN nie.\n"
-#~ "OM 'root' te wees moet u eers as 'n gewone gebruiker aanteken en dan 'su'."
-#~ "Hierdie is spesifiek vir bedienergebruik. U is gewaarsku!"
-
-#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
-#~ msgstr ""
-#~ "Wees versigtig, met NumLock aan sal heelwat sleutels as syfers eerder as "
-#~ "karakters na vore kom. (Bv 'n 'p' mag dalk '6' wees)"
-
-#~ msgid "First DNS Server"
-#~ msgstr "Eerste DNS bediener"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Tweede DNS bediener"
-
-#~ msgid "loopback"
-#~ msgstr "teruglus"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Watter herlaaistelsel(s) verlang u?"
-
-#~ msgid "Auto install floppy"
-#~ msgstr "Outoinstallasieskyf"
-
-#~ msgid "Try to find a modem?"
-#~ msgstr "Soekj vir 'n modem?"
-
-#~ msgid "Configure local network"
-#~ msgstr "Stel netwerk op"
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr "Plaaslike netwerk is alreeds opgestel: Wil u?"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Konfigureer tydsone"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(kan data korrupteer)"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Aansit van NumLock met herlaai"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Bevestig wagwoord"
-
-#~ msgid "default"
-#~ msgstr "verstek"
-
-#~ msgid "What is your system used for?"
-#~ msgstr "Waarvoor word u stelsel gebruik?"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Kies die grootte van die installasie"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Gebruik diskdrake"
-
-#
-#~ msgid "Customized"
-#~ msgstr "Gespesialiseerde"
-
-#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
-#~ msgstr ""
-#~ "Is u 'n kundige? U sal sal toegelaat word om kragtige, maar\n"
-#~ "gevaarlike keuses uit te oefen\n"
-#~ "\n"
-#~ "U sal vrae gevra word soos: \"Gebruik skaduwagwoorde?\"\n"
-#~ "Is u reg vir sulke vrae?"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Gebruik skaduler"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Gebruik MD5 wagwoorde"
-
-#~ msgid "Search"
-#~ msgstr "Soek"
-
-#~ msgid "Package"
-#~ msgstr "Pakket"
-
-#~ msgid "Tree"
-#~ msgstr "Boom"
-
-#~ msgid "Sort by"
-#~ msgstr "Gesorteer volgens"
-
-#~ msgid "Category"
-#~ msgstr "Kategorie"
-
-#~ msgid "Installed packages"
-#~ msgstr "Installeerde pakkette"
-
-#~ msgid "Available packages"
-#~ msgstr "Beskikbare pakkette"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Wys net eindnodes"
-
-#~ msgid "Expand all"
-#~ msgstr "Maak boom oop"
-
-#~ msgid "Collapse all"
-#~ msgstr "Maak boom toe"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Voeg pakketareas by"
-
-#~ msgid "Update location"
-#~ msgstr "Dateer ligging op"
-
-#~ msgid "Find Package"
-#~ msgstr "Soek pakket"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Soek pakket met ler"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Skakel tussen installeerde en beskikbare"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "Afhanklikhede word getoets"
-
-#
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Die volgende pakkette gaan verwyder word"
-
-#~ msgid "Regexp"
-#~ msgstr "Regex"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Watter pakket soek vir"
-
-#~ msgid "No match"
-#~ msgstr "Geen treffer"
-
-#~ msgid "No more match"
-#~ msgstr "Niks meer treffers nie"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake is in lae-geheue opstelling.\n"
-#~ "Ek gaan rpmdrake herlaai om soektogte toe te laat."
-
-#
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Watter ler verlang u?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Wat soek vir?"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Gee 'n (engelse) naam (bv. 'extra')"
-
-#~ msgid "Directory"
-#~ msgstr "Lergids"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "Geen cdrom beskikbaar nie (niks in /mnt/cdrom nie)"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL van die lergids met die RPM's"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Vir FTP en HTTP, moet die pad vir die hdlist gegee word\n"
-#~ "Dit moet relatief tot bg. URL wees."
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Voorsien asb. die volgende inligting"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s is lareeds in gebruik"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Hier is fout, probeer van die parameters verander"
-#~ msgid "Updating the RPMs base"
-#~ msgstr "Die RPM's se basis word opgedateer"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 bediener: %s"
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Inskrywing %s gaan verwyder word"
+#~ msgid "Show all"
+#~ msgstr "Vertoon almal"
-#~ msgid "Finding leaves"
-#~ msgstr "Eindnodes word gesoek"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "X-Window konfigurasie word opgestel"
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Soek van eindnodes neem 'n tydjie"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "Ek het 'n ISDN-kaart gevind\n"
-
-#~ msgid "Other countries"
-#~ msgstr "Ander lande"
-
-#
-#~ msgid "In which country are you located ?"
-#~ msgstr "In watter land is u?"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "Alcatel modem"
-
-#~ msgid "ECI modem"
-#~ msgstr "ECI modem"
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr "Indien u ADSL-modem 'n Alcatel is, kies Alcatel, andersins ECI."
-
-#~ msgid "don't use pppoe"
-#~ msgstr "moenie pppoe gebruik nie"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (belangrik)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (baie oulik)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (oulik)"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-
-#~ msgid "Czech"
-#~ msgstr "Tseggies"
-
-#~ msgid "Slovakian"
-#~ msgstr "Slovaaks"
-
-#~ msgid "Could not install ipchains RPM with urpmi."
-#~ msgstr "Kon nie ipchains RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install dhcp RPM with urpmi."
-#~ msgstr "Kon nie dhcp RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install linuxconf RPM with urpmi."
-#~ msgstr "Kon nie linuxconf RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install bind RPM with urpmi."
-#~ msgstr "Kon nie bind RPM m.b.v. urpmi installeer nie."
-
-#~ msgid "Could not install caching-nameserver RPM with urpmi."
-#~ msgstr "Kon nie caching-nameserver RPM m.b.v. urpmi installeer nie. "
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "Herkonfigureer plaaslike netwerk"
-
-#~ msgid ""
-#~ "Your computer can be configured to share its Internet connection.\n"
-#~ "\n"
-#~ msgstr "U rekenaar is opgestel om sy internet konneksie te deel.\n"
-
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "Internetkonneksiedeling is ontsper.\n"
-
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Konnekteer aan die internet met gewone modem"
-
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Konnekteer aan die internet met ISDN"
-
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Konnekteer aan die internet met DSL (of ADSL)"
-
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Konnekteer aan die internet met kabel"
-
-#~ msgid ""
-#~ "Time (secs) of inactivity after which\n"
-#~ "it hangs up. (leave blank to disable it)"
-#~ msgstr ""
-#~ "Tyd, in sekondes, van onaktiwiteit voor diskonneksie.\n"
-#~ "Los oop om di funksie te sper."
-
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Duitsland (1TR6)"
-
-#~ msgid "What do you wish to do?"
+#~ msgid "What do you want to do?"
#~ msgstr "Wat wil u doen?"
-#~ msgid "Install/Rescue"
-#~ msgstr "Installasie/Redding"
+#~ msgid "Change Monitor"
+#~ msgstr "Verander monitor"
-#~ msgid "Rescue"
-#~ msgstr "Redding"
+#~ msgid "Change Graphics card"
+#~ msgstr "Verander videokaart"
-#~ msgid "Which partition type do you want?"
-#~ msgstr "Watter partisietipe verlang u?"
+#~ msgid "Change Server options"
+#~ msgstr "Verander bedienerinstellings"
-#, fuzzy
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "Choose \"Rescue\" if you wish to rescue a version of Mandrake Linux "
-#~ "already installed.\n"
-#~ "\n"
-#~ "\n"
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed GNU/Linux before, choose "
-#~ "this.\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!\n"
-#~ msgstr ""
-#~ "Selekteer:\n"
-#~ "\n"
-#~ " - Afgemeet: Indien u vertroud genoeg is met GNU/Linux, kan u die "
-#~ "primre\n"
-#~ " gebruik van u rekenaar kies. Sien onder vir details.\n"
-#~ "\n"
-#~ " - Kundige: Indien u vlot is in GNU/Linux en 'n hoogs aangepaste "
-#~ "installasie wil\n"
-#~ " doen, kan u die deur die gebruik van u rekenaar te kies.\n"
-#~ " MOET ASB. NIE HIERDIE OPSIE KIES INDIEN U NIE WEET WAT U DOEN NIE."
+#~ msgid "Change Resolution"
+#~ msgstr "Verander resolusie"
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Mandrake Linux system if they have been already defined (from a\n"
-#~ "previous install of GNU/Linux or from another partitioning tool). In "
-#~ "other\n"
-#~ "cases, hard drive partitions must be defined. This operation consists of\n"
-#~ "logically dividing the computer's hard drive capacity into separate\n"
-#~ "areas for use.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have to create new partitions, use \"Auto allocate\" to "
-#~ "automatically\n"
-#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
-#~ "by\n"
-#~ "clicking on \"hda\" for the first IDE drive,\n"
-#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Two common partition are: the root partition (/), which is the starting\n"
-#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
-#~ "all files necessary to start the operating system when the\n"
-#~ "computer is first turned on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Because the effects of this process are usually irreversible, "
-#~ "partitioning\n"
-#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-#~ "simplifies the process so that it must not be. Consult the documentation\n"
-#~ "and take your time before proceeding.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can reach any option using the keyboard: navigate through the "
-#~ "partitions\n"
-#~ "using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
-#~ "\n"
-#~ "- Ctrl-c to create a new partition (when an empty partition is "
-#~ "selected)\n"
-#~ "\n"
-#~ "- Ctrl-d to delete a partition\n"
-#~ "\n"
-#~ "- Ctrl-m to set the mount point\n"
-#~ msgstr ""
-#~ "U kan nou kies watter partisie(s) gebruik kan word om Mandrake Linux\n"
-#~ "op te installeer indien hulle reeds bestaan (geskep uit 'n vorige "
-#~ "installasie,\n"
-#~ "of met 'n ander partisieprogram). In ander gevalle moet die partisies nog "
-#~ "geskep\n"
-#~ "word. Hierdie operasie bestan uit die logiese verdeling van die hardeskyf "
-#~ "in\n"
-#~ "aparte bruikbare areas\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u nuwe partisies moet skep, gebruik \"Outo-allokasie\" om "
-#~ "outomaties\n"
-#~ "partisies vir Linux te skep. U kan die skyf vir partisionering selekteer "
-#~ "deur\n"
-#~ "op \"hda\" te kliek vir die eerste IDE hardeskyf, hdb vir die tweede of "
-#~ "\"sda\"\n"
-#~ "vir die eerste SCSI skyf ens.\n"
-#~ "\n"
-#~ "\n"
-#~ "Twee algemene partisies is die \"root\" partisie (/), wat die wortel is\n"
-#~ "van die lergidsstelsel, en /boot, wat die nodige lers bevat om die\n"
-#~ "bedryfstelsel aan die gang te kry wanneer die rekenaar aangesit word.\n"
-#~ "\n"
-#~ "\n"
-#~ "Omdat die gevolge van hierdie proses onomkeerbaar is, kan partisionering "
-#~ "baie\n"
-#~ "intimiderend en stresvol vir die onervare gebruiker wees. DiskDrake maak "
-#~ "di\n"
-#~ "proses heelwat makliker. Lees die dokumentasie en neem u tyd voor u "
-#~ "voortgaan.\n"
-#~ "\n"
-#~ "\n"
-#~ "U kan enige opsie gebruik deur die sleutelbord te gebruik. Navigeer deur "
-#~ "diepartisies met\n"
-#~ "Tab en die pyltjies. Wanneer 'n partisie gekies is, gebruik:\n"
-#~ "\n"
-#~ "- Ctrl-c om 'n partisie te skep (wanneer 'n le partisie gekies is)\n"
-#~ "\n"
-#~ "- Ctrl-d om 'n partisie uit te vee\n"
-#~ "\n"
-#~ "- Ctrl-m om 'n partisie te heg\n"
+#~ msgid "Show information"
+#~ msgstr "Vertoon inligting"
-#~ msgid ""
-#~ "Any partitions that have been newly defined must be formatted for\n"
-#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
-#~ "wish to re-format some already existing partitions to erase the data\n"
-#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
-#~ "partitions, particularly if they contain files or data you wish to keep.\n"
-#~ "Typically retained are /home and /usr/local."
-#~ msgstr ""
-#~ "Enige partisies wat nuut geskep is, moet eers formateer word voor "
-#~ "gebruik.\n"
-#~ "(Formateering beteken die skep van 'n lOerstelsel). U kan nou kies om "
-#~ "ook\n"
-#~ "bestaande partisies te herformateer en die data daarop te vernietig.\n"
-#~ "NOTA: Dit is nie nodig om alle bestaande partisies te herformateer nie,\n"
-#~ "veral indien daar data op is wat u wil hou. 'n Tipiese voorbeeld is /home."
-
-#~ msgid ""
-#~ "The packages selected are now being installed. This operation\n"
-#~ "should take a few minutes unless you have chosen to upgrade an\n"
-#~ "existing system, in that case it can take more time even before\n"
-#~ "upgrade starts."
-#~ msgstr ""
-#~ "Die gekose pakette gaan nou installeer word. Hierdie proses\n"
-#~ "sal 'n paar minute neem. Indien u 'n opgradering gekies, kan dit\n"
-#~ "nog langer neem voordat die opgradering begin."
-
-#~ msgid ""
-#~ "If DrakX failed to find your mouse, or if you want to\n"
-#~ "check what it has done, you will be presented the list of mice\n"
-#~ "above.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
-#~ "Otherwise you may choose the mouse that more closely matches your own\n"
-#~ "from the menu above.\n"
-#~ "\n"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Indien DrakX nie u muis kon vind nie, of as u wil sien\n"
-#~ "wat gedoen is, sal u moet die bg. lys van muistoestelle gepresenteer\n"
-#~ "word.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u met DrakX saamstem, spring na die afdeling wat u\n"
-#~ "verlang deur op die kierkaart links te kliek. Andersins kies\n"
-#~ "'n muistoetsel in die kieskaart wat u dink die beste klop met die\n"
-#~ "muis wat u het.\n"
-#~ "\n"
-#~ "In geval van 'n seriaalmuis, moet u ook vir DrakX die seriaalpoort\n"
-#~ "gee."
-
-#~ msgid ""
-#~ "This section is dedicated to configuring a local area\n"
-#~ "network (LAN) or a modem.\n"
-#~ "\n"
-#~ "Choose \"Local LAN\" and DrakX will\n"
-#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
-#~ "should be found and initialized automatically.\n"
-#~ "However, if your peripheral is ISA, autodetection will not work,\n"
-#~ "and you will have to choose a driver from the list that will appear "
-#~ "then.\n"
-#~ "\n"
-#~ "\n"
-#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
-#~ "in the first time, otherwise you will have to specify the options\n"
-#~ "to the driver that you will have fetched from documentation of your\n"
-#~ "hardware.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you install a Mandrake Linux system on a machine which is part\n"
-#~ "of an already existing network, the network administrator will\n"
-#~ "have given you all necessary information (IP address, network\n"
-#~ "submask or netmask for short, and hostname). If you're setting\n"
-#~ "up a private network at home for example, you should choose\n"
-#~ "addresses.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
-#~ "a modem will be configured. DrakX will try to find your modem,\n"
-#~ "if it fails you will have to select the right serial port where\n"
-#~ "your modem is connected to."
-#~ msgstr ""
-#~ "Hierdie afdeling is vir die konfigurasie van 'n lokaalareanetwerk\n"
-#~ "of 'n modem.\n"
-#~ "\n"
-#~ "Kies \"LAN\" en DrakX sal probeer om 'n Ethernetkaart in u rekenaar\n"
-#~ "te vind. PCI-kaarte sal heelwaarskynlik outomaties gevind en\n"
-#~ "inisialiseer word. Indien u 'n ISA-kaart het sal daar 'n kieslys\n"
-#~ "vertoon word waaruit u dan u kaart moet selekteer.\n"
-#~ "\n"
-#~ "\n"
-#~ "indien u Mandrake Linux installeer op 'n stelsel wat deel is van 'n\n"
-#~ "bestaande netwerk, sal due netwerk administrateur u alreeds met die\n"
-#~ "nodige inligting (IP adres, netmasker en rekenaarnaam) voorsien het.\n"
-#~ "Indien u 'n privaat netwerk opstel (sso by die huis), dan moet u die\n"
-#~ "adresse kies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Kies \"Uitbel met Modem\" en die internetkonneksie vir 'n modem\n"
-#~ "sal opgestel word. DrakX sal u modem probeer bepaal. Indien di faal\n"
-#~ "sal u die modem en korrekte seriaalpoort moet selekteer."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these\n"
-#~ "types require a different setup. Note however that the print\n"
-#~ "spooler uses 'lp' as the default printer name; so you\n"
-#~ "must have one printer with such a name; but you can give\n"
-#~ "several names, separated by '|' characters, to a printer.\n"
-#~ "So, if you prefer to have a more meaningful name you just have\n"
-#~ "to put it first, eg: \"My Printer|lp\".\n"
-#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select\n"
-#~ "\"Local printer\". You will then have to tell which port your\n"
-#~ "printer is connected to, and select the appropriate filter.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine,\n"
-#~ "you will have to select \"Remote lpd\". In order to make\n"
-#~ "it work, no username or password is required, but you will need\n"
-#~ "to know the name of the printing queue on this server.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a SMB printer (which means, a printer located\n"
-#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
-#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-#~ "plus the username, workgroup and password required in order to\n"
-#~ "access the printer, and of course the name of the printer. The same goes\n"
-#~ "for a NetWare printer, except that you need no workgroup information."
-#~ msgstr ""
-#~ "GNU/Linux kan verskeie drukkers gebruik. Elkeen van hierdie tipes\n"
-#~ "verlang 'n ander opstelling. Let asb. daarop dat die verstek drukkernaam "
-#~ "'lp' is.\n"
-#~ "U moet so 'n drukker skep. U kan egter addisionele name bysit deur dit "
-#~ "met die '|' karakterte skei.\n"
-#~ "Derhalwe kan u dus die drukker 'n meer betekenisvolle naam ook toeken.\n"
-#~ "Die drukker met 'lp' in die naam sal die verstek drukker wees.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u drukker direk aan die rekenaar gekoppel is, selekteer\n"
-#~ "\"Lokale Drukker\". U moet dan die korrekte poort uitwys\n"
-#~ "en die gepaslike filter selekteer.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u 'n drukker om 'n ander Unix-rekenaar wil gebruik, kies\n"
-#~ "\"Eksterne lpd\". In hierdie geval moet u die naam van die drukkertou\n"
-#~ "op die ander rekenaar ken.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u toegang tot 'n SMB drukker (op 'n Windows-rekenaar) verlang,\n"
-#~ "moet u die SMB/NETBIOS naam (nie TCP/IP-naam nie) ken en moontlik ook "
-#~ "die\n"
-#~ "IP-adres. Daarby moet u ook 'n gebruikerskode, werkgroep en wagwoord en "
-#~ "die\n"
-#~ "drukkernaam voorsien. Dieselfde geld vir 'n Netware-drukker, behalwe dat "
-#~ "u\n"
-#~ "die werkgroep hoef te voorsien nie."
-
-# ../help.pm_.c:240 ../help.pm_.c:481 msgid ""
-#~ msgid ""
-#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
-#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
-#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
-#~ "boot into GNU/Linux any more."
-#~ msgstr ""
-#~ "Dit word sterk aanbeveel dat u \"Ja\" antwoord. Indien u Windows sou\n"
-#~ "herinstalleer, sal dit die herlaaisektor oorskryf. Indien u die die "
-#~ "herlaaiskyf\n"
-#~ "gemaak het nie, sal u nie weer in GNU/Linux kan inkom nie."
-
-#~ msgid "Move your wheel!"
-#~ msgstr "Draai u wiel!"
-
-#~ msgid "Forget the changes?"
-#~ msgstr "Vergeet van die veranderinge?"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "Wat is u muistipe?"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "OUtomatiese resolusies"
-
-#~ msgid ""
-#~ "To find the available resolutions I will try different ones.\n"
-#~ "Your screen will blink...\n"
-#~ "You can switch if off if you want, you'll hear a beep when it's over"
-#~ msgstr ""
-#~ "Ek gaan nou probeer m die beskikbare resolusies te kry.\n"
-#~ "Die skerm sal 'n paar maal flits...\n"
-#~ "U kan die skerm afsit indien u wil, ek sal biep wanneer ek klaar is"
-
-#~ msgid ""
-#~ "I can try to find the available resolutions (eg: 800x600).\n"
-#~ "Sometimes, though, it may hang the machine.\n"
-#~ "Do you want to try?"
-#~ msgstr ""
-#~ "Ek kan probeer om al die beskikbare resolusies te kry (bv. 800x600).\n"
-#~ "Soms kan die rekenaar ophang.\n"
-#~ "Wil u probeer?"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "Geen geldige modes was gevind nie\n"
-#~ "Probeer 'n ander videokaart of monitor"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Outomatiese resolusie soektog"
-
-#~ msgid "pump"
-#~ msgstr "pump"
-
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
-
-#~ msgid "dhcp-client"
-#~ msgstr "DHCP-klint"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB-muis"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB-muis (2 knoppe)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB-muis (3+ knoppe)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USB-muis"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USB-muis (2 knoppe)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USB-muis (3+ knoppe)"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
+#~ msgid "Test again"
+#~ msgstr "Toets weer"
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
+#~ msgid "Setting security level"
+#~ msgstr "Sekuriteitsvlak word gestel."
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI Busmuis"
+#~ msgid "Graphics card"
+#~ msgstr "Videokaart"
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft busmuis"
+#~ msgid "Select a graphics card"
+#~ msgstr "Selekteer 'n videokaart"
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logitech busmuis"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB Muis (3 knoppe of meer)"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standaard VGA, 640x480 teen 60 Hz"
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A of beter (seriaal)"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 teen 56 Hz"
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (seriaal)"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514-aanpasbaar, 1024x768 teen 87Hz interverweef (nie 800x600 nie)"
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (seriaal)"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 102x768 teen 87 Hz interverweef, 800x600 teen 56 Hz "
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (seriaal)"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Verlengde Super VGA, 800x600 teen 60 Hz, 640x480 teen 72 Hz"
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Generiese Muis (seriaal)"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Nie-interverweefde SVGA, 1024x768 teen 60 Hz, 800x600 teen 72 Hz"
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Microsoft aanpasbaar (seriaal)"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Hod frekwensie SVGA, 1024x768 teen 70 Hz"
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Generiese 3-knopmuis (seriaal)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 60Hz"
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse (seriaal)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 74Hz"
-#~ msgid ""
-#~ "I need to configure your network adapter to be able to connect to "
-#~ "internet."
-#~ msgstr ""
-#~ "Ek moet u netwerkkaart konfigureer om aan die internet te konnekteer."
-
-#~ msgid "nfs mount failed"
-#~ msgstr "NFS heg het gefaal"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 76Hz"
-#~ msgid "Socket"
-#~ msgstr "Sok"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor wat 1600x1220 kan doen teen 70Hz"
-#~ msgid "Cryptographic"
-#~ msgstr "Kriptografie"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor wat 1600x1220 kan doen teen 76Hz"
#~ msgid ""
-#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-#~ "By default, the 4.0 server is used unless your card is not supported.\n"
-#~ "\n"
-#~ "Do you want to keep XFree 3.3?"
-#~ msgstr ""
-#~ "DrakX sal konfigurasielers maak vir beide XFree 3.3 en XFree 4.0.\n"
-#~ "By verstek sal die 4.0 bediener gebruik word indien u videokaart "
-#~ "ondersteun. word\n"
-#~ "\n"
-#~ "Wil u XFree 3.3 behou?"
-
-#~ msgid "Configure LAN"
-#~ msgstr "Stel LAN op"
-
-#~ msgid "Do not set up networking"
-#~ msgstr "Moenie netwerk opstel nie"
-
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Wil u die netwerk vir u stelsel opstel?"
-
-#~ msgid "Show less"
-#~ msgstr "Vertoon minder"
-
-#~ msgid "Show more"
-#~ msgstr "Vertoon meer"
-
-#, fuzzy
-#~ msgid "tie"
-#~ msgstr "koppel"
-
-#~ msgid "brunette"
-#~ msgstr "brunette"
-
-#~ msgid "girl"
-#~ msgstr "meisie"
-
-#~ msgid "woman-blond"
-#~ msgstr "blondine"
-
-#, fuzzy
-#~ msgid "automagic"
-#~ msgstr "automagic"
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Die totale grootte vir die gekose groepe is naastenby %d MB.\n"
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Wat is u sleutelborduitleg?"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Soek PCMCIA-kaarte?"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Soek vir %s-toestelle?"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr "Wil u die opbelkonneksie (modem) konfigureer?"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Soek vir PCI-toestelle?"
-
-#~ msgid "Searching root partition."
-#~ msgstr "Wortelpartisisie word gesoek."
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr ""
-#~ "%s: Hierdie is nie 'n wortellerstelsel nie, kies asb. 'n ander een."
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "Watter partisie moet u wortelpartisie wees?"
-
-#~ msgid "You don't have any windows partitions!"
-#~ msgstr "U het geen Windows-partisies nie!"
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "U het nie genoeg spasie vir Lnx4win nie."
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-# 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)
-#
-#, fuzzy
#~ msgid ""
-#~ "Welcome to LILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or wait %d seconds "
-#~ "for default boot.\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Welkom by %s die bedryfstelselkeuseprogram!\n"
-#~ "\n"
-#~ "Om die moontlikhede te vertoon, druk <TAB>.\n"
-#~ "\n"
-#~ "Om 'n spesifieke een te laai, tik die nodige naam en druk <ENTER> of wag\n"
-#~ "%ds en die verstek bedryfstelsel sal laai.\n"
+#~ "Indien u verkies om minder as hierdie grootte te installeer, kies dan 'n\n"
+#~ "persentasie van pakkette wat u wil installeer.\n"
#~ "\n"
+#~ "'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
+#~ "'n persentasie van 100%% sal alles gekose pakkette installeer."
-# 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)
-#
-#, fuzzy
#~ msgid ""
-#~ "Welcome to SILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or\n"
-#~ "wait %d seconds for default boot.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Welkom by %s die bedryfstelselkeuseprogram!\n"
-#~ "\n"
-#~ "Om die moontlikhede te vertoon, druk <TAB>.\n"
-#~ "\n"
-#~ "Om 'n spesifieke een te laai, tik die nodige naam en druk <ENTER> of wag\n"
-#~ "%ds en die verstek bedryfstelsel sal laai.\n"
+#~ "U het net spasie op u hardeskyf vir %d%% van hierdie pakkette.\n"
#~ "\n"
+#~ "Indien u minder wil installeer, kies die persentasie wat u verlang.\n"
+#~ "'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
+#~ "'n Persentasie van %d%% sal soveel moontlik probeer installeer."
-#~ msgid "SILO main options"
-#~ msgstr "SILO hoofopsies"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "U sal met meer akkuraatheid in die volgende stap kan kies."
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "Hier is die huidige SILO-inskrywings\n"
-#~ "U kan byvoeg or verwyder soos nodig."
-
-#~ msgid "This label is already in use"
-#~ msgstr "Hierdie etiket is alreeds in gebruik"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "SILO installasie het gefaal a.g.v. hierdie fout: "
-
-#~ msgid ""
-#~ "DrakX will attempt at first to look for one or more PCI\n"
-#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-#~ "to use, it will insert it (them) automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-#~ "doesn't know which driver to use for this card, or if you have no\n"
-#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
-#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
-#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
-#~ "will have to select one.\n"
-#~ "\n"
-#~ "\n"
-#~ "After you have selected the driver, DrakX will ask if you\n"
-#~ "want to specify options for it. First, try and let the driver\n"
-#~ "probe for the hardware: it usually works fine.\n"
-#~ "\n"
-#~ "\n"
-#~ "If not, do not forget the information on your hardware that you\n"
-#~ "could get from your documentation or from Windows (if you have it\n"
-#~ "on your system), as suggested by the installation guide. These\n"
-#~ "are the options you will need to provide to the driver."
-#~ msgstr ""
-#~ "DrakX will probeer om eers te kyk vir een of meer bekende PCI\n"
-#~ "SCSI kaarte. Indien iets gevind word, en die drywers daarvoor\n"
-#~ "bekend is, sal dit outomaties bygevoeg word.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien u 'n ISA SCSI kaart het, of 'n onbekende PCI SCSI kaart, of\n"
-#~ "geen SCSI kaart nie, sa; u gevra word of daar enige SCSI kaarte is.\n"
-#~ "Indien daar geen is nie, antwoord \"Nee\". Indien daar wel is, antwoord\n"
-#~ "\"Ja\" en 'n lys van kaarte sal gegee word waaruit u moet kies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Na seleksie van die drywer, sal DrakX of vra vir opsies. Probeer eers\n"
-#~ "dat die drywer die hardeware ondervra; dit werk gewoonlik.\n"
-#~ "\n"
-#~ "\n"
-#~ "Indien nie, moenie die dokumentasie van u hardeware vergeet nie; ook nie\n"
-#~ "enige inligting van Windows (indien u dit gennstalleer het). Hierdie is\n"
-#~ "opsies wat u die drywer moet verskaf."
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Persentasie pakkette om te installeer"
-#~ msgid "Shutting down"
-#~ msgstr "Stelselafsluiting"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Gebruik sekuriteitsvlak"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index bad02e711..8f5d7ac41 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -1,39 +1,68 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2000 Free Software Foundation, Inc.
-# Djaghlouli Kamel <djkamel@chez.com>, 2000.
+# Copyright (C) 2001 Free Software Foundation, Inc.
+# Amr Fathy <amr10@menanet.net>, 2001.
# Mohammed Gamal <f2c2001@yahoo.com>, 2002
-# Boujaj Mostapha Ibrahim <mboujaj@yahoo.de>, 2002
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-08 02:00GMT\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-5-12 HO:MI+ZONE\n"
"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
-"Language-Team: ARABIC <ar@li.org>\n"
+"Language-Team: Arabic \n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "اعداد كل الرؤوس بشكل مستقل"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 كيلوبايت"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "استخدام امتداد Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 كيلوبايت"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "قم بإعداد البطاقة \"%s\" فقط (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 ميغابايت"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 ميغابايت أو أكثر"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "إختر خادم X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "خادم X"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "إعداد متعدد الرؤوس"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -41,41 +70,44 @@ msgstr ""
"نظامك يدعم الإعداد متعدد الرؤوس.\n"
"ماذا تريد أن تفعل؟"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "بطاقة الشاشة"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "إختر حجم ذاكرة بطاقة الشاشة"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "اختر بطاقة شاشة"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "إعداد XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "إختر خادم X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "أي اعداد لـXFree تريد؟"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "خادم X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "اعداد كل الرؤوس بشكل مستقل"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "إختر مشغل X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "استخدام امتداد Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "مشغل X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "قم بإعداد البطاقة \"%s\" فقط (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "أي اعداد لـXFree تريد؟"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,32 +117,17 @@ msgstr ""
"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشل أفضل في الوضع "
"ثنائي الأبعاد."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "يمكن لبطاقتك الحصول على دعم للتسريع ثلاثي الأبعاد مع XFree %s"
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"يمكن لبطاقتك التمتع بدعم للرسوم ثلاثية الأبعاد مع XFree %s, \n"
-"لاحظ أن هذا الدعم تجريبي و قد يتسبب في ايقاف جهازك."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s مع دعم تجريبي للرسوم ثلاثية الأبعاد"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -122,31 +139,58 @@ msgstr ""
"بطاقتك مدعومة عن طريق XFree %s التي يمكن أن تكون مدعومة بشكل أفضل في وضعية "
"الرسوم ثنائية الأبعاد."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"يمكن لبطاقتك التمتع بدعم للرسوم ثلاثية الأبعاد مع XFree %s, \n"
+"لاحظ أن هذا الدعم تجريبي و قد يتسبب في ايقاف جهازك."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (مشغل عرض التثبيت)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "إعداد XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "إختر حجم ذاكرة بطاقة الشاشة"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "إختر خيارات الخادم"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"هل تريد حفظ التغييرات؟\n"
+"الإعداد الحالي هو:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "إختر شاشة"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "الشاشة"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "مخصص"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generic"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "تراجع"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -167,510 +211,325 @@ msgstr ""
"أكبر من مقدرة شاشتك لأنك بهذا قد تدمر شاشتك.\n"
" اذا لم تكن متأكدا يمكنك اختيار اعدادات عادية."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "نسبة الإنعاش الأفقي"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "نسبة الإنعاش الرأسي"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "الشاشة غير معدّة"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "لم يتم اعداد بطاقة الشاشة حتى الآن"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "ام يتم اعداد دقة العرض حتى الآن"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "هل تريد تجربة الإعداد؟"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "تحذير: اختبار بطاقة العرض هذه قد يتسب في ايقاف جهازك"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "اختبار الإعداد"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 لون (8 بت)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"حاول تغيير بعض المعاملات"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 ألف لون (15 بت)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "ظهر خطأ:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 ألف لون (16 بت)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "المغادرة في %d ثوان"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 مليون لون (24 بت)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "هل هذا هو الضبط الصحيح؟"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 بليون لون (32 بت)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "ظهر خطأ, حاول تغيير بعض الماملات"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "دقة العرض"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "دقة العرض"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "اختر دقة العرض و عمق الألوام"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "بطاقة الشاشة: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "خادم XFree86 :%s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "أكثر"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "الغاء"
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "موافق"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "وضعية الخبير"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "اظهار الكل"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "هل تريد تجربة الإعداد؟"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "دقة العرض"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "اختبار الإعداد"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "لوحة المفاتيح: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "نوع الفأرة: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "جهاز الفأرة: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "الشاشة: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "تزامن الشاشة الأفقي: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "انعاش الشاشة الرأسي: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "بطاقة الشاشة: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "معرف بطاقة الشاشة: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "ذاكرة بطاقة الشاشة: %s كيلوبايت\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "عمق الألوان: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "دقة العرض: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "خادم XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "مشغل XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "جاري تجهيز تهيئة X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "ماذا تريد أن تفعل؟"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "تغيير الشاشة"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "تغيير بطاقة الشاشة"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "تغيير خيارات الخادم"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "تغيير دقة العرض"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "عرض المعلومات"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
+msgstr "واجهة رسومية عند بدء التشغيل"
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "اختبر مرة أخرى"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "خروج"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"هل تريد حفظ التغييرات؟\n"
-"الإعداد الحالي هو:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
-msgstr "X عند بدء التشغيل"
-
-#: ../../Xconfigurator.pm_.c:1604
-msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"يمكنني جعل جهازك يبدأ X بشكل آلي بعد الإقلاع.\n"
"هل تريد X أن بيدأ بعد إعادة تشغيل جهازك؟"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 لون )8 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 ألف لون )15 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 ألف لون )16 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 مليون لون )24 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 بليون لون )32 بت("
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 كيلوبايت"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 كيلوبايت"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 ميغابايت"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 ميغابايت أو أكثر"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 at 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 at 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 at 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency that can do 1280x1024 at 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency that can do 1280x1024 at 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency that can do 1280x1024 at 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor that can do 1600x1200 at 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor that can do 1600x1200 at 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "القطاع اول من تجزئة الإقلاع"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "القطاع الأول من القرص (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "تثبيت SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "أين تريد تثبيت محمّل الإقلاع؟"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "تثبيت LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO مع قائمة نصية"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO مع قائمة رسومية"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "الإقلاع من DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "خيارات محمّل الإقلاع الرئيسية"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "محمّل الإقلاع المُستخدم"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "تثبيت محمل الإقلاع"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "جهاز الإقلاع"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
-msgstr "LBA )لا يعمل مع أنظمة الـBIOS القديمة("
+msgstr "LBA (لا يعمل مع أنظمة الـBIOS القديمة)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "مدمج"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "مدمج"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "وضعية الفيدية"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "توقيت ما قبل اقلاع الصورة الافتراضية"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
-msgstr "???§?????????© ?§???³?????????±"
+msgstr "كلمة المرور"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
-msgstr "كلمة المرور )ثانيةً("
+msgstr "كلمة المرور (ثانية)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "تشديد خيارات سطر الأوامر"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "تشديد"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "قم بتنظيف /tmp عند كل إقلاع"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "حجم الذاكرة الدقيق عند الحاجة )تم ايجاد %d ميغابايت("
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "تمكين التشكيلات المتعددة"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "اكتب حجم الذاكرة بالميغابايت"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "خيار ``تشديد خيارات سطر الأوامر`` بدون قائدة من دون كلمة مرور"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "رجاء جاول مرة أخرى"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "كلمات المرور غير متطابقة"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "رسالة Init"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Open Firmware Delay"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "الوقت الأقصى لإقلاع النواة"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "تمكين الإقلاع من القرص المدمج؟"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "تمكين اقلاع OF؟"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "نظام التشغيل الافتراضي؟"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -679,83 +538,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
-"ها هنا المخلات المختلفة.\n"
+"ها هنا المدخلات المختلفة.\n"
"يمكنك اضافة مدخلات أخرى أو تغيير الموجودين."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
-msgstr "إضافة"
+msgstr "اضافة"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "انتهى"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "تعديل"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "ما نوع المدخل الذي تريد اضافته؟"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "لينكس"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "نظام آخر (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "نظام آخر (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "نظام آخر (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "صورة"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "الجذر"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "الحاق"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "للقراءة و الكتابة"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "الجدول"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
-msgstr "Unsafe"
+msgstr "غير آمن"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "عنوان"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "الإفتراضي"
@@ -787,53 +646,75 @@ msgstr "يجب عليك تحديد تقسيم جذر"
msgid "This label is already used"
msgstr "هذه العلامة مستخدمة مسبقا"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "تم ايجاد %s %s واجهات"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "هل عندك واحدة أخرى؟"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "هل لديك أي واجهات %s؟"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "لا"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "نعم"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "عرض معلومات العتاد"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "جاري تثبيت مشغل %s للبطاقة %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
-msgstr ")الوحدة %s("
+msgstr "(الوحدة %s)"
+
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+"يمكنك الآن اعطاء الخيارات للوحدة %s.\n"
+"الخيارات في هيئة ``name=value name2=value2 ...'' \n"
+"مثلا, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "خيارات الوحدة:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "أي مشغل %s يجب أن استخدمه؟"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -851,37 +732,15 @@ msgstr ""
"لكن\n"
"لا يجب أن يتسبب ذلك في أي مشاكل."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "تحقق آلي"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "حدد الخيارات"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"يمكنك الآن اعطاء الخيارات للوحدة %s.\n"
-"الخيارات في هيئة ``name=value name2=value2 ...'' \n"
-"مثلا, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "خيارات الوحدة:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -890,49 +749,54 @@ msgstr ""
"فشل تحميل الوحدة %s.\n"
"هل تريد المحاولة ثانية بمعاملات أخرى؟"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "الوصول الى برامج X"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "الوصول الى أدوات rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "اسمح بـ\"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "الوصول الى ملفات الإدارة"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(تم اضافة %s مسبقا)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "كلمة المرور هذه بسيطة جدا"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "رجاءً قم بإعطاء اسم مستخدم"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "اسم المستخدم يجب أن يحتوي فقط على الحروف الصغيرة, الأرقام, `-' و `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "اسم المستخدم مُضاف مسبقا"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "اسم المستخدم مُضاف مسبقا"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "اضف مستخدم"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -941,32 +805,32 @@ msgstr ""
"أدخل مستخدم\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "وافق على المستخدم"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "الاسم الحقيقي"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "اسم المستخدم"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "الغلاف"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "أيقونة"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "دخول آلي"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -974,87 +838,67 @@ msgstr ""
"يمكنني اعداد جهازك لتسجيل الدخول آليل لمستخدم ما.\n"
"هل تريد استخدام هذه الميزة؟"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "اختر المستخدم الافتراضي:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "اختر مدير النوافذ الذي سيتم تشغيله:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "رجاء اختر لغة الاستخدام."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "يمكنكن اختيار لغات أخرى و التي ستكون متوفرة بعد التثبيت"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "الكل"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "اسمح لكل المستخدمين"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "مخصص"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "لا مشاركة"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "يمكنك التصدير باستخدام NFS أو Samba. أي منهما تريد"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "الحزمة الضرورية %s مفقودة"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "إلغاء"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "شغّل userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1062,89 +906,90 @@ msgstr ""
"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
"يمكنك أن تستخدم userdrake لإضافة مستخدم في هذه المجموعة."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "مرحبا بالمخترقين"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "فقير"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "القياسي"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "مرتفع"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "مرتفع أكثر"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "مرتفع جدا"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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 ""
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "اختر مستوى الأمن"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "مستوى الأمن"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "إستخدم libsafe للملقمات"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1161,52 +1006,52 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "لا توجد مساحو كافية في /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "سطح المكتب"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "يمكنك تثبيت محمّل الإقلاع على التجزئة %s\n"
@@ -1219,17 +1064,21 @@ msgstr "لا توجد مساعدة لهذا حتى الآن.\n"
msgid "Boot Style Configuration"
msgstr "اعداد أسلوب الإقلاع"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_ملف"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/ملف/_خروج"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<control>خ"
+msgstr "<تحكم>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1262,14 +1111,14 @@ msgstr "وضع Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"أنت تستخدم %s كمدير اقلاع حاليا.\n"
"اضغط على تهيئة لتشغيل معالج الإعداد"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "إعداد"
@@ -1279,7 +1128,7 @@ msgid "System mode"
msgstr "وضع النظام"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "شغّل X-Window عند بدء التشغيل"
#: ../../bootlook.pm_.c:148
@@ -1290,14 +1139,16 @@ msgstr "لا, لا أريد دخولا أليا"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "نعم, أريد دخولا آليا مع هذا )المستخدم, سطح المكتب("
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "موافق"
@@ -1312,11 +1163,11 @@ msgstr "غيغابايت"
#: ../../common.pm_.c:94
msgid "KB"
-msgstr "كيلوبايا"
+msgstr "كيلوبايت"
#: ../../common.pm_.c:94
msgid "MB"
-msgstr "م.ب"
+msgstr "ميغابايت"
#: ../../common.pm_.c:102
msgid "TB"
@@ -1345,7 +1196,7 @@ msgstr "لا يمكنني غمل لقطات للشاشة قبل التجزئة"
msgid "Screenshots will be available after install in %s"
msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت في %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "فرنسا"
@@ -1353,7 +1204,7 @@ msgstr "فرنسا"
msgid "Costa Rica"
msgstr "كوستاريكا"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "بلجيكا"
@@ -1377,11 +1228,12 @@ msgstr "النرويج"
msgid "Sweden"
msgstr "السويد"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "هولندا"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "إيطاليا"
@@ -1389,7 +1241,7 @@ msgstr "إيطاليا"
msgid "Austria"
msgstr "النمسا"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "الولايات المتحدة"
@@ -1397,8 +1249,8 @@ msgstr "الولايات المتحدة"
msgid "Please make a backup of your data first"
msgstr "رجاء قم بعمل نسخة احتياطية من بياناتك أولا"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "اقرأ جيدا!"
@@ -1411,11 +1263,12 @@ msgstr ""
"اذا كنت تريد استخدام aboot, فلا تنسى أن تترك مساحة فارغة في\n"
"بداية القرص (2048 قطاعات كافية)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "خطأ"
@@ -1423,11 +1276,11 @@ msgstr "خطأ"
msgid "Wizard"
msgstr "المعالج"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "اختر حدثا"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1435,177 +1288,182 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
"لديك تجزئة FAT واحدة كبيرة\n"
-")يستخدم عامة عن طريق Microsoft DOS/Windows(.\n"
+"(يستخدم عامة عن طريق Microsoft DOS/Windows).\n"
"اقترح أن تغير حجم هذه التجزئة\n"
-")اضغط عليها ثم اختر \"تغيير الحجم\"("
+"(اضغط عليها ثم اختر \"تغيير الحجم\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "فضلا اضغط على تجزئة"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "تفاصيل"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journalised FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "التبديل"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "فارغ"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "أخرى"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "أنواع أنظمة الملفات:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "عمل تجزئة"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "النوع"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "استخدم ``%s'' بدلا من ذلك"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "إلغاء"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "استخدم ``ازالة التجهيز'' أولا"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "بعد تغيير نوع التجزئة %s, فإنك ستسخر كل البيانات على التجزئة"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "إختر تجزئة"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "إختر شاشة"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "خروج"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "النتقال الى وضعية الخبير"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "الانتقال الى الوضع العادي"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "تراجع"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "هل تريد الاكمال على أي حال؟"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "الخروج بدون الحفظ"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "هل تريد الخروج بدون كتابة جدول التقسيم؟"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "هل تريد حفظ تعديلات /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "تحديد آلي"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "أمسح الكل"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "أكثر"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "معلومات القرص الصلب"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "كل التجزئات الرئيسية مستخدمة"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "لا يمكنني اضافة أي تجزئة أخرى"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "لكي تمتلك تجزئات أكثر, يرجى الغاء تجزئة كي تتمكن من عمل تجزئة ممتدة"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "حفظ جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "استعادة جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "إنقاذ جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "إعادة تحميل جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "التجهيز الآلي للوسائط القابلة للإزالة"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "اختر ملف"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1613,11 +1471,11 @@ msgstr ""
"جدول التقسيم المحفوظ ليس بنفس الحجم\n"
"لا زلت تريد الإكمال؟"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "تحذير"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1625,122 +1483,129 @@ msgstr ""
"أدخل قرصا مرنا في السواقة\n"
"كل البيانات على القرص ستمحى"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "جاري محاولة انقاذ جدول التقسيم"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "معلومات مفصّلة"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "نقطة التجهيز"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "خيارات"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "تغيير الحجم"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "نقل"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "تنسيق"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "جهز"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "اضافة الى RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "اضافة الى LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "ازل التجهيز"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "ازالة من RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "ازالة من LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "تعديل RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "استخدام لـloopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "اعمل تجزئة جديدة"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "قطاع البداية: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "الحجم باليغابايت: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "نوع نظام المفات: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "نقطة التجهيز: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "التفضيل: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "هل تريد ازالة ملف loopback؟"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "غير نوع التجزئة"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "أي نظام ملفات تريد؟"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "جاري التغيير من ext2 الى ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "أين تريد تجهيز ملف loopback %s؟"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "أين تريد بجهيز الجهاز%s؟"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1748,125 +1613,130 @@ msgstr ""
"لم يمكن ازالة تعيين نقطة التجهيز نظرا لأن هذه التجزئة مستخدمة لـloop back.\n"
"قم بإزالة الـloopback أولا"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "جاري حساب روابط نظام ملفات FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "جاري تغيير الحجم"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "هذا التقسيم غير قابل لتغيير الحجم"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "كل البيانات على هذه التجزئة يجب حفظها احتياطيا"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "بعد تغيير حجم التجزئة %s, فإن كل البيانات على هذه التجزئة ستفقد"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "اختر الحجم الجديد"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "الحجم الجديد بالميغابايت: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "أي قرص تريد نقله؟"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "القطاع"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "أي قطاع تريد نقله؟"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
-msgstr "نقل"
+msgstr "جاري النقل"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "جاري نقل التجزئة..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "اختر RAID موجود للاضافة"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "جديد"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "اختر LVM l,جود للاضافة"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "اسم LVM؟"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "هذه التجزئة لا يمكن استخدامها لـloopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "اسم ملف Loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "اعط اسم ملف"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "هذا الملف مستخدم من loopback أخرى, اختر ملفا آخر"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "الملف موجود مسبقا, هل تريد استخدامه؟"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "خيارات التجهيز"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "متنوعة"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
-msgstr "الجهاز"
+msgstr "وحدة"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "المستوى"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "حجم chunk"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "كن حذرا: هذه العملية خطيرة"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "أي نوع من التجزئة؟"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1874,7 +1744,7 @@ msgid ""
"need /boot"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1882,169 +1752,169 @@ msgid ""
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "جدول اتتقسيم للقرص %s سيتم كتابته الى القرص!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "ستحتاج الى اعادة التشغيل قبل أن يتم تفعيل التعديلات"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "بعد تهيئة التقسيم %s, فإن كل البيانات الموجودة على التجزئة ستفقد"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "جاري التهيئة"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "جاري تهيئة ملف loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "جاري تهيئة التجزئة %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "خبء الملفات"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "انقل الملفات الى تجزئة جديدة"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"الدليل %s يحتوي مسبقا على بعض البيانات\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "جاري نقل الملفات الى التجزئة الجديدة"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "جاري نسخ %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "جاري ازالة %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "التجزئة %s معروفة الآن بالإسم %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "الجهاز: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "حرف سواقة DOS: %s (مجرد تخمين)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "النوع: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "الاسم: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "البداية: قطاع %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "الحجم: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s قطاع"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "الاسطوانة %d الى %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "مجهز\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "غير مجهز\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "محمل\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "المستوى %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "حجم Chunk %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "أقراص RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "اسم ملف Loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2052,7 +1922,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2060,62 +1930,62 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "الحجم: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "الهندسة: %s اسطوانة, %s رأس, %s قطاع\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "معلومات: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "أقراص LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "نوع جدول التقسيم: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "على bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "الخيارات: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "مفتاح تشفير نظام الملفات"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "اختر مفتاح تشفير نظام الملفات"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "مفتاح التشفير هذا بسيط جدا (يجب أن يكون %d حرفا على الأقل)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "مفاتيح التشفير غير متطابقة"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "مفاتح التشفير"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "مفاتح التشفير (مرة أخرى)"
@@ -2124,35 +1994,65 @@ msgid "Change type"
msgstr "غيّر النوع"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "فضلا اضعط على وسيط"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "التحقق"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "إنترنت"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "اسم المستخدم"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "اسم المستخدم"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domain"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "ابحث في أجهزة الخادم"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s تجهيز %s قد فشل"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "لا أعرف كيف أجهز %s في النوع %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2163,68 +2063,319 @@ msgstr "بسيط"
#: ../../fsedit.pm_.c:25
msgid "with /usr"
-msgstr ""
+msgstr "مع /usr"
#: ../../fsedit.pm_.c:30
msgid "server"
msgstr "خادم"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr ""
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr ""
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "لا توجد مساحة كافية للتحديد الآلي"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
-msgstr ""
+msgstr "لا شيئ للعمل"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
-msgstr ""
+msgstr " فتحة الخطإ %s للكتابة :%s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"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 ""
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
+msgstr "ليس لديك أيّ فواصل ! "
+
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "تحقق آلي"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generic"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Card mem (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "حمل الإعدادات"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "غيّر النوع"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "خروج"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_مساعدة"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_مساعدة"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/مساعدة/_حول البرنامج..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "وحدة"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Card mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "الغاء"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "وحدة"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "الوصف"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "التحقق"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "اختر ملف"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway device"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 buttons"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "التحقق من الأقراص الصلبة"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "عرض معلومات العتاد"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "اعرض المعلومات"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "إعداد الفأرة"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "من فضلك انتظر"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d ثوان"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "جاري ازالة الطابعة \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "تحقق آلي"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
msgstr ""
#: ../../help.pm_.c:13
@@ -2240,7 +2391,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2256,6 +2407,33 @@ msgid ""
"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
"for that user (bash by default)."
msgstr ""
+"لينكس هو نظام متعدد المستخدمين, أي أن كل مستخدم سيكون له اعداداته الخاصة و "
+"ملفاته\n"
+"الخاصة, الخ. يمكنك قراءة ``دليل المستخدم'' لتفاصيل أكثر.\n"
+"و على عكس \"الجذر\", أي مدير النظام, فإن المستخدمين الذين ستضيفهم هنا لن\n"
+"يتم السماح لهم بتغيير أي شئ ما عدا ملفاتهم و إعداداتهم الخاصة. سيجب عليك\n"
+"أن تضيق مستخدماً عادياً لك. و هذا الحساب هو الذي يجب أن تدخل عليه\n"
+"للاستخدام العادي. و برغم أنه من العملي الدخول بصفة \"جذر\" يوميا إلا أن\n"
+"هذا قد يكون خطيرا جدا! فأقل غلطة قد تعني أن نظامك لن يعمل بعد ذلك مطلقا.\n"
+"أما إذا ارتكبت خطأ كبيراً كمستخدم عادي, فقد تخسر بعض البيانات, ولكن ليس "
+"النظام ككل.\n"
+"\n"
+"أولا سيجب عليك أن تكتب اسمك الحقيقي. هذا ليس الزامياً بالطبع\n"
+"بما أنه من الممكن أن تكتب ما تريد. DrakX سيأخذ أول كلمة تدخلها في الصندوق\n"
+"و سيجلبها في خانة \"اسم المستخدم\". هذا الإسم هو الذي سيستخدمه المستخدم\n"
+"للدخول الى النظام. يمكنك تغييره أيضا. بعد ذلك ستحتاج لإدخال كلمة المرور "
+"هنا.\n"
+"كلمة المرور الخاصة بالمستخدم العادي ليست مهمة مثل كلمة مرور \"الجذر\"\n"
+"من وجهة نظر أمنية, لكن هذا ليس سببا لتناسي الموضوع لأنه في هذه الحال\n"
+"فإن ملفات ستكون في خطر.\n"
+"\n"
+"إذا ضغطت على زر \"وافق على المستخدم\", فسيمكنك بعد ذلك أن تضيف بقدر ما "
+"تريد.\n"
+"مثلا يمكنك أن تضيف اسم مستخدم لكل من أصدقائك أو والدك أو أختك. عندما تنتهي\n"
+"من إضافة كل المستخدمين الذين تريدهم, اختر زر \"انتهى\".\n"
+"\n"
+"ضغط زر \"متقدم\" سيسمح لك بتغيير \"الغلاف\" أو سطر الأوامر الإفتراضي لهذا\n"
+"المستخدم (bash هو الغلاف الإفتراضي)."
#: ../../help.pm_.c:41
msgid ""
@@ -2289,6 +2467,34 @@ msgid ""
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc."
msgstr ""
+"في الأعلى ستجد تقسيمات لينكس الموجودة و التي تم ايجادها على القرص الصلب "
+"الخاص بك.\n"
+"يمكنك أن تُبقي إختيارات المعالج, و هي جيدة لأغلب أنواع التثبيت.\n"
+"إذا قمت بعمل أي تغييرات فيجب عليك أن تعرف التقسيم الجذر (\"/\"). لا تختر\n"
+"تقسيمات ضغيرة جدا و إلا لن تستطيع تثبيت برامج كافية. إذا كنت تريد تخزين "
+"البيانات\n"
+"على تقسيم مستقل فستحتاج الى عمل تقسيم لـ\"/home\"\n"
+"(ممكن فقط إذا كان لديك أكثر من تقسيم للينكس).\n"
+"\n"
+"كل تقسيم مُعطى بالسكل التالي: \"الإسم\", \"السعة\".\n"
+"\n"
+"\"الإسم\" مركب بالسكل التالي: \"نوع القرص الصلب\", \"رقم القرص الصلب\",\n"
+"\"رقم التقسيم\" (مثلا, \"hda1\").\n"
+"\n"
+"\"رقم القرص الصلب\" دائما هو حرف بعد \"hd\" أو \"sd\". بالنسبة للأقراص "
+"الصلبة\n"
+"من نوع IDE فإن:\n"
+" * \"a\" تعني \"القرص الصلب الأساسي على متحكم IDE الأساسي\",\n"
+"\n"
+" * \"b\" تعني \"القرص الصلب الثانوي على متحكم IDE الأساسي\",\n"
+"\n"
+" * \"c\" تعني \"القرص الصلب الأساسي على متحكم IDE الثانوي\",\n"
+"\n"
+" * \"d\" تعني \"القرص الصلب الثانوي على متحكم IDE الثانوي\",\n"
+"\n"
+"أما بالنسبة لأقراص سكزي SCSI فالحرف \"a\" يعني \"أقل معرف SCSI\", و الحرف \"b"
+"\"\n"
+"يعني \"ثاني أقل معرف SCSI\", الخ."
#: ../../help.pm_.c:72
msgid ""
@@ -2296,6 +2502,9 @@ msgid ""
"knows if a selected package is located on another CD-ROM and will eject the\n"
"current CD and ask you to insert a different one as required."
msgstr ""
+"تثبيت Mandrake Linux موزع على العديد من الأقراص. DrakX\n"
+"يعلم إذا كانت حزمة ما في قرص آخر و سيخرج القرص\n"
+"الحالي و سيطلب منك أن تدخل قرصاً مختلفا كما هو مطلوب."
#: ../../help.pm_.c:77
msgid ""
@@ -2311,9 +2520,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2495,7 +2703,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2507,9 +2715,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2555,21 +2762,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2585,9 +2791,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2608,9 +2814,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2720,38 +2925,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2825,11 +3024,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -2853,7 +3052,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -2868,7 +3067,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -2883,7 +3082,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -2899,29 +3098,29 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -2943,7 +3142,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -2965,7 +3164,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -2973,7 +3172,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -2994,7 +3193,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3007,7 +3206,7 @@ msgid ""
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3016,29 +3215,28 @@ msgid ""
"(MBR)\"."
msgstr ""
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3047,7 +3245,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3072,11 +3270,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3086,9 +3284,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3100,7 +3297,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3126,7 +3323,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3153,18 +3350,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3172,12 +3368,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3193,14 +3388,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3211,7 +3406,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3219,12 +3414,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3239,26 +3434,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS لا تسطيع ا ستعمال هذ ا البرنامج مع"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr ""
@@ -3283,75 +3478,78 @@ msgstr ""
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr "استمرّ بأيّة حال"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr ""
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "استعمل مكانا حرا"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr ""
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr ""
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr ""
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr ""
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr ""
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr ""
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr ""
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -3363,63 +3561,63 @@ msgid ""
"When sure, press Ok."
msgstr ""
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr ""
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr ""
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr ""
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr ""
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr ""
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr ""
@@ -3427,16 +3625,16 @@ msgstr ""
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr ""
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr ""
@@ -3446,12 +3644,12 @@ msgid ""
"Continue at your own risk."
msgstr ""
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr ""
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3459,12 +3657,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr ""
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr ""
@@ -3474,192 +3672,158 @@ msgstr ""
msgid "Entering step `%s'\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr ""
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr ""
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "قبول"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3669,17 +3833,17 @@ msgid ""
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr ""
@@ -3723,11 +3887,11 @@ msgstr ""
msgid "Do you really want to leave the installation?"
msgstr "هل تريد فعلا مغادرة التثبيت؟"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -3742,7 +3906,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -3848,284 +4012,290 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "لوحة المفاتيح"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "رجاء, اختر لوحة المفاتيح."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
-msgstr ""
+msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "ترقية"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "رجاء اختر لغة نوع الفأرة."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
-msgstr ""
+msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
-msgstr ""
+msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"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 loose all the partitions?\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:496
-#, c-format
-msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "اختر الحزم التي ستُثبَّت"
-#: ../../install_steps_interactive.pm_.c:515
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
-msgid "Recommended (%dMB)"
+msgid ""
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4162,157 +4332,187 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "خادم NTP"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "بطاقة الصّوت ISA هل عندك عند"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "الفأرة"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "طابعة"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "التحقق"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "خادم LDAP"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
-msgstr ""
+msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
+msgstr " الخادم NIS"
+
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "التحقق"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "احصل على خطوط Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "خادم NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+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"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4330,19 +4530,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
-msgstr ""
+msgstr "المدخل المرن الثّاني"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "تخطي"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4358,7 +4558,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4367,28 +4567,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
-msgstr ""
+msgstr "آسف , لا مدخل مرن متاح"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
-msgstr ""
+msgstr "أدخل قرص مرن بالدّاخل %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
+msgstr " إنشاء قرص الا قلا ع "
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
-msgstr ""
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
+msgstr " bootloader إعداد "
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4396,25 +4596,25 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
-msgstr ""
+msgstr " aboot هل تريد أن تستخدم "
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
-msgstr ""
+msgstr "bootloader التّركيب "
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4425,25 +4625,25 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4454,18 +4654,23 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4474,15 +4679,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr ""
@@ -4498,531 +4703,535 @@ msgstr ""
#: ../../interactive.pm_.c:87
msgid "kdesu missing"
-msgstr ""
+msgstr "kdesu missing"
#: ../../interactive.pm_.c:89 ../../interactive.pm_.c:100
msgid "consolehelper missing"
-msgstr ""
+msgstr "consolehelper missing"
#: ../../interactive.pm_.c:152
msgid "Choose a file"
msgstr "إختر ملف"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "متقدم"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
-msgstr ""
-
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr ""
+msgstr "Basic"
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr ""
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
-msgstr ""
+msgstr "اختيارك ? (default %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr ""
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
-msgstr ""
+msgstr "Button `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "هل تريد الضغط على هذا الزر؟ "
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
-msgstr ""
+msgstr "اختيارك ? (default `%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
-msgstr ""
+msgstr "إعادة تسليم"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
-msgstr ""
+msgstr "التشيكية (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "الألمانية"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
-msgstr ""
+msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "الإسبانية"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "الفنلندية"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "الفرنسية"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "النرويجية"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "البولندية"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "الروسية"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "السويدية"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
-msgstr ""
+msgstr "لوحة المفاتيح البريطانية"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
-msgstr ""
+msgstr "لوحة المفاتيح الأمريكية"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
-msgstr ""
+msgstr "الألبانيةّ"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
-msgstr ""
+msgstr "الأرمينية (قديم)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
-msgstr ""
+msgstr "الأرمينية (آلة كاتبة)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
-msgstr ""
+msgstr "الأرمينيةّ (صوتي)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
-msgstr ""
+msgstr "الأذربيجانية (لاتيني)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "البلجيكية"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "البلغارية (صوتية)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "البلغارية (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
-msgstr ""
+msgstr "البرازيليةّ (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "البيلاروسية"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
-msgstr ""
+msgstr "السويسرية (تصميم ألماني)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
-msgstr ""
+msgstr "السويسرية (تصميم فرنسي) "
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
-msgstr ""
+msgstr "التشيكية (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
-msgstr ""
+msgstr " الألمانيةّ (no dead keys)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "الدنماركية"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
-msgstr ""
+msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
-msgstr ""
+msgstr "Dvorak (نرويجيةّ) "
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (سويدية)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "الإستونية"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
-msgstr ""
+msgstr "الجورجية (التصميم الروسي)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
-msgstr ""
+msgstr "الجورجيةّ (التصميم اللاتيني)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
-msgstr "يوناني"
+msgstr "اليونانية"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
-msgstr "المجرية (الهنغارية)"
+msgstr "المجرية الهنغارية"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "الكرواتية"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "العبرية"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
-msgstr ""
+msgstr "العبرية (صوتية)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
-msgstr ""
+msgstr "الإيرانيّة"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "الآيسلاندية"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "الإيطالية"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
-msgstr ""
+msgstr "اليابانية 106 مفاتيح"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
-msgstr ""
+msgstr "لوحة المفاتيح الكورية"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
-msgstr ""
+msgstr "الأمريكية اللاتينية"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
-msgstr ""
+msgstr "اللّيتوانيةّ AZERTY ( قديم ) "
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
-msgstr ""
+msgstr "اللّيتوانيّة AZERTY ( جديد ) "
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
-msgstr ""
+msgstr "اللّيتوانيةّ \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr ""
+msgstr " اللّيتوانيةّ \"phonetic\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "اللاتفية"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "المقدونية"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
-msgstr ""
+msgstr "الهولنديّة"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
-msgstr ""
+msgstr "البولندية (qwerty layout)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
-msgstr ""
+msgstr "البولندية (qwertz layout)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "البرتغالية"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
-msgstr ""
+msgstr "الكنديّة (كيبيك)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
-msgstr ""
+msgstr "الرّومانيّة (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
-msgstr ""
+msgstr "الرّومانيةّ (qwertz)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
-msgstr ""
+msgstr "الرّوسيةّ (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "السلوفينية"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
-msgstr ""
+msgstr "السلوفاكية (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
-msgstr ""
+msgstr "السلوفاكية (QWERTZ)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
-msgstr ""
+msgstr "الصّربيةّ (cyrillic)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "التاميل"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
-msgstr ""
+msgstr "لوحة المفاتيح التّايلانديّة"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
-msgstr ""
+msgstr "لوحة مفاتيح الطّاجيكيّة"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
-msgstr ""
+msgstr "التّركيّ (traditional \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
-msgstr ""
+msgstr "التّركيّ (modern \"Q\" model)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "الأوكرانية"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
-msgstr ""
+msgstr "( "
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr ""
+msgstr "الفيتناميّ \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
-msgstr ""
+msgstr "( يوغسلافيّ ( اللّاتينيّة "
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
-msgstr ""
+msgstr "مفتاح Alt key"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
-msgstr ""
+msgstr "مفتاح CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
-msgstr ""
+msgstr "Ctrl and Alt keys simultaneously"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
-msgstr ""
+msgstr "Alt and Shift keys simultaneously"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
-msgstr ""
+msgstr "\"Menu\" key"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
-msgstr ""
+msgstr "Left \"Windows\" key"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
-msgstr ""
+msgstr "Right \"Windows\" key"
#: ../../loopback.pm_.c:32
#, c-format
msgid "Circular mounts %s\n"
-msgstr ""
+msgstr "Circular mounts %s\n"
#: ../../lvm.pm_.c:88
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "رقم التّليفون "
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "تجهيز التجزئات"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
-msgstr ""
+msgstr "Sun - Mouse"
#: ../../mouse.pm_.c:32
msgid "Logitech MouseMan+"
-msgstr ""
+msgstr "Logitech MouseMan+"
#: ../../mouse.pm_.c:33
msgid "Generic PS2 Wheel Mouse"
-msgstr ""
+msgstr "Generic PS2 Wheel Mouse"
#: ../../mouse.pm_.c:34
msgid "GlidePoint"
-msgstr ""
+msgstr "GlidePoint"
#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:63
msgid "Kensington Thinking Mouse"
-msgstr ""
+msgstr "Kensington Thinking Mouse"
#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:59
msgid "Genius NetMouse"
-msgstr ""
+msgstr "Genius NetMouse"
#: ../../mouse.pm_.c:38
msgid "Genius NetScroll"
-msgstr ""
+msgstr "Genius NetScroll"
#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:68
msgid "1 button"
-msgstr ""
+msgstr "1 button"
#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:51
msgid "Generic 2 Button Mouse"
-msgstr ""
-
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr ""
+msgstr "Generic 2 Button Mouse"
#: ../../mouse.pm_.c:46
msgid "Wheel"
-msgstr ""
+msgstr "Wheel"
#: ../../mouse.pm_.c:49
msgid "serial"
-msgstr ""
+msgstr "serial"
#: ../../mouse.pm_.c:52
msgid "Generic 3 Button Mouse"
-msgstr ""
+msgstr "Generic 3 Button Mouse"
#: ../../mouse.pm_.c:53
msgid "Microsoft IntelliMouse"
-msgstr ""
+msgstr "Microsoft IntelliMouse"
#: ../../mouse.pm_.c:54
msgid "Logitech MouseMan"
-msgstr ""
+msgstr "Logitech MouseMan"
#: ../../mouse.pm_.c:55
msgid "Mouse Systems"
-msgstr ""
+msgstr "Mouse Systems"
#: ../../mouse.pm_.c:57
msgid "Logitech CC Series"
-msgstr ""
+msgstr "Logitech CC Series"
#: ../../mouse.pm_.c:58
msgid "Logitech MouseMan+/FirstMouse+"
-msgstr ""
+msgstr "Logitech MouseMan+/FirstMouse+"
#: ../../mouse.pm_.c:60
msgid "MM Series"
-msgstr ""
+msgstr "MM Series"
#: ../../mouse.pm_.c:61
msgid "MM HitTablet"
-msgstr ""
+msgstr "MM HitTablet"
#: ../../mouse.pm_.c:62
msgid "Logitech Mouse (serial, old C7 type)"
-msgstr ""
+msgstr "Logitech Mouse (serial, old C7 type)"
#: ../../mouse.pm_.c:66
msgid "busmouse"
-msgstr ""
+msgstr "busmouse"
#: ../../mouse.pm_.c:69
msgid "2 buttons"
-msgstr ""
+msgstr "2 buttons"
#: ../../mouse.pm_.c:70
msgid "3 buttons"
-msgstr ""
+msgstr "3 buttons"
#: ../../mouse.pm_.c:73
msgid "none"
@@ -5030,43 +5239,59 @@ msgstr "ولا واحد"
#: ../../mouse.pm_.c:75
msgid "No mouse"
-msgstr ""
+msgstr "No mouse"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
-msgstr ""
+msgstr "من فضلك اختبر الفأرة"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
-msgstr ""
+msgstr "To activate the mouse,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
-msgstr ""
+msgstr " WHEEL! حرّك "
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-msgstr ""
+msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "إنتهاء"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "التالي ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
-msgstr ""
+msgstr "<-سابق "
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
+msgstr "هل هذا صحيح ? "
+
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "المعلومات"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Expand Tree"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Collapse Tree"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
msgstr ""
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
-msgstr ""
+msgstr "وصّل إلى الإنترنت "
#: ../../network/adsl.pm_.c:20
msgid ""
@@ -5077,25 +5302,27 @@ msgstr ""
#: ../../network/adsl.pm_.c:22
msgid "Alcatel speedtouch usb"
-msgstr ""
+msgstr "Alcatel speedtouch usb"
#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
-msgstr ""
+msgstr "use dhcp"
#: ../../network/adsl.pm_.c:22
msgid "use pppoe"
-msgstr ""
+msgstr "use pppoe"
#: ../../network/adsl.pm_.c:22
msgid "use pptp"
-msgstr ""
+msgstr "use pptp"
#: ../../network/ethernet.pm_.c:37
msgid ""
"Which dhcp client do you want to use?\n"
"Default is dhcpcd"
msgstr ""
+"تريد أن تستخدم dhcp أيّ عميل ?\n"
+" Default is dhcpcd"
#: ../../network/ethernet.pm_.c:88
msgid ""
@@ -5103,9 +5330,9 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
-msgstr ""
+msgstr "اختر السّطح البينيّ للشبكة "
#: ../../network/ethernet.pm_.c:93
msgid ""
@@ -5114,11 +5341,11 @@ msgstr ""
#: ../../network/ethernet.pm_.c:178
msgid "no network card found"
-msgstr ""
+msgstr "لا بطاقة شبكة وجدت "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
-msgstr ""
+msgstr "ا عداد شبكة"
#: ../../network/ethernet.pm_.c:203
msgid ""
@@ -5128,25 +5355,25 @@ msgid ""
"such as ``mybox.mylab.myco.com''."
msgstr ""
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
-msgstr ""
+msgstr "Host اسم "
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "معالج إعداد الشبكة"
#: ../../network/isdn.pm_.c:22
msgid "External ISDN modem"
-msgstr ""
+msgstr "External ISDN modem"
#: ../../network/isdn.pm_.c:22
msgid "Internal ISDN card"
-msgstr ""
+msgstr "Internal ISDN card"
#: ../../network/isdn.pm_.c:22
msgid "What kind is your ISDN connection?"
@@ -5177,12 +5404,12 @@ msgstr "إعداد قديم (isdn4net)"
#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
#: ../../network/isdn.pm_.c:215
msgid "ISDN Configuration"
-msgstr ""
+msgstr "ISDN إعداد "
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
#: ../../network/isdn.pm_.c:183
@@ -5199,12 +5426,12 @@ msgstr ""
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr ""
#: ../../network/isdn.pm_.c:199
@@ -5213,22 +5440,23 @@ msgstr ""
#: ../../network/isdn.pm_.c:200
msgid "I don't know"
-msgstr ""
+msgstr "لا أعرف "
#: ../../network/isdn.pm_.c:200
msgid "ISA / PCMCIA"
-msgstr ""
+msgstr "ISA / PCMCIA"
#: ../../network/isdn.pm_.c:200
msgid "PCI"
-msgstr ""
+msgstr "PCI"
#: ../../network/isdn.pm_.c:206
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
#: ../../network/isdn.pm_.c:210
@@ -5240,13 +5468,13 @@ msgid "Continue"
msgstr "تابع"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
-msgstr ""
+msgid "Which is your ISDN card?"
+msgstr "ISDN ما هية بطاقتك"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
#: ../../network/isdn.pm_.c:244
@@ -5259,96 +5487,96 @@ msgstr ""
#: ../../network/modem.pm_.c:44
msgid "Dialup options"
-msgstr ""
+msgstr "Dialup options"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr ""
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
-msgstr ""
+msgstr "رقم التّليفون "
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
-msgstr ""
+msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
-msgstr ""
+msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
-msgstr ""
+msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
-msgstr ""
+msgstr "Script-based"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
-msgstr ""
+msgstr "Terminal-based"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
-msgstr ""
+msgstr "Domain name"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
-msgstr ""
+msgstr "( خادم ا الأوّل ( اختياريّ "
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr ""
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "اتصل"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "اقطع الإتصال"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "قم بإعداد الإتصال"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -5360,12 +5588,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5373,97 +5601,103 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "وضعية الخبير"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr ""
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
-msgstr ""
+msgstr "ISDN connection"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
-msgstr ""
+msgstr "detected %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "وصلة ADSL"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "وصلة LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "وصلة انترنت"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr ""
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
-msgstr ""
+msgstr "ا عداد الشّبكة "
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5471,73 +5705,77 @@ msgid ""
"%s"
msgstr ""
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr ""
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
-msgstr ""
+msgstr "(driver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
-msgstr ""
+msgstr "IP address"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
-msgstr ""
+msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
-msgstr ""
+msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
-msgstr ""
+msgstr "Automatic IP"
+
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "ابدأ عند الإقلاع"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr ""
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5545,357 +5783,362 @@ msgid ""
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
-msgstr ""
+msgstr "الخادم DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
-msgstr ""
+msgstr "Gateway (e.g. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
-msgstr ""
+msgstr "Gateway device"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
-msgstr ""
+msgstr "Proxies اعداد"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
-msgstr ""
+msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
-msgstr ""
+msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr ""
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
-msgstr ""
+msgstr "اعداد Internet "
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr ""
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr ""
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr ""
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr ""
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr ""
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
-msgstr ""
+msgstr "Card mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
-msgstr ""
+msgstr "Card IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
-msgstr ""
+msgstr "Card IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
-msgstr ""
+msgstr "Card IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr ""
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr ""
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr ""
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr ""
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "إختر بلدك"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr ""
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "سرعة الإتصال"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "الوقت الأقصى للاتصال (بالثواني)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr ""
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
+msgstr "Account Password"
+
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:600
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "فشل التحميل: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr ""
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr ""
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr ""
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
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 trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr ""
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr ""
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr ""
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr ""
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr ""
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
-msgstr ""
+msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
-msgstr ""
+msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
-msgstr ""
+msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
-msgstr ""
+msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
-msgstr ""
+msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
-msgstr ""
+msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
-msgstr ""
+msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
-msgstr ""
+msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "طابعة محلية"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "طابعة بعيدة"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr ""
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr ""
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "طابعة شبكة (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr ""
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr ""
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr ""
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "الطابعات المحلية"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "الطابعات البعيدة"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ""
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr ""
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "على خادم CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr ""
@@ -5914,11 +6157,11 @@ msgid ""
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr " CUPS اعدادات"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "الخادم CUPS حدّد"
@@ -5947,7 +6190,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr ""
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -5955,7 +6198,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "عنوان IP لخادم CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "البوابة"
@@ -5963,20 +6206,12 @@ msgstr "البوابة"
msgid "Automatic CUPS configuration"
msgstr "تهيئة CUPS آلية"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr ""
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "أضف طابعة جديدة"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -5989,13 +6224,13 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "طابعة محلية"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6013,11 +6248,11 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "تحقق من الطابعات آليا"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6031,11 +6266,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6045,33 +6280,37 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "تحقق آلي"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr ""
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "تم التحقق من %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6079,12 +6318,12 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr ""
#
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -6092,31 +6331,31 @@ msgstr ""
"لم يتم ايحاد طابعة محلية!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6124,7 +6363,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6132,92 +6371,103 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "رجاء اختر المنفذ الموصلة إليه طابعتك."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr ""
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "إعداد يدوي"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr ""
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
-msgstr ""
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "تركيب طرود ..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "تركيب طرود ..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr ""
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
+msgstr ""
+
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
msgstr ""
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr ""
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -6225,35 +6475,35 @@ msgid ""
"access and any applicable user name, password, and workgroup information."
msgstr ""
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr ""
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr ""
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr ""
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "مجموعة العمل"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6277,7 +6527,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6286,7 +6536,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6294,11 +6544,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -6306,27 +6556,27 @@ msgid ""
"name and password."
msgstr ""
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr ""
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr ""
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr ""
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -6334,56 +6584,52 @@ msgid ""
"hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "اسم مستضيف الطابعة"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr ""
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "الوصف"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "المكان"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr ""
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6398,24 +6644,24 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr ""
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "تم اختيار النّموذج يدويًّا"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "إختيار وحدات الطابعة"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "ما هو نوع الطابعة لديك؟"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6424,17 +6670,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "إعداد OKI WinPrinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6444,11 +6690,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "إعداد Lexmark Inkjet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6456,7 +6702,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6469,7 +6715,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6479,22 +6725,22 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -6503,11 +6749,11 @@ msgstr ""
"هل تريد تعيين هذه الطابعة (\"%s\")\n"
"كطابعة افتراضية؟"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6515,39 +6761,39 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "إطبع"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr ""
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr ""
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6557,21 +6803,21 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "طابعة خام"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -6580,15 +6826,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -6597,49 +6843,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -6649,7 +6895,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -6658,29 +6904,40 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "إغلاق"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "جاري الطباعة/المسح على \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "جاري الطباعة/المسح على \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "جاري الطباعة/المسح على \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "جاري الطباعة على الطابعة \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "إغلاق"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "قائمة خيارات الطابعة"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -6688,36 +6945,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "نقل إعدادات الطابعة"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -6727,51 +6984,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -6779,56 +7036,56 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr ""
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "جاري بدء الشبكة..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr ""
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "لم يتم تحديد وظيفية الشبكة"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -6836,11 +7093,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr ""
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -6850,31 +7107,31 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "مرتفع"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr ""
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -6889,11 +7146,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -6907,63 +7164,63 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr ""
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "أي نظام طباعة تريد أن تستخدم؟"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
-msgstr "إعداد الطابعة \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
+msgstr "جاري إعداد الطابعة \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr ""
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr ""
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "جاري إعداد التطبيقات..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr ""
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -6971,35 +7228,39 @@ msgid ""
"OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
"it."
msgstr ""
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "تغيير نظام الطباعة"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "خروج"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "هل تريد تجربة إعداد طابعة أخرى؟"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "تعديل اعدادات الطابعة"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -7008,103 +7269,103 @@ msgstr ""
"الطابعة %s\n"
"هل تريد تعديل تلك الطابعة؟"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "نوع وصلة الطابعة"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr ""
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr ""
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "اعرف كيف تستخدم هذه الطابعة"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr ""
+msgid "Removing old printer \"%s\"..."
+msgstr "جاري ازالة الطابعة القديمة \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr ""
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr ""
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr ""
+msgid "Removing printer \"%s\"..."
+msgstr "جاري ازالة الطابعة \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -7178,24 +7439,51 @@ msgstr ""
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr ""
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr ""
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr ""
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr ""
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
+#: ../../security/msec.pm_.c:144
+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 ""
+
+#: ../../security/msec.pm_.c:150
+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 ""
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "خيارات متقدمة"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "خيارات"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7238,7 +7526,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7294,7 +7582,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -7351,7 +7639,7 @@ msgid ""
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -7428,7 +7716,7 @@ msgstr "إنترنت"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "نظام"
@@ -7540,6 +7828,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "مركز تحكم Mandrake"
@@ -7562,13 +7851,15 @@ msgstr ""
#: ../../share/advertising/07-server.pl_.c:9
msgid "Server Software"
-msgstr ""
+msgstr "برامج الخادم"
#: ../../share/advertising/07-server.pl_.c:10
msgid ""
"Transform your machine into a powerful server with just a few clicks of the "
"mouse: Web server, email, firewall, router, file and print server, ..."
msgstr ""
+"حوّل ماكينتك إلى خادم قويّ مع/ب فقط نقرات قليلة من ال الفأرة : خادم الويب , "
+"البريد الإلكترونيّ , فيروول , الحفّار , الملفّ و خادم الطّبع ,"
#: ../../share/advertising/08-games.pl_.c:9
msgid "Games"
@@ -7579,10 +7870,12 @@ msgid ""
"Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
"cards, sports, strategy, ..."
msgstr ""
+" يمدّون أفضل لعب بمصادر مفتوحة Mandrake Linux 8.2 - arcade, action, "
+"cards, sports, strategy,...."
#: ../../share/advertising/09-MDKcampus.pl_.c:9
msgid "MandrakeCampus"
-msgstr ""
+msgstr "MandrakeCampus"
#: ../../share/advertising/09-MDKcampus.pl_.c:10
msgid ""
@@ -7593,7 +7886,7 @@ msgstr ""
#: ../../share/advertising/10-MDKexpert.pl_.c:9
msgid "MandrakeExpert"
-msgstr ""
+msgstr "MandrakeExpert"
#: ../../share/advertising/10-MDKexpert.pl_.c:10
msgid ""
@@ -7616,7 +7909,7 @@ msgstr ""
#: ../../share/advertising/12-MDKstore.pl_.c:9
msgid "MandrakeStore"
-msgstr ""
+msgstr "MandrakeStore"
#: ../../share/advertising/12-MDKstore.pl_.c:10
msgid ""
@@ -7632,21 +7925,186 @@ msgstr ""
#: ../../share/advertising/13-Nvert.pl_.c:11
msgid "http://www.mandrakesoft.com/sales/contact"
-msgstr ""
+msgstr "http://www.mandrakesoft.com/sales/contact"
#: ../../standalone.pm_.c:25
msgid "Installing packages..."
-msgstr ""
+msgstr "تركيب طرود ..."
+
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
msgstr ""
+" لا يمكن أن أقرأ جدول فاصلك هو يفسد أيضًا سوف أحاول أن أستمرّ فواصل سيّئة "
+
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "نقل إعدادات الطابعة"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "خادم قواعد بيانات"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "خادم قواعد بيانات"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr " الخادم NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr " الخادم NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "اضف مستخدم"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP العميل"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "مساعدة"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+#, fuzzy
+msgid "No kernel selected!"
+msgstr "لم يتم ايجاد بطاقة تلفاز!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "غير متصل"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "إلغاء"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "تم اختيار الكل"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "اضف مستخدم"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP العميل"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "جاري الإعداد..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "إعداة الإعداد"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "أدخل قرص مرن بالدّاخل %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "آسف , لا مدخل مرن متاح"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
-msgstr ""
+msgstr "خطأ ! "
#: ../../standalone/drakautoinst_.c:46
#, c-format
@@ -7682,6 +8140,10 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -7690,44 +8152,37 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr ""
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "تثبيت آلي"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr ""
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "أزل المادة الأخيرة"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -7735,15 +8190,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -7751,161 +8198,177 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
-" "
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
+" "
+msgstr "ارسال الملفات عن طريق FTP"
+
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr ""
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "رجاء اختر كل المستخدمين الذين تريد تضمينهم في النسخ الإحتياطي."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "ازل المادة المختارة"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "المستخدمون"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "فضلا أدخل اسم المستضيف أو عنوان IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
-msgstr ""
+msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "رجاء أدخل اسم الدخول"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "رجاء كلمة المرور"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "تذكّر كلمة السّرّ هذه "
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "وصلة FTP"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "وصلة آمنة"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "إلى المساعد CD/DVDROM الاستعمال "
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "رجاء اختر مساحة القرص المدمج"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -7913,72 +8376,83 @@ msgstr ""
" من فضلك فحص إذا أردت أن تتضمّن \n"
"ركّب الجدر على قرصك المدمج"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
+msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "الشبكة"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "النوع"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "كلّ ساعة "
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "يوميًّا "
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "أسبوعيّا"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "شهريا"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "استخدم المراقب"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -7986,7 +8460,7 @@ msgstr ""
"فضلا اختر الفترة \n"
"ما بين كل عملية نسخ احتياطي"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -7994,71 +8468,66 @@ msgstr ""
"رجاء اختر\n"
"وسيط النسخ الاحتياطي"
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "FTPاستخدم مع المراقب"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "ماذا "
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "أين"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "متى "
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "خيارات أكثر"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "إعدادات Drakbackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "رجاء اختر أين تريد النسخ الاحتياطي."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "على القرص الصّلب"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "عبر الشّبكة"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "رجاء اختر ما تريد نسخه احتياطياً"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "نظام المساعد"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "مستخدمو المساعد"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "اخترالمستخدم يدويًّا"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -8066,7 +8535,7 @@ msgstr ""
"\n"
"مصادر المساعد :\n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -8074,7 +8543,7 @@ msgstr ""
"\n"
"-ملفّات النّظام :\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -8082,7 +8551,7 @@ msgstr ""
"\n"
"-ملفّات المستخدم:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -8090,7 +8559,7 @@ msgstr ""
"\n"
"-الملفّات الأخرى:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -8099,23 +8568,52 @@ msgstr ""
"\n"
"- احفد القرص الصّلب على الطّريق :%s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "جهاز الفأرة: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"-FTP و على host احفد على : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"-FTP و على host احفد على : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -8123,19 +8621,19 @@ msgstr ""
"\n"
"- خيارات:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackups use tar and bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackups use tar and gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -8144,271 +8642,293 @@ msgstr ""
"\n"
"-Daemon (%s) include :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Network by SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Network by FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Network by FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr ""
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr ""
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
-msgstr ""
+msgstr "اضغط موافق لاستعادة ملفات اخرى"
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
-msgstr ""
+msgstr "قائمة المستخدمين الذين سيتم استعادتهم"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
-msgstr ""
+msgstr "انسخ ملفات النظام قبل:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "رجاء اختر تاريخ الإستعادة"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
+msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
+
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "وصلة FTP"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "وصلة آمنة"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
-msgstr ""
+msgstr "استعد من القرص الصلب"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
-msgstr ""
+msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "اختر وسيط آخر للاستعادة منه"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "وسيط آخر"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "استعد النّظام"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "أعد المستخدمين "
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "استعد آخر"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
-msgstr ""
+msgstr "اختر مسار الإستعادة (بدلاً من / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
-msgstr ""
+msgstr "قم بنسخ احتياطي جديد فبل الإستعادة (فقط للنسخ الإحتياطية المتدرجة)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
-msgstr ""
+msgstr "أزل أدلة المستخدمين قبل الإستعادة"
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
-msgstr ""
+msgstr "استعد كل النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "استعادة مخصصة"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "السابق"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "حفظ"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
-msgstr ""
+msgstr "ابني النسخة الإحتياطية"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "استعادة"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "التالي"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "قائمة الحزم المطلوب تثبيتها"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "رجاء اختر تاريخ الإستعادة..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "رجاء اختر وسيط النسخ الإحتياطي..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "رجاء اختر البيانات المطلوب نسخها احتياطيا..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
+"لم يتم ايجاد ملف تهيئة \n"
+"فضلا اضغط معالج لأو متقدم."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
-msgstr ""
+msgstr "تحت التطوير ... انتظر فضلا"
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
-msgstr ""
+msgstr "انسخ ملفات النظام"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
-msgstr ""
+msgstr "انسخ ملفات المستخدم"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
-msgstr ""
+msgstr "انسخ ملفات أخرى"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
-msgstr ""
+msgstr "اجمالي التقدم"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
-msgstr ""
+msgstr "ارسال الملفات عن طريق FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
-msgstr ""
+msgstr "جاري ارسال الملفات..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
-msgstr ""
+msgstr "قائمة البيانات التي ستضمن في القرص."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "رجاء أدخل سرعة سواقة كتابة الأقراص"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
-msgstr ""
+msgstr "فضلا اختر اسم جهاز كتابة الأقراص (مثال: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
-msgstr ""
+msgstr "فضلا تأكد بأنك تريد تضمين إقلاع التثبيت في قرصك المدمج."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "قم بالنسخ الآن من ملف التهيئة"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "اعرض تهيئة النسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "إعدادات المعالج"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "إعداد متقدم"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
-msgstr ""
+msgstr "قم بالنسخ الإحتياطي الآن"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
-msgstr ""
+msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -8440,7 +8960,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -8449,7 +8969,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -8490,7 +9010,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -8518,12 +9038,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
+" جميع الحقوق محفوظة (C) 2001 MandrakeSoft من دوبون سيباستيان <dupont_s"
+"\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -8539,8 +9066,24 @@ msgid ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
+" هذا البرنامج هو برنامج حر; يمكنك اعادة توزيعة و/أو تعديله\n"
+" تحت بنود رخصة GNU العمومية الشاملة (GPL) كما نُشِرت عن طريق\n"
+" جمعية البرمجيات الحرة; إما اإصدار الثاني من الترخيص أو\n"
+" أي نسخة تالية (حسب اختيارك).\n"
+"\n"
+" هذا البرنامج يُوزَّع على أمل أن يكون مفيدا,\n"
+" لكن دون أي ضمان’; حتى بدون الضمانة المفهومة\n"
+" للإتجار أو المناسبة لغرض معين. انظر\n"
+" رخصة GNU العمومية الشاملة للتفاصيل.\n"
+"\n"
+" يجب أن تكون قد تسلمت نسخة من ترخيص GNU العمومية الشاملة\n"
+" مع البرنامج; في حالة عدم تسلم الرخصة راسل جمعية البرمجيات الحرة على العنوان "
+"التالي\n"
+" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA "
+"02111-1307,\n"
+" USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -8580,7 +9123,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -8591,7 +9134,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -8604,7 +9147,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -8648,99 +9191,526 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "فشل تثبيت %s. ظهر الخطأ التالي:"
-#: ../../standalone/drakfont_.c:229
-msgid "Search installed fonts"
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
msgstr ""
-#: ../../standalone/drakfont_.c:231
-msgid "Unselect fonts installed"
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
msgstr ""
-#: ../../standalone/drakfont_.c:252
-msgid "parse all fonts"
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
msgstr ""
-#: ../../standalone/drakfont_.c:253
-msgid "no fonts found"
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "أدوات سطر الأوامر"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "على القرص الصّلب"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "استشارات Mandrake"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "الفأرة"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "طابعة بعيدة"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "معالج إعداد الشبكة"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "التحقق"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr ""
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "من فضلك انتظر"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "ما بعد ازالة التثبيت"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "استعادة"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت في %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "اعدادات الشبكة (%d موائمات)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "التشكيل:"
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "احذف التشكيل..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "التشكيل المطلوب حذفه:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "تشكيل جديد..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"لإسم التشكيل الذي ستعمله (التشكيل الجديد يتم عمله كنسخة من التشكيل الحالي) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "اسم المستضيف :"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "الدخول الى الإنترنت"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "النوع:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "البوابة:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "الواجهة:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "الحالة:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "الانتظار من فضلك"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "إعداد الدخول الى الإنترنت..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "إعداد LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "المحرك"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "الواجهة"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "البروتوكول"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "الحالة"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "إعداد الشبكة المحلية..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "انقر هنا لتشغيل المعالج ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "المعالج..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "تطبيق"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "متّصل "
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "غير متصل"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "اتصل..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "اقطع الإتصال..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr "تحذير, تم ايجاد اتصال إنترنت آخر, ربما يكون يستخدم شبكتك"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"لم تقم بتهيئة أي واجهات.\n"
+"قم بتهيئتهم أولا عن طريق الضغط على 'تهيئة'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "إعداد LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "المحوّل %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "بروتوكول الإقلاع"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "يتم بدءه عند الإقلاع"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP العميل "
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "قم بالتنشيط الآن"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "قم بإزالة التنشيط الآن"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"لم يتم تهيئة الواجهة بعد.\n"
+"قم بتشغيل معالج التهيئة في النافذة الرئيسية"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"ليست لديك أي اتصالات إنترنت.\n"
+"قم بعمل اتصال أولا باستخدام 'تهيئة'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "إعدادات الإتصال بالإنترنت"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "إعدادات الإتصال بالإنترنت"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "نوع العلاقة"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parameters"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet Card"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP العميل"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "الاستخدام: دريك للاقراص المرنة\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-متنوع-ثابت-وسط-ر-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "اسم الوحدة"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "حجم"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "دريك للاقراص المرنة"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "صنع قرص مرن لبدء النظام"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "المرجع"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "خطأ فى دريك لعمل قرص بدء النظام: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "اصدارة اللب"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "عام"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "منطقة الخبراء"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd الخصائص الاختيارية"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "اضافة وحدة"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "اجبار"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "اذا احتجته"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "SCSI اهمل وحدات ال"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "RAID اهمل وحدات ال"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "ازالة وحدة"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "الناتج"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "جهز القرص"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "تأكد من وجود الوسيط للوحدة %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
msgstr ""
+"لا يوجد وسط أو ربما يكون الوسط محمي من القراءة للجهاز %s.\n"
+"فضلاً ادخل وسط فى الوحدة."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "تعذر تنفيذ: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"غير قادر على غلق mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
+msgid "Search installed fonts"
+msgstr "ابحث في الخطوط المثبتة"
+
+#: ../../standalone/drakfont_.c:234
+msgid "Unselect fonts installed"
+msgstr "أزل اختيار الخطوط المثبتة"
+
+#: ../../standalone/drakfont_.c:258
+msgid "parse all fonts"
+msgstr "تحليل كل الخطوط"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:261
+msgid "no fonts found"
+msgstr "لا توجد خطوط"
+
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "انتهى"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
-msgstr ""
+msgstr "لم أتمكن من ايجاد أي خطوط في تجزئاتك المحملة"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
-msgstr ""
+msgstr "أعد اختيار الخطوط الصحيحة"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
-msgstr ""
+msgstr "لم أتمكن من إيجاد أي خط.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
-msgstr ""
+msgstr "ابحث عن الخطوط في القائمة المثبتة"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
-msgstr ""
+msgstr "نقل الخطوط"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
-msgstr ""
+msgstr "تثبيت خطوط True Type"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
-msgstr ""
+msgstr "رجاء انتظر أثناء عملية ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
-msgstr ""
+msgstr "تم تثبيت خطوط True Type"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
-msgstr ""
+msgstr "تحويل الخطوط"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
-msgstr ""
+msgstr "بناء type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
-msgstr ""
+msgstr "Ghostscript referencing"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
-msgstr ""
+msgstr "تحويل خطوط ttf"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
-msgstr ""
+msgstr "تحويل خطوط pfm"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
-msgstr ""
+msgstr "أبطل الملفات المؤقتة"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
-msgstr ""
+msgstr "أعد تشغيل XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
-msgstr ""
+msgstr "أبطل ملفات الخطوط"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "xfs restart"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -8749,107 +9719,107 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "استيراد الخطوط"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
-msgstr ""
+msgstr "احصل على خطوط Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
-msgstr ""
+msgstr "اخذف الخطوط"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "خيارات متقدمة"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "قائمة الخطوط"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
-msgstr ""
+msgstr "اختر التطبيقات التي ستدعم الخطوط :"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
-msgstr ""
+msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "طابعات عادية (Generic)"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
-msgstr ""
+msgstr "اختر ملف أو دليل الخطوط و اضغط 'اضافة'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
-msgstr ""
+msgstr "ثبّت القائمة"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
-msgstr ""
+msgstr "اضغط هنا إذا كنت متأكدا."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
-msgstr ""
+msgstr "إضغط هنا إذا لم تكن متأكدا."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
-msgstr ""
+msgstr "تم ازالة اختيار الكل"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "تم اختيار الكل"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "ازل القائمة"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "الإختبارات الأولية"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
-msgstr ""
+msgstr "انسخ الخطوط الى نظامك"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
-msgstr ""
+msgstr "ثبّت و حوّل الخطوط"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "ما بعد التثبيت"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
-msgstr ""
+msgstr "أزل الخطوط من النظام"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "ما بعد ازالة التثبيت"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
-msgstr ""
+msgstr "مشاركة الإتصال بالإنترنت"
+
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "آسفون, نحن ندعم اصدارات النواة 2.4"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
-msgstr ""
+msgstr "مشاركة الإتصال بالإنترنت ممكنة حاليا"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -8857,51 +9827,51 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
-msgstr "أعق"
+msgstr "تعطيل"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
-msgstr ""
+msgstr "اهمال"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
-msgstr ""
+msgstr "إعداة الإعداد"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
-msgstr ""
+msgstr "جاري تعطيل الخوادم..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "مشاركة اتصال الإنترنت غير ممكَّنة الآن."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
-msgstr ""
+msgstr "مشاركة الإتصال بالإنترنت"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
-msgstr "ماذا تحبّ أن تعمل"
+msgstr ""
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
-msgstr ""
+msgstr "تمكين"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
-msgstr ""
+msgstr "جاري تمكين الخوادم..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "مشاركة إتصال الإنترنت ممكَّنة الآن."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -8911,31 +9881,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
-msgstr "السّطح البينيّ %s(استعمال مركبة%s)"
+msgstr "الواجهة %s (باستخدام الوحدة %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
-msgstr "السّطح البينيّ %s"
+msgstr "الواجهة %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "لا محوّل الشّبكة على نظامك"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "سطح بينيّ للشبكة "
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -8945,17 +9915,17 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "واجهة الشبكة معدّة مسبقا!"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -8965,15 +9935,15 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "اعداة تهيئة آلية"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "أظهر تهيئة الواجهة الحالية"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -8983,13 +9953,14 @@ msgid ""
"IP attribution: %s\n"
"Driver: %s"
msgstr ""
-"الشّكل الحاليّ من `%s':\n"
-"n/الشّبكة : %s\n"
-"IP address: %s\n"
-"IP attribution: %s\n"
-"Driver: %s"
+"الإعداد الحالي لـ`%s':\n"
+"\n"
+"الشبكة: %s\n"
+"عنوان الـIP: %s\n"
+"صفة الـIP: %s\n"
+"المشغل: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9001,74 +9972,80 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
-msgstr ""
+msgstr "شبكة محلية من الفئة C"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "عنوان IP لخادم DHCP (هذا)"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
-msgstr ""
+msgstr "إعادة إعداد الواجهة و خادم DHCP"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
-msgstr ""
+msgstr "الشبكة المحلية لم تنته بـ`0', جاري الخروج."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
+"تم ايجاد تعارض في عنوان الشبكة المحلية المبدئي في الإعداد الحالي لـ%s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
-msgstr "Firewalling configuration تم اكتشاف "
+msgstr "تم اكتشاف إعداد للجدار الناري!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
+"تحذير! تم إيجاد إعداد جدار ناري موجود مسبقا. ربما تحتاج الى اصلاح يدوي بعد "
+"التثبيت."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
-msgstr ""
+msgstr "جاري الإعداد..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
+msgstr "جاري إعداد النصوص البرمجية و تثبيت البرمجيات و بدء الخدمات..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
-msgstr ""
+msgstr "كانت هناك مشاكل في تثبيت الحزمة %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
+"تم إعداد كل شئ.\n"
+"يمكنك الآن مشاركة اتصال الإنترنت مع الأجهزة الأخرى في شبكتك المحلية باستخدام "
+"إعداد الشبكة الأوتوماتيكي (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
-msgstr ""
+msgstr "تم عمل التنصيب, و لكنه غير ممكَّن الآن"
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
-msgstr ""
+msgstr "تم عمل التنصيب, و هو ممكَّن الآن."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "لم يتم اعداد أي مشاركة اتصال بالإنترنت"
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "إعدادات مشاركة إتصال الإنترنت"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9077,206 +10054,11 @@ msgid ""
"\n"
"Click on Configure to launch the setup wizard."
msgstr ""
-
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr ""
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "النّبذة :"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "نبذة جد يد ة..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Hostname :"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr ""
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "النوع:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "الانتظار من فضلك"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "إعداد LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "المحرك"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "الواجهة"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "الحالة"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "المعالج..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "تطبيق"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "متّصل "
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "غير متصل"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "متصل"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "إعداد LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "المحوّل %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP العميل "
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "إعدادات الإتصال بالإنترنت"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "إعدادات الإتصال بالإنترنت"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "نوع العلاقة"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parameters"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet Card"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP العميل"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr ""
+"أهلا بك في أداة مشاركة الإتصال بالإنترنت!\n"
+"\n"
+"%s\n"
+"\n"
+"اضغط على تهيئة لتشغيل معالج الإعداد."
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
@@ -9284,93 +10066,127 @@ msgstr "مركز التّحكّم "
#: ../../standalone/drakxconf_.c:48
msgid "Choose the tool you want to use"
+msgstr "اختر الأداة التي تريد استخدامها"
+
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "كندة (cable)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "الولايات المتّحدة الأمريكيّة (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
+msgstr "الولايات المتّحدة الأمريكيّة (broadcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "الولايات المتّحدة الأمريكيّة (cable)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "الولايات المتّحدة الأمريكيّة (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "الصين (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
+msgstr "الصين (broadcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "اليابان (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
+msgstr "اليابان (broadcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "اليابان (cable)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "أوروبّا الشّرقيّة"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "فرنسا [سيكام]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "أيرلندا"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "أوروبّا الغربيّة"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "أوستراليا"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "نيوزيلندا "
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "جنوب أفريقيا "
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "الأرجنتين "
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-"من فضلك\n"
-" في معيار تليفزيونك و البلد type"
+"فضلاً,\n"
+"اطبع tv norm الخاص بك و بلدك"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "TV norm :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
-msgstr "Area :"
+msgstr "المنطقة :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
-msgstr ""
+msgstr "ضيط قنوات التلفاز في تقدم ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
-msgstr ""
+msgstr "جاري ضبط قنوات التلفاز"
+
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "كان هناك خطأ أثناء ضبط قنوات التلفاز"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "XawTV غير مثبت!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "نتمنى لك يوماً سعيداً!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "الآن يمكنك تشغيل XawTV (في الواجهة الرسومية!) !\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
-msgstr ""
+msgstr "لم يتم ايجاد بطاقة تلفاز!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -9381,6 +10197,14 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"لم يتم ايجاد بطاقة تلفاز على جهازك. فضلاً تأكد من أن بطاقة الفيديو/التلفاز "
+"المدعومة في لينكس موصولة بشكل صحيح.\n"
+"\n"
+"\n"
+"يمكنك زيارة قاعدة بيانات العتاد المدعوم الخاصة بنا على:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
@@ -9392,27 +10216,29 @@ msgstr "من فضلك اختر تصميم لوحة مفاتيحك"
#: ../../standalone/keyboarddrake_.c:36
msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
+msgstr "هل تريد أن يقوم زر BackSpace بعمل وظيفة زر Delete في سطر الأوامر؟"
#: ../../standalone/livedrake_.c:24
msgid "Change Cd-Rom"
-msgstr "Cd-Romتغيير"
+msgstr "غيّر القرص المدمج"
#: ../../standalone/livedrake_.c:25
msgid ""
"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
+"فضلا أدخل قرص التثبيت في سواقتك و اضغط موافق عندما تنتهي.\n"
+"إذا لم يكن قرص التثبيت لديك اضغط الغاء للإمتناع عن التحديث الحي."
#: ../../standalone/livedrake_.c:35
msgid "Unable to start live upgrade !!!\n"
-msgstr ""
+msgstr "لم أتمكن من بدء الترقية الحية !!!\n"
#: ../../standalone/localedrake_.c:32
msgid "The change is done, but to be effective you must logout"
-msgstr ""
+msgstr "تم عمل التغيير, و لكن ليتم تفعيله يجب عليك الخروج"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -9426,7 +10252,7 @@ msgstr "/ملف/_جديد"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<control>ج"
+msgstr "<تحكم>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
@@ -9434,7 +10260,7 @@ msgstr "/ملف/_فتح"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<control>ف"
+msgstr "<تحكم>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
@@ -9442,11 +10268,11 @@ msgstr "/ملف/_حفظ"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<control>ح"
+msgstr "<تحكم>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/ملف/حفظ با_سم"
+msgstr "/ملف/حفظ _باسم"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -9454,19 +10280,15 @@ msgstr "/ملف/-"
#: ../../standalone/logdrake_.c:108
msgid "/_Options"
-msgstr "/خ_يارات"
+msgstr "/_خيارات"
#: ../../standalone/logdrake_.c:109
msgid "/Options/Test"
-msgstr "/خيارات/احتبار"
-
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_مساعدة"
+msgstr "/خيارات/اختبار"
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/مساعدة/_حول"
+msgstr "/مساعدة/_حول البرنامج..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -9524,7 +10346,7 @@ msgstr "التقويم"
msgid "Content of the file"
msgstr "محتويات الملف"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "تنبية البريد/SMS"
@@ -9533,11 +10355,11 @@ msgstr "تنبية البريد/SMS"
msgid "please wait, parsing file: %s"
msgstr "يرجى الإنتظار, جاري تحليل الملف: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "تهيئة تنبيه البريد/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -9547,62 +10369,93 @@ msgstr ""
"\n"
"هنا سيمكنك الإعداد \n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Domain name"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr " الخادم NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "خادم البريد Postfix, خادم الأخبار Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr " الخادم NIS"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr " الخادم NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "الخدمات"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "الخدمات"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "إعدادات الخدمات"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
-msgstr ""
+msgstr "سوف تستلم تنبيهاً إذا كانت أحد الخدمات المختارة غير عاملة."
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "حمل الإعدادات"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "سوف تستلم تنبيها اذا كان التحميل أعلى من هذه القيمة"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "إعدادات التنبيه"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "أعدّ الطريقة التي سينبهك النظام بها"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "حفظ بإسم.."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
-msgstr ""
+msgstr "فضلاً, اختر نوع الفأرة الخاصة بك."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "no serial_usb found\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
-msgstr ""
+msgstr "محاكاة الزر الثالث؟"
+
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "جاري قراءة بيانات الطابعة ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "جاري التحقق من الأجهزة ..."
#: ../../standalone/scannerdrake_.c:53
#, c-format
@@ -9626,9 +10479,8 @@ msgid ""
msgstr ""
#: ../../standalone/scannerdrake_.c:96
-#, fuzzy
msgid "choose device"
-msgstr "جهاز الإقلاع"
+msgstr "اختر الجهاز "
#: ../../standalone/scannerdrake_.c:102
#, c-format
@@ -9637,6 +10489,8 @@ msgid ""
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
+"الماسح الضوئي %s يجب اعداده عن طريق PrinterDrake.\n"
+"يمكن تشغيل PrinterDrake من مركز التحكم في قسم العتاد."
#: ../../standalone/scannerdrake_.c:107
#, c-format
@@ -9645,6 +10499,21 @@ msgid ""
"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
"applications menu."
msgstr ""
+"تمت تهيئة الماسح الضوئي %s.\n"
+"يمكنك الآن مسح المستندات باستخدام ``XSane'' من فرع وسائط متعددة/برامج رسومية "
+"في قائمة التطبيقات."
+
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
@@ -9661,6 +10530,10 @@ msgid ""
"You already have set up a firewall.\n"
"Click on Configure to change or remove the firewall"
msgstr ""
+"الجدار الناري\n"
+"\n"
+"لقد قمت بإعداد جدار ناري مسبقا.\n"
+"اضغط تهيئة لتغيير أو إزالة الجدار الناري"
#: ../../standalone/tinyfirewall_.c:83
msgid ""
@@ -9668,6 +10541,9 @@ msgid ""
"\n"
"Click on Configure to set up a standard firewall"
msgstr ""
+"الجدار الناري\n"
+"\n"
+"اضغط تهيئة لإعداد جدار ناري قياسي"
#: ../../steps.pm_.c:14
msgid "Choose your language"
@@ -9749,6 +10625,11 @@ msgid ""
"For a powerful dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
+"أداة تهيئة الجدار الناري البسيط\n"
+"\n"
+"هذه الأداة تسمح لك بتهيئة جدار ناري شخصي لنظام Mandrake Linux هذا.\n"
+"إذا كنت تريد جدارا ناريا متخصصا, الق نظرة على\n"
+"توزيعة MandrakeSecurity Firewall."
#: ../../tinyfirewall.pm_.c:14
msgid ""
@@ -9760,6 +10641,13 @@ msgid ""
"it off. You can change this configuration anytime you like by\n"
"re-running this application!"
msgstr ""
+"الآن سنسألك بعض الأسئلة حول أي الخدمات تريد أن تسمح لها\n"
+"بالإتصال بالإنترنت. فضلا فكر بعناية حول هذه\n"
+"الأسئلة لأن أمن كمبيوترك مهم.\n"
+"\n"
+"رجاء, اذا كنت لا تستخدم أياً من هذه الخدمات فاحجبها عن\n"
+"الجدار الناري. يمكنك تغيير التهيئة في أي وقت تريد عن طريق\n"
+"تشغيل هذا البرنامج مرة أخرى!"
#: ../../tinyfirewall.pm_.c:21
msgid ""
@@ -9768,6 +10656,10 @@ msgid ""
"accessed by this machine, you can safely answer NO here.\n"
"\n"
msgstr ""
+"هل تشغّل خادم ويب على هذا الجهاز و تريد كل الإنترنت أن\n"
+"تراه؟ اذا كنت تستخدم خادم ويب تحتاج فقط أن تصل اليه عن طريق\n"
+"هذا الجهاز فيمكنك أن تجيب بـ\"لا\" هنا.\n"
+"\n"
#: ../../tinyfirewall.pm_.c:26
msgid ""
@@ -9776,6 +10668,10 @@ msgid ""
"answer no.\n"
"\n"
msgstr ""
+"هل تشغل خادم أسماء نطاقات هنا؟ إذا لم تكن أعددت واحدا\n"
+"لإعطاء معلومات الـIP و المكان لكل الإنترنت, فضلا أجب\n"
+"بـ\"لا\".\n"
+"\n"
#: ../../tinyfirewall.pm_.c:31
msgid ""
@@ -9785,6 +10681,11 @@ msgid ""
"encrypted -- so some attackers can steal your password if you use\n"
"it. ssh is encrypted and doesn't allow for this eavesdropping."
msgstr ""
+"هل تريد السماح لإتصالات ssh الواردة؟ هذا\n"
+"بديل عن telnet و يمكنك استخدامه للدخول. لإذا كنت تستخدم\n"
+"telnet الآن فيجب عليك حتما بالتبديل الى ssh. Telnet غير\n"
+"مشفر -- مما يسمح للمخترقين بسرقة كلمة المرور إذا كنت تستخدمها.\n"
+"SSH مشفر و لا يسمح بالتلصص."
#: ../../tinyfirewall.pm_.c:36
msgid ""
@@ -9793,6 +10694,10 @@ msgid ""
"strongly recommend answering No here and using ssh in place of\n"
"telnet.\n"
msgstr ""
+"هل تريد السماح لإتصالات Telnet الواردة؟\n"
+"هذا غير آم بشكل مخيف كما شرحنا في الخطوة السابقة. نحن ننصح بقوة\n"
+"بالإجابة ب\"لا\" هنا و استخدام SSH بدلا\n"
+"من Telnet.\n"
#: ../../tinyfirewall.pm_.c:41
msgid ""
@@ -9801,6 +10706,11 @@ msgid ""
"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
"attackers, since FTP also uses no encryption for transferring passwords.\n"
msgstr ""
+"هل تشغل خادم FTP هنا و تريد أن يُسمح للوصل اليه عن طريق\n"
+"الإنترنت؟ إذا كنت كذلك فنحن ننصح بقوة باستخدامه فقط\n"
+"لنقل الملفات عن طريق الدخول اللاإسمي [Anonymous]. أي كلمات مرور مبعوثة\n"
+"عن طريق FTP يمكن سرقتها عن طريق بعض المخترقين بما أن FTP أيضا لا يستخدم "
+"التشفير لنقل كلمات المرور.\n"
#: ../../tinyfirewall.pm_.c:46
msgid ""
@@ -9809,6 +10719,10 @@ msgid ""
"you probably are. Otherwise, you should firewall this off.\n"
"\n"
msgstr ""
+"هل تشغل خادم بريد هنا؟ إذا كنت ترسل الرسائل من خلال \n"
+"pine أو mutt أو أي برنامج بريد يعمل في سطر الأوامر,\n"
+"فالأرجح أنك تفعل ذلك. إذا كان غير ذلك, فسيجب عليك حجب الجدار الناري عن هذا.\n"
+"\n"
#: ../../tinyfirewall.pm_.c:51
msgid ""
@@ -9817,6 +10731,10 @@ msgid ""
"this machine.\n"
"\n"
msgstr ""
+"هل تشغل خدمة POP أو IMAP هنا؟ هذا سوف\n"
+"يستخدم لاستضافة حسابات البريد غير المعتمدة على الإنترنت\n"
+"عبر هذه الماكينة.\n"
+"\n"
#: ../../tinyfirewall.pm_.c:56
msgid ""
@@ -9825,6 +10743,10 @@ msgid ""
"(dynamically assigned), we need to allow for this. Is\n"
"this the case?\n"
msgstr ""
+"يبدو أنك تشغل نواة من الإصدار 2.2. إذا كان عنوان IP الخاص\n"
+"بشبكتك يتم تحديده عن طريق الكمبيوتر في بيتك أو مكتبك \n"
+"(مُعيَّن ديناميكياً), سيجب عليك السماح بهذا. هل\n"
+"هذه هي القضية؟\n"
#: ../../tinyfirewall.pm_.c:61
msgid ""
@@ -9834,6 +10756,11 @@ msgid ""
"of a larger office and haven't heard of this, you probably \n"
"aren't."
msgstr ""
+"هل التوقيت في جهازك متزامن مع جهاز آخر؟\n"
+"غالبا, هذه الطريقة تستخدم في أنظمة يونيكس/لينكس المتوسطة و الكبيرة.\n"
+"لتحديث أوقات الدخول و أشياء أخرى كهذه. إذا لم تكن جزءا من\n"
+"مكتب أكبر (أو شئ من هذا القبيل) أو لم تسمع بهذا من قبل, فالأرجح أن\n"
+"هذا لا يحصل."
#: ../../tinyfirewall.pm_.c:66
msgid ""
@@ -9842,15 +10769,15 @@ msgid ""
"\n"
"\n"
msgstr ""
-"?قد نكتب التّغييرات هذه للقرص. اعد اد كامل \n"
-" \n"
+"اكتملت التهيئة. هل يمكننا كتابة هذه التغييرات الى القرص؟\n"
+"\n"
"\n"
"\n"
#: ../../tinyfirewall.pm_.c:82
-#, fuzzy, c-format
+#, c-format
msgid "Can't open %s: %s\n"
-msgstr "استطع"
+msgstr "لا يمكن أن ينفتح %s: %s\n"
#: ../../tinyfirewall.pm_.c:84
#, c-format
@@ -9904,6 +10831,8 @@ msgid ""
"Failure installing the needed packages : %s and Bastille.\n"
" Try to install them manually."
msgstr ""
+"فشل تثبيت الحزم الضرورية: %s و Bastille.\n"
+" حاول تثبيتهم يدوياً."
#: ../../share/compssUsers:999
msgid "Web/FTP"
@@ -9990,10 +10919,6 @@ msgid "Multimedia - Sound"
msgstr "وسائط متعددة - صوت"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "أدوات خدمية"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "وثائق المساعدة"
@@ -10097,10 +11022,6 @@ msgstr ""
"لتصفح الإنترنت"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "الأرشفة, محاكيات, أدوات مراقبة النظام"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "الميزانية الشخصية"
@@ -10148,122 +11069,193 @@ msgstr "وسائط متعددة - نسخ أقراص"
msgid "Scientific Workstation"
msgstr "محطة عمل علمية"
-#~ msgid "About"
-#~ msgstr "حول"
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "معرف بطاقة الشاشة: %s\n"
-#~ msgid " Help "
-#~ msgstr " مساعدة "
+#~ msgid "Choose options for server"
+#~ msgstr "إختر خيارات الخادم"
-#~ msgid "None"
-#~ msgstr "ولا واحدة"
+#~ msgid "Monitor not configured"
+#~ msgstr "الشاشة غير معدّة"
-#~ msgid "Choose a default printer!"
-#~ msgstr "اختر الطابعة الافتراضية:"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "لم يتم اعداد بطاقة الشاشة حتى الآن"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "يمكنك الآن اعطاء الخيارات للوحدة %s"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "ام يتم اعداد دقة العرض حتى الآن"
-#~ msgid "mount failed"
-#~ msgstr "فشل التحميل"
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "حاول تغيير بعض المعاملات"
+
+#~ msgid "An error occurred:"
+#~ msgstr "ظهر خطأ:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "المغادرة في %d ثوان"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "هل هذا هو الضبط الصحيح؟"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "ظهر خطأ, حاول تغيير بعض الماملات"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "خادم XFree86 :%s"
+
+#~ msgid "Show all"
+#~ msgstr "اظهار الكل"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "جاري تجهيز تهيئة X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "ماذا تريد أن تفعل؟"
+
+#~ msgid "Change Monitor"
+#~ msgstr "تغيير الشاشة"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "تغيير بطاقة الشاشة"
+
+#~ msgid "Change Server options"
+#~ msgstr "تغيير خيارات الخادم"
+
+#~ msgid "Change Resolution"
+#~ msgstr "تغيير دقة العرض"
-#~ msgid "Low"
-#~ msgstr "منخفض"
+#~ msgid "Show information"
+#~ msgstr "اعرض المعلومات"
-#~ msgid "Medium"
-#~ msgstr "متوسط"
+#~ msgid "Test again"
+#~ msgstr "اختبر مرة أخرى"
-#~ msgid "Export"
-#~ msgstr "تصدير"
+#~ msgid "Use FTP with daemon"
+#~ msgstr "FTPاستخدم مع المراقب"
-#~ msgid "click here"
-#~ msgstr "انقر هنا"
+#~ msgid "Package List to Install"
+#~ msgstr "قائمة الحزم المطلوب تثبيتها"
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "تم التخقق من وجود %s, هل تريد اعداده؟"
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "رجاء اختر الطابعة التي تريد تهيئتها."
+#~ msgid "sshd"
+#~ msgstr "sshd"
-#~ msgid "authentification"
-#~ msgstr "المصادقة"
+#~ msgid "webmin"
+#~ msgstr "webmin"
-#~ msgid "user"
-#~ msgstr "المستخدم"
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr "جاري مسح مصادر nfs المشتركة المتوفرة"
+#~ msgid "Setting security level"
+#~ msgstr "جاري ضبط مستوى الأمن"
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr "جاري مسح مصادر nfs المشتركة المتوفرة للخادم %s"
+#~ msgid "Graphics card"
+#~ msgstr "بطاقة الشاشة"
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr "جاري مسح مصادر samba المشتركة المتوفرة"
+#~ msgid "Select a graphics card"
+#~ msgstr "اختر بطاقة شاشة"
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr "جاري مسح مصادر samba المشتركة المتوفرة للخادم %s"
+#~ msgid "Choose a X driver"
+#~ msgstr "إختر مشغل X"
-#~ msgid "\\@quit"
-#~ msgstr "\\@خروج"
+#~ msgid "X driver"
+#~ msgstr "مشغل X"
-#~ msgid "Removable media"
-#~ msgstr "وسائط قابلة للإزالة"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "تحذير: اختبار بطاقة العرض هذه قد يتسب في ايقاف جهازك"
-#~ msgid "Active"
-#~ msgstr "نشط"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard VGA, 640x480 at 60 Hz"
-#~ msgid "No X"
-#~ msgstr "لا X"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 at 56 Hz"
-#~ msgid " Linux "
-#~ msgstr " لينكس "
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-#~ msgid " System "
-#~ msgstr " نظام "
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-#~ msgid " Other "
-#~ msgstr " أخرى "
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-#~ msgid "please choose your CD space"
-#~ msgstr "رجاء اختر مساحة القرص المدمج"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "High Frequency SVGA, 1024x768 at 70 Hz"
-#~ msgid " Tape "
-#~ msgstr " الشريط "
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frequency that can do 1280x1024 at 60 Hz"
-#~ msgid " Cancel "
-#~ msgstr " إلغاء "
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frequency that can do 1280x1024 at 74 Hz"
-#~ msgid " Ok "
-#~ msgstr " موافق "
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frequency that can do 1280x1024 at 76 Hz"
-#~ msgid "close"
-#~ msgstr "إغلاق"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor that can do 1600x1200 at 70 Hz"
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "لم يمكن فتح /etc/sysconfig/autologin للقراءة: %s"
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor that can do 1600x1200 at 76 Hz"
-#~ msgid "New"
-#~ msgstr "جديد"
+#~ msgid "Choose security level"
+#~ msgstr "اختر مستوى الأمن"
-#~ msgid "Remote"
-#~ msgstr "بعيد"
+#~ msgid "hide expert mode"
+#~ msgstr "اخفاء اسلوب المحترف"
+
+#~ msgid "show expert mode"
+#~ msgstr "اظهار اسلوب المحترف"
#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
#~ msgstr ""
-#~ "فضلا اضغط الزر بالأعلى\n"
-#~ "\n"
-#~ "أو استخدم \"جديد\""
+#~ "اذا كان الجهاز '%s' قابلاً للتغيير,\n"
+#~ " تأكد من أن الوسيط داخل الجهاز."
+
+#~ msgid ""
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
+#~ msgstr ""
+#~ "تحذير! هذا سيقوم بتهيئة '%s'.\n"
+#~ "كل البيانات الموجودة على الوسط '%s' سيتم محوها.\n"
+#~ "اذا كنت تريد المتابعة, اضغط موافق. "
+
+#~ msgid "unknown"
+#~ msgstr "غير معروف"
+
+#~ msgid "Select a module or write his name:"
+#~ msgstr "اختار الوحدة أو اكتب اسمها:"
+
+#~ msgid "Category"
+#~ msgstr "صنف"
+
+#~ msgid "preload module"
+#~ msgstr "وحدة ما قبل التحميل"
+
+#~ msgid "click on a category"
+#~ msgstr "اضغط على الصنف"
+
+#~ msgid "Remove"
+#~ msgstr "محو"
+
+#~ msgid "Tool for boot disk creation"
+#~ msgstr "اداة لتجهيز قرص مرن لبدء النظام"
-#~ msgid "Use \"New\""
-#~ msgstr "استخدم \"جديد\""
+#~ msgid "Show expert mode"
+#~ msgstr "اظهار اسلوب المحترف"
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr "اذا لم تتضمن القائمة المدخل المطلوب, قم بإدخاله هنا:"
+#~ msgid "modules"
+#~ msgstr "وحدات"
-#~ msgid "Shared resource"
-#~ msgstr "مصدر مشترك"
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr "صانع القرص لبدء النظام. لم يزل فى مرحلة مبكرة.\n"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index fb71a4b28..502ff3346 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -1,11 +1,13 @@
-# Azerbaijani Turkish translation of DrakX
-# Copyright (C) 1999 MandrakeSof
-# Vasif Ismailoglu MD <azerb_linux@hotmail.com>, 2000
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Copyright (c) 2000 MandrakeSoft
+# Vasif Ismailoglu MD<azerb_linux@hotmail.com> , 2000-2001
+#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-06-09 23:30GMT +0200\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-09-01 22:26GMT +0200\n"
"Last-Translator: Vasif İsmayıloğlu MD <azerb_linux@hotmail.com>\n"
"Language-Team: Azerbaijani Turkish <linuxaz@azerimal.net>\n"
"MIME-Version: 1.0\n"
@@ -13,24 +15,56 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.8\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Bütün başlıqları ayrı ayrı quraşdır"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Xinerama ifadələrini işlət"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Təkcə \"%s\" kartını qur (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+#, fuzzy
+msgid "64 MB or more"
+msgstr "16 MB və ya daha çox"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Bir X vericisi seçin"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X verici"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Çoxlu Başlıq quraşdırılması"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -38,43 +72,44 @@ msgstr ""
"Sizin sisteminiz çoxlu başlıq quraşdırmasını dəstəkləyir.\n"
"Nə etmək istəyirsiniz?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Ekran kartı"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Ekran kartınızın yaddaş böyüklüyünü seçin"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Ekran kartınızı seçin"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree quraşdırılması"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Bir X vericisi seçin"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Necə bir XFree qurğusunu istəyirsiniz?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X verici"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Bütün başlıqları ayrı ayrı quraşdır"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Bir X vericisi seçin"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Xinerama ifadələrini işlət"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X verici"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Təkcə \"%s\" kartını qur (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Necə bir XFree qurğusunu istəyirsiniz?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "3D avadanlıq sür'ətləndirməsi ilə XFree %s"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -86,32 +121,17 @@ msgstr ""
"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
"bir fikir olar."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "3D avadanlıq sür'ətləndirməsi ilə XFree %s"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər.\n"
-"DİQQƏT! BU SINAQ MƏRHƏLƏSINDƏDIR VƏ KOMPÜTERİNİZ DONDURA BILƏR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "SINAQ MƏRHƏLƏSİNDƏKİ 3D sür'ətləndirmə dəstəkli XFree %s"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -125,31 +145,58 @@ msgstr ""
"Sizin kartınıza XFree %s tərəfindən dəstək verilir ve bu 2D üçün daha yaxşı "
"bir seçki olar."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"Sizin kartınızın XFree %s ilə 3D dəstəyi ola bilər.\n"
+"DİQQƏT! BU SINAQ MƏRHƏLƏSINDƏDIR VƏ KOMPÜTERİNİZ DONDURA BILƏR."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree quraşdırılması"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Ekran kartınızın yaddaş böyüklüyünü seçin"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "X verici üçün seçənəkləri göstərin"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Mövcud qurğuları saxlayım?\n"
+"Hal-hazırkı qurğular:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Monitorunuzu seçin"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Xüsusi"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Ümumi"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Geri al"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -167,512 +214,326 @@ msgstr ""
"seçməməyiniz çox vacibdir, əks halda monitor zərər görər.\n"
"Seçərkən bir qərarsızlığa düşərsəniz, alçaq rezolyusiya seçin."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Üfüqi yeniləmə sür'əti"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Şaquli yeniləmə sür'əti"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor qurulmayıb"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Ekran kartı hələ qurulmayıb"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Rezolyusiya hələ seçilməyib"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Qurğuları sınamaq istəyirsiniz?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Diqqət: Bu qrafika kartı ilə ediləcək sınaq təhlükəlidir"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Qurğuların sınağı"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 rəng (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"bə'zi parametrləri dəyişdirin"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 min rəng (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Bir xəta oldu:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 min rəng (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "%d saniyə sonra çıxılacaq"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milyon rəng (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Bu qurğular doğrudur?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milyard rəng (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Bir xəta oldu, parametrləri dəyişdirin"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rezolyusiyalar"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rezolyusiya"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Rezolyusiya və rəng dərinliyini seçin"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Ekran kartı: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 verici: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Daha Çox"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Ləğv et"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Oldu"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Usta Modu"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Hamısını Göstər"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rezolyusiyalar"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Qurğuların sınağı"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klavatura düzülüşü: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Siçan növü: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Siçan avadanlığı: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitorun Şaquli Daraması: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitorun Üfüqi Yeniləməsi: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Ekran kartı: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Ekran kartı: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Ekran kartı yaddaşı: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Rəng dərinliyi: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rezolyusiya: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 verici: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 sürücü: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "X-Window qurğuları hazırlanır"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Nə etmək istəyirsiniz?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Monitoru Dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Ekran kartını dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Verici seçənəklərini dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Rezolyusiyanı Dəyişdir"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mə'lumatı göstər"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Yenidən sına"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Çıx"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Mövcud qurğuları saxlayım?\n"
-"Hal-hazırkı qurğular:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X ilə Açılış"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Kompüterinizi avtomatik olaraq X ilə açılması üçün qura bilərəm.\n"
"Açılışda X Window ilə başlamaq istəyirsiniz?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "\"%s\"a(ə) təkrar girin və dəyişiklikləri fəallaşdırın"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Lütfen çıxın və Ctrl-Alt-BackSpace düymələrinə basın"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 rəng (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 min rəng (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 min rəng (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milyon rəng (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milyard rəng (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB və ya daha çox"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standart VGA, 60 Hz-də 640x480 "
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 56 Hz-də 800x600"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Uyğun, 87 Hz-də titrəşimli 1024x768 (800x600 yox)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 87 Hz-də titrəşimli 1024x768, 56 Hz-də 800x600"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Təkmilləşdirilmiş Super VGA, 60 Hz-də 800x600, 72 Hz-də 640x480"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Titrəşimsiz SVGA, 60 Hz-də 1024x768, 72 Hz-də 800x600"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Yüksək Frekanslı SVGA, 70 Hz-də 1024x768"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Çoxlu Frekansa qadir 60 Hz-də 1280x1024"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Çoxlu Frekansa qadir 74 Hz-də 1280x1024"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Çoxlu Frekansa qadir 76 Hz-də 1280x1024"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "70 Hz də 1600x1200 qadir Monitor"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "76 Hz də 1600x1200 qadir Monitor"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Açılış qisminin ilk sektoru"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Diskin ilk sektoru (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO Qurulumu"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Sistem yükləyicisini haraya qurmaq istəyirsiniz?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grup Qurulumu"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "Mətn menyulu LILO"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "Qrafiki menyulu LILO"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "DOS/Wİndowsdan açıl (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Sistem yükləyicisi ana seçənəkləri"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "İstifadə ediləcək Açılış idarəcisi"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Açılış yükləyici quruluşu"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Açılış avadanlığı"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (köhnə BIOSlarda işləməz)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Bəsit"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "bəsit"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Ekran modu"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Açılışda gecikmə müddəti"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Parol"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Parol (təkrar)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Əmr sətiri seçənəklərini məhdudlaşdır"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "məhdudlaşdır"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "/tmp-i hər açılışda təmizlə"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Ümumi yaddaş miqdarı (%d MB tapıldı)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Birdən artıq profilə icazə ver"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Yaddaş miqdarını Mb cinsindən verin"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"``Əmr sətiri seçənəklərini məhdudlaşdır`` seçənəyi parolsuz bir işə yaramaz"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Parollar uyğun gəlmir"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "İnit İsmarıcı"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Firmware Gecikməsini Aç"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Çəkirdək Açılışı Vaxt Dolması"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "CDdən Açılışı Fəallaşdırım?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "OF Açılışı Fəallaşdırım?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Əsas OS"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -681,83 +542,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Buradakı bir birindən fərqli seçənəklərə yenilərini əlavə edə bilər,\n"
"ya da mövcud olanları dəyişdirə bilərsiniz."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Əlavə et"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Qurtardı"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Təkmilləşdir"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Ne cür bir giriş istəyirsiniz?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linuks"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Digər sistemlər (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Digər sistemlər (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Digər sistemlər (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Əks"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Kök"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Sonuna əlavə et"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Oxu-yaz"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Cədvəl"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "E'tibarsız"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Əsas"
@@ -790,53 +651,75 @@ msgstr "Bir swap sahəsinə ehtiyacınız var"
msgid "This label is already used"
msgstr "Bu etiket istifadə edilməz"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s ara üzü tapıldı"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Başqa var?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Heç %s ara üzü var?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Xeyr"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Bəli"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Avadanlıq mə'lumatına bax"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s kartı (%s) üçün sürücü yüklənir"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, 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 ""
+"İstəsəniz indi %s modulunun parametrlərini göstərə bilərsiniz.\n"
+"Parametrlər``ad=qiymət ad2=qiymət2...'' şəklində olmalıdır.\n"
+"Məsələn ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Modul seçənəkləri:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hansı %s sürücüsü sınansın?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -853,37 +736,15 @@ msgstr ""
"Bə'zən tanımlama kompüterinizi dondura bilər amma donduğu üçün\n"
"kompüterinizə heç bir şey olmaz."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Avtomatik yoxla"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Seçənəkləri göstər"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"İstəsəniz indi %s modulunun parametrlərini göstərə bilərsiniz.\n"
-"Parametrlər``ad=qiymət ad2=qiymət2...'' şəklində olmalıdır.\n"
-"Məsələn ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Modul seçənəkləri:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -892,51 +753,56 @@ msgstr ""
"%s modulunun yüklənməsi iflas etdi.\n"
"Yenidən başqa bir parametr ilə sınamaq istəyirsiniz?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(%s artıq əlavə edilmişdir)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Zəif parol seçdiniz!"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Xahiş edirik bir istifadəçi adı alın"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"İstifadəçi adında sadacə kiçik hərflər, rəqəmlər, `-' və `_' xarakterləri "
"ola bilər"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Bu istifadəçi adı artıq vardır"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Bu istifadəçi adı artıq vardır"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "İstifadəçini əlavə et"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -945,32 +811,32 @@ msgstr ""
"Bir istifadəçi girin\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "İstifadəçini qəbul et"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Həqiqi adı"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "İstifadəçi adı"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Qabıq"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Timsal"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Avtomatik Giriş"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -979,123 +845,103 @@ msgstr ""
"Kompüterinizi avtomatik olaraq bir istifadəçi ilə başlada bilərəm.\n"
"İstəmirsiniz isə rədd edin."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Əsas istifadəçini seçin:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "İstifadə etmək istədiyiniz pəncərə idarəçisini seçin:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Hamısı"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "İstifadəçi əlavə et"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Xüsusi"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "CUPS başlayır"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Ləğv et"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Krakerlərə xoşgəlmişsiniz"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Zəif"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standart"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Yüksək"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Yüksək"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Şübhəci"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1106,7 +952,7 @@ msgstr ""
"işlədiləcək, ancaq xətalara qarşı da həssaiyyəti də artacaqdır. İnternetə \n"
"bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1114,7 +960,7 @@ msgstr ""
"Parollar fəallaşdırıldı, yenə də bir şəbəkə üstündə istifadə edilməməsi "
"tövsiyə edilir."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1123,62 +969,63 @@ msgstr ""
"İnternetə bağlı bir kompüter üçün standart və tövsiyə edilən bir "
"təhlükəsizlik səviyyəsidir."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Bu təhlükəsizlik səviyyəsiylə sistemin bir verici olaraq istifadəsi "
"mümkündür. \n"
"Təhlükəsizlik, birdən çox alıcının bağlanmasına icazə verəcək şəkildə "
"artırılmışdır. "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Biz dördüncü səviyyə haqlarını verdik və sistem xarici bağlantılara qarşı "
"tamamilə qapalıdır.\n"
"Təhlükəsizlik səviyyəsi indi ən üstdədir."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Təhlükəsizlik səviyyəsini seçin"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "X verici üçün seçənəkləri göstərin"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1203,7 +1050,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
@@ -1217,7 +1064,7 @@ msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "%c ve %c duymeleri ile isıqlandırılmıs girisleri sece bilersiniz"
@@ -1232,7 +1079,7 @@ msgstr "%c ve %c duymeleri ile isıqlandırılmıs girisleri sece bilersiniz"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
@@ -1246,7 +1093,7 @@ msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
"acilisdan evvel emrleri duzeltmək ucun 'e', emr setiri ucun ise 'c' basin"
@@ -1261,27 +1108,27 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "/boot içində lazımi yer yoxdur"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Masa Üstü"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Başlama Menyusu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Sistem yükləyicisini haraya qurmaq istəyirsiniz?"
@@ -1294,17 +1141,21 @@ msgstr "hələlik yardım sistemi mövcud deyildir.\n"
msgid "Boot Style Configuration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fayl"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Fayl/Çı_x"
+msgstr "/Fayl/_Çıx"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<control>x"
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1337,14 +1188,14 @@ msgstr "Yaboot modu"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Açılış İdarəçisi olaraq hazırda %s işlədirsiniz.\n"
"Quraşdırma sehirbazını başlatmaq üçün tıqlayın."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Qur"
@@ -1354,7 +1205,7 @@ msgid "System mode"
msgstr "Sistem modu"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Açılışda X-Window sistemini başlat"
#: ../../bootlook.pm_.c:148
@@ -1366,14 +1217,16 @@ msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Bəli, bu istifadəçi üçün avtomatik giriş istəyirəm (istifadəçi, masa üstü)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Oldu"
@@ -1422,7 +1275,7 @@ msgstr "Artıq bölmə əlavə edilə bilməz"
msgid "Screenshots will be available after install in %s"
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
#, fuzzy
msgid "France"
msgstr "Fransızca"
@@ -1431,7 +1284,7 @@ msgstr "Fransızca"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belçika dili"
@@ -1460,11 +1313,12 @@ msgstr "Norveçcə"
msgid "Sweden"
msgstr "İsveçcə"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "İtalyanca"
@@ -1474,7 +1328,7 @@ msgstr "İtalyanca"
msgid "Austria"
msgstr "serial"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1482,8 +1336,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Əvvəlcə datanızın yedəyini alın"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Diqqətlə Oxuyun!"
@@ -1496,11 +1350,12 @@ msgstr ""
"Aboot istifadə etməyi istəyirsinizsə, boş disk sahəsi (2048 sektor bəsdir.)\n"
"buraxmayı unutmayın."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Xəta"
@@ -1508,11 +1363,11 @@ msgstr "Xəta"
msgid "Wizard"
msgstr "Sehirbaz"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Monitorunuzu seçin"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1525,78 +1380,78 @@ msgstr ""
"tövsiyə edirik. Əvvəlcə bölmənin üstünə, sonra \"Böyüklüyü\n"
"Dəyişdir\" düyməsinə tıqlayın"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Ətraflı"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "bağlama iflas etdi"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Boş"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Digər"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Fayl sistemi növü:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Yarat"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Növ"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Yerinə ``%s'' işlət"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Sil"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Əvvəlcə ``Ayır'-ı işlət"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1604,106 +1459,111 @@ msgstr ""
"%s bölməsinin növünü dəyişdirdikdən sonra, bu bölmədəki bütün mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Monitorunuzu seçin"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Yeni bölmə yarat"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Usta moduna keç"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Normal moda keç"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Geri al"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Davam edilsin?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Qeyd etmədən Çıx"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Bölmə cədvəlini qeyd etmədən çıxırsınız?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Avtomatik ayır"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Hamısını təmizlə"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Daha Çox"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Sabit disk seçkisi"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Bütün birinci bölmələr istifadədədir"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Artıq bölmə əlavə edilə bilməz"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "Artıq bölmə yaratmaq üçün, bir bölməni silib məntiqi bölmə yaradın"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Bölmə cədvəlini yaz"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Taxılıb sökülə bilən avadanlıqların avtomatik bağlanması"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Fayl seç"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1711,11 +1571,11 @@ msgstr ""
"Yedək bölmə cədvəli eyni böyüklüyə sahib deyil\n"
"Davam etmək istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Xəbərdarlıq"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1723,124 +1583,131 @@ msgstr ""
"Disket sürücüyə bir disket yerləşdirin\n"
"Bu disketdəki bütün mə'lumatlar yox olacaqdır"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Bölmə cədvəli qurtarılmağa cəhd edilir"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Mə'lumatı göstər"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Bağlama nöqtəsi"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Seçənəklər"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Böyüklüyünü Dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Daşı"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Şəkilləndir"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Bağla"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "RAIDə əlavə et"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "LVMə əlavə et"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ayır"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "RAIDdən ayır"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "LVMdən ayır"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "RAIDi dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Loopback üçün istifadə et"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Yeni bölmə yarat"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Başlanğıç sektoru: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "MB cinsindən böyüklük: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Fayl sistemi növü: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Bağlama nöqtəsi: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Xüsusiyyətlər: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Bölmə növünü Dəyişdir"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Hansı dili istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "%s loopback avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "%s avadanlığını haraya bağlamaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1849,132 +1716,139 @@ msgstr ""
"nöqtəsindən ayrıla bilinmir.\n"
"Əvvəlcə loopback-ı ləğv edin."
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Fat fayl sistemi ucları hesaplanır"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Böyüklüyü dəyişdirilir"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Hansı bölmə növünü istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Bu bölmədəki bütün mə'lumatlar yedəklənməlidir"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsi böyüklüyü dəyişdirildirkdən sonra bu bölmədəki bütün mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Yeni böyüklük seçin"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "MB cinsindən böyüklük: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Hansı diskə daşımaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Hansı sektora daşımaq istəyirsiniz?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Daşınır"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Bölmə daşınır..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Əlavə etmək üçün mövcud bir RAID seçin"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "yeni"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Əlavə etmək üçün mövcud bir LVM seçin"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM adı?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Bu disk bölməsi loopback üçün işlədilməz"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Loopback fayl adı: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Həqiqi adı"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Fayl başqa bir loopback tərəfindən istifadədədir, başqa\n"
"birini seçin"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Fayl onsuz da vardır. İşlədilsin?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Modul seçənəkləri:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "avadanlıq"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "səviyyə"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "parça böyüklüyü"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Diqqətlı olun: bu əməliyyat təhlükəlidir."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Nəcə bölməlandirmə istəyirsən?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Bu paket yenilənməlidir\n"
+"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1986,7 +1860,7 @@ msgstr ""
"ehtiyacınız yoxdur və ya LILO istifadəsini sınayarsınız, ancaq LILO işləməyə "
"bilər."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1998,7 +1872,7 @@ msgstr ""
"istəyirsinizsə, \n"
"/boot bölməsini əlavə edərkən çox diqqətli olmalısınız."
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -2009,132 +1883,132 @@ msgstr ""
"Əgər lilo ya da grub istifadə etmək istəyirsinizsə, bir /boot bölməsi\n"
"əlavə etməyi unutmayın"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s sürücüsünün bölmə cədvəli diskə yazılacaq!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Yeni qurğuların fəallaşmağı üçün sistemi yenidən başlatmalısınız"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"%s bölməsi şəkilləndirildikdən sonra bu bölmədəki bütün mə'lumatlar "
"silinəcəkdir"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Şəkilləndirilir"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Şəkilləndirilən bölmə: %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid iflas etdi"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Rezolyusiya: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Avadanlıq: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS sürücü hərfi: %s (sadəcə təxmini)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Növ: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Ad: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Başlanğıc: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Böyüklüyü: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d -dən silindr %d-yə\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Şəkilləndirilmiş\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Şəkilləndirilməmiş\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Bağlı\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2143,7 +2017,7 @@ msgstr ""
"Loopback faylı:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2151,27 +2025,27 @@ msgstr ""
"Ana açılma bölməsi\n"
" (MS-DOS açılışı üçün)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Səviyyə %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Parça böyüklüyü %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskləri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback faylı adı: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2182,7 +2056,7 @@ msgstr ""
"Bəlkə də bu bir Sürücü bölməsidir.\n"
"Onda bunu ele beləcə buraxın.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2193,64 +2067,64 @@ msgstr ""
"Bu, ikili açılış üçün xüsusi\n"
"Bootstrap-dır.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Böyüklük: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometriyası: %s silindr, %s baş, %s sektor\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Mə'lumat: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskləri %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Bölmə cədvəli növü: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "%d data yolunda, %d nö'li\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Seçənəklər: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Fayl sistemi növü: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Bu parol çox sadədir (en az %d xarakter boyunda olmalıdır)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Parollar uyğun gəlmir"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2261,36 +2135,66 @@ msgstr "Bölmə növünü Dəyişdir"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Tanıtma"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "İnternet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "İstifadəçi adı"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "İstifadəçi adı"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS sahəsi"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS verici"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s şəkilləndirilməsində %s bölmə xətası"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s'i necə şəkilləndirəcəyimi bilmirəm (Növ: %s)"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ayrılırkən xəta oldu: %s"
@@ -2307,69 +2211,323 @@ msgstr ""
msgid "server"
msgstr "verici"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "16MB dən kiçik disk bölmələrində JFS istifadə etməlisiniz"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB dən kiçik disk bölmələrində ReiserFS istifadə etməlisiniz"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Bağlama nöqtələri / ilə başlamalıdır"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Onsuz da bağlama nöqtəsi %s olan bir bölmə var\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "%s üçün LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Bu qovluq kök fayl sistemi içərisində olmalıdır"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Bu bağlama nöqtəsi üçün həqiqi bir fayl sisteminə (ext2, reisrfs)\n"
"ehtiyac vardır.\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "%s üçün LVM Məntiqi Cildini istifadə edə bilməzsiniz"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "Avtomatik yerləşdirmə üçün boş sahə yoxdur"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Yazmaq üçün açılan %s'də xəta: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"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 ""
"Bir xəta oldu. Yeni fayl sisteminin yaradılacağı hökmlü bir sürücü "
"tapılmadı. Bu problemin qaynağı üçün avadanlığınızı yoxlayın"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Heç disk bölməniz yoxdur!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Avtomatik təsbit işlət"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Ümumi"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Kart mem (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "Şəkilləndirilir"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Bölmə növünü Dəyişdir"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Çıx"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Kömək"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Kömək"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Kömək/_Haqqında..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Siçan"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Kart mem (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Ləğv et"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Siçan"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "İzah"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Tanıtma"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Fayl seç"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Keçit avadanlığı"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 düyməli"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Sabit disk seçkisi"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Avadanlıq mə'lumatına bax"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Mə'lumatı göstər"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Siçan qurğuları"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "%s qapısında tapıldı"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Xahiş edirik gözləyin"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d saniyə sonra çıxılacaq"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "CUPS sürücü datası oxunur..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Avtomatik yoxla"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2383,7 +2541,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2488,9 +2646,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2681,7 +2838,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2693,9 +2850,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2742,21 +2898,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2772,9 +2927,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Bu nöqtədə Linuks Mandrakeni sabit diskinizdə haraya quracağınıza\n"
"qərar verəcəksiniz. Əgər diskiniz boş isə və ya bir başqa sistem\n"
@@ -2843,9 +2998,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2991,38 +3145,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3196,11 +3344,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3253,7 +3401,7 @@ msgstr ""
" çıxa bilmək çox zəhmətli olur. Ona görə də nə etdiyinizi bilirsəniz, bu "
"sinifi seçin."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3268,7 +3416,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3283,7 +3431,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3299,7 +3447,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3308,23 +3456,23 @@ msgstr ""
"Xahiş edirik doğru qapını seçin. Məsələn, MS Windowsdakı COM1'in qarşılığı\n"
"Linuksda ttyS0'dır."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3346,7 +3494,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3368,7 +3516,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3376,7 +3524,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3397,7 +3545,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3419,7 +3567,7 @@ msgstr ""
"bilərlər.\n"
"Parametrlər mövzusunda diqqətli olun."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3431,29 +3579,28 @@ msgstr ""
"\n"
"Nə etdiyinizi bilmirsinizsə, \"Diskin ilk sektoru (MBR)\" seçin."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3462,7 +3609,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3488,7 +3635,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX PCI SCSI adapterleri axtarmağa cəhd edəcək. Əgə DrakX SCSI\n"
@@ -3517,7 +3664,7 @@ msgstr ""
"ya da Microsoft Windowsdan (Əgər sisteminizdə qurulu isə)\n"
"mə'lumat alın."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -3528,9 +3675,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3542,7 +3688,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3632,7 +3778,7 @@ msgstr ""
"TAB ilə açılış seçkilərinə baxdığınız vaxt \n"
"'*' işarətilə işıqlandırılacaqdır."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -3660,9 +3806,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3710,10 +3855,10 @@ msgstr ""
" - Ana OS: OF gecikməsi müddəti dolduğu vaxt hansı OSnin açılacağını "
"göstərir."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3721,12 +3866,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3742,7 +3886,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3753,7 +3897,7 @@ msgstr ""
"Diqqətli olun, sürücüdəki bütün mə'lumatlar silinəcək\n"
"və geri gəlməyəcək."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3773,7 +3917,7 @@ msgstr ""
"Bölmədəki mə'lumatları qoruyaraq \"Ləğv et\" düyməsinə\n"
"əməliyyatı ləğv edə bilərsiniz."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3781,12 +3925,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3810,20 +3954,20 @@ msgstr ""
"\n"
"Bu vericiləri qurmaq istəyirsiniz?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "NİS domeyni olmadan translasiya işlədilə bilməz"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "%s sürücüsünə FAT şəkilləndirilmiş bir disket taxın"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Bu floppi FAT şəklində deyildir"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3831,7 +3975,7 @@ msgstr ""
"Bu saxlanmış paketlər seçkisini işlətmək üçün qurulumu ``linux "
"defcfg=floppy''ilə başladın."
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "%s faylı oxunurkan xəta oldu"
@@ -3863,67 +4007,67 @@ msgstr "Bir swap sahəsinə ehtiyacınız var"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"Bir swap sahəniz yoxdur\n"
"Davam edim?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Bir swap sahəsinə ehtiyacınız var"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Boş sahəni istifadə et"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Yeni bölmələr üçün boş sahə yoxdur"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Var olan bölmələri işlədimmi"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Bölmə cədvəli qurtarılmağa çalışılır"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Loopback üçün Windows bölməsini işlət"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Linuks4Win'i qurmaq üçün hansı disk bölməsini istifadə edəcəksiniz?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Böyüklüklərini seçin"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Kök (root) bölməsi böyüklüyü (Mb): "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Swap sahəsi böyüklüyü (Mb): "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Windows bölməsindəki boş sahəni işlət"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Hansı bölmənin böyüklüyünü dəyişdirəcəksiniz?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Fat fayl sistemi ucları hesaplanır"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3932,13 +4076,16 @@ msgstr ""
"FAT tədqiqatçımız sizin bölümləri işlədə bilmir,\n"
"bu xəta oldu: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Sizin Windows bölümü çox dağınıqdır. Daxiş edirik, əvvəlcə birləşdirin "
"(defraq)"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3958,56 +4105,56 @@ msgstr ""
"Ardından quruluma \n"
"davam edin. Verilərinizin yedəyini almağı da unutmayın!"
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Hansı sektora daşımaq istəyirsiniz?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "bölmə %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT böyüklüyü dəyişdirilməsi bacarılmadı: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr "FAT bölməsi yoxdur ya da loopback üçün lazımi yer buraxılmayıb"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Bütün diski sil"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "\"Windows\"u sil"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Sizin birdən çox diskiniz var, linux qurmaq üçün hansını istifadə "
"edəcəksiniz?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"%s bölüməsinin böyüklüyü dəyişdirildikdən sonra bu bölmədəki bütün "
"mə'lumatlar silinəcəkdir"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Hazırkı disk bölmələndirməsi"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Fdisk istifadə et"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4016,11 +4163,11 @@ msgstr ""
"İndi %s sabit diskinizi bölmələndirə bilərsiniz\n"
"İşinizi bitirdiyinizdə `w' ilə qeyd etməyi unutmayın"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Heç Windows disk bölməniz yoxdur!"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Artıq bölmə əlavə edilə bilməz"
@@ -4028,16 +4175,16 @@ msgstr "Artıq bölmə əlavə edilə bilməz"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX bölmə sehirbazı bu yolu tapdı:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Bölmə cədvəli növü: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Şəbəkə fəallaşdırılır"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Şəbəkə dayandırılır"
@@ -4049,12 +4196,12 @@ msgstr ""
"Bir xəta oldu, fəqət necə düzəldiləcəyini bilmirəm.\n"
"Davam edin, riski sizə aitdir!"
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "%s bağlama nöqtəsini çoxalt"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4066,12 +4213,12 @@ msgstr ""
"Əvvəldən Linuks qurulu bir sistemdə \"rpm -qpl Mandrake/RPMS/*.rpm\"'yi\n"
"istifadə edərək Cd-Rom'u yoxlayın.\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "%s Sisteminə Xoşgəlmişsiniz"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Disket sürücü yoxdur"
@@ -4081,9 +4228,9 @@ msgstr "Disket sürücü yoxdur"
msgid "Entering step `%s'\n"
msgstr "Başlanğıc addımı `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4094,198 +4241,156 @@ msgstr ""
"dəCDROMdan başlatdığınız zaman,\n"
" 'F1'ə basın və 'text' yazaraq enter'ə basın."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Qurulum Sinifi"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Xahiş edirik aşağıdakı qurulum siniflərindən birisini seçiniz:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Seçdiyiniz paket qruplarının ümumi böyüklüyü təximən %d MBdır.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Bu böyüklükdən daha azını yükləmək istəsəniz,\n"
-"qurmaq istədiyiniz paket faizini seçin.\n"
-"100%%'i seçərsəniz bütün paketlər qurulacaqdır."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Sabit diskinizdə bu paketlərin sadəcə olaraq %d%%'sini quracaq qədər yer "
-"var.\n"
-"Bundan daha azını qurmaq istəsəniz,\n"
-"daha az bir faiz sadəcə ən vacib paketləri ;\n"
-"%d%% isə qurula biləcək bütün paketləri quracaqdır."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Sonrakı addımda daha geniş bir seçki qabağınıza gələcəkdir."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Qurulacaq paketlərin faizi"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Fərdi paket seçkisi"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ümumi böyüklük: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Xətalı paket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Ad: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Buraxılış: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Böyüklüyü: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Əhəmiyyət: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Bu paketi seçə bilməzsiniz, çünki qurmaq üçün yer çatmır."
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Aşağıdakı paketlər qurulacaqdır"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Aşağıdakı paketlər sistemdən silinəcəklər"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Bu paketi seçə bilməzsiniz/sistemdən çıxarda bilməzsınız"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Bu lazımlı bir paketdir, sistemdən çıxardıla bilməz"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuşdur."
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Bu paket yenilənməlidir\n"
"Sistemdən çıxarmaq mövzusunda ciddisiniz?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Bu paketi sistemdən çıxarda bilməzsiniz. Yenilənməlidir"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Avtomatik seçili paketləri göstər"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Qurulum"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Disketə qeyd et"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Paket seçkilərini saxla"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Qurulumdan çıx"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Qurmaq istədiyiniz paketləri seçin"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Qurulur"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Təxmini olaraq hesaplanır"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Qalan müddət"
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paket"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "%s paketi qurulur"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Qəbul Et"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Rədd Et"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4299,17 +4404,17 @@ msgstr ""
"\"%s\" adlı Cd-Romu sürücünüzə taxın və OLDU'ya basın.\n"
"Əgər Cd-Rom əlinizdə deyilsə bu Cd-Rom'dan qurmamaq üçün İMTİNA ET'ə basın."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Yenə də davam edək?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Paketləri istərkən bir xəta oldu:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Paketlər qurulurkən bir xəta oldu:"
@@ -4382,11 +4487,11 @@ msgstr "Bir xəta oldu"
msgid "Do you really want to leave the installation?"
msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Lisenziya sözləşməsi"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4401,7 +4506,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4519,7 +4624,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4624,113 +4729,117 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klaviatura"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Bütün mövcud klaviaturaların siyahısı"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Hansı qurulum sinifini istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Qurulum/Güncəlləmə"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Bu bir qurulum mu, yoxsa güncəlləməmidir?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Tövsiyə edilən"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Usta"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Güncəlləmə"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Paket seçkilərini saxla"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Siçan Qapısı"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Siçanınızın bağlı olduğu serial Qapıyı seçin."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Düymə emulyasiyası"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Düymə 2 emulyasiyası"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Düymə 3 emulyasiyası"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA kartlar qurulur..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "IDE qapıları qurulur"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "uyğun bölmə tapılmadı"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Bağlama nöqtələri üçün bölmələr daranır"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Bağlama nöqtələrini seçin"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"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 loose all the partitions?\n"
@@ -4744,7 +4853,7 @@ msgstr ""
"\n"
"Bütün bölmələri itirmək istəyirsiniz?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4752,139 +4861,142 @@ msgstr ""
"DiskDrake bölmə cədvəlini oxumağı bacara bilmədi.\n"
"Özünüz davam edə bilərsiniz."
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Kök (root) Bölməsi"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Sisteminizin kök (/) bölməsi hansıdır?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Bölmə cəvəlindəki dəyişikliklərin daxil olması üçün kompüterinizi yenidən "
"başlatmalısınız."
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Xətalı bloklar sınansınmı?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Bölmələr şəkilləndirilir"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "%s faylı yaradılır və şəkilləndirilir"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Qurulumu bitirmək üçün lazımi sahə yoxdur, xahiş edirik əlavə edin"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Mövcud olan paketlər axtarılır."
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Mövcud olan paketlər axtarılır."
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Güncəllənəcək paketlar tapılır"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Bu paketi sistemdən çıxarda bilməzsınız. Artıq qurulmuşdur."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Sisteminizdə qurulum ya da güncəlləmə üçün lazımi boş yer yoxdur(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Hamısı (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Ən az (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Tövsiyə edilən (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Disketdən geri çağır"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Disketdən geri çağır"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Disketə qeyd et"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Seçili böyüklük var olandan daha böyükdür"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4895,16 +5007,16 @@ msgstr ""
"CD'lərdən bə'ziləi əksik isə, onları seçili vəziyyətdən çıxardıb OLDU'ya "
"basın."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" adlı Cd-Rom"
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Qurulum hazırlanır"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4913,23 +5025,23 @@ msgstr ""
"%s paketi qurulur\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Qurulum sonrası qurğular"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4997,166 +5109,197 @@ msgstr ""
"USA\n"
"ünvanına yazınız."
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Əks ünvanına bağlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Əks ünvanına bağlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Sisteminiz hansı məqsədlə istifadə ediləcək?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Avadanlıq saatınız GMT-yə göra quruludur mu?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "NIS Verici"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Çap Edicisiz"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Başqa var?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Mündəricat"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Siçan"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Vaxt Dilimi"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN kartı"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Səs kartı"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV kartı"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "NIS istifadə et"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "\"Windows\"u sil"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Yerli Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root parolunu qur"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Parolsuz"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Bu parol çox sadədir (en az %d xarakter boyunda olmalıdır)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Tanıtma"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "Verici"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS sahəsi"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Tanıtma"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS sahəsi"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NIS Verici"
+
+#: ../../install_steps_interactive.pm_.c:1142
+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"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5187,19 +5330,19 @@ msgstr ""
"yerləşdirin\n"
"və \"OLDU\" basın."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "İlk disket sürücü"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "İkinci disket sürücü"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Nəzərə Alma"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5229,7 +5372,7 @@ msgstr ""
"və \"OLDU\" basın.\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5238,28 +5381,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Bağışlayın, disket sürücü yoxdur"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Açılış disketi yaratmaq üçün istifadə ediləcək disket sürücüyü seçin"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Açılış disketi yaradılır"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Açılış yükləyici hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5267,11 +5410,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5279,16 +5422,16 @@ msgstr ""
"aboot qurulumunda xata, \n"
"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Sistem yükləyicini qur"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Açılış yükləyicisi qurulumu iflas etdi. Xəta:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5305,18 +5448,17 @@ msgstr ""
" Sonra da bunları yazın: shut-down\n"
"Bir sonrakı başlanğıcda açılış yükləyicisi sətirini görməlisiniz."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s sürücüsünə boş bir disket yerləşdirin"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5326,8 +5468,8 @@ msgstr ""
"\n"
"Həqiqətən də çıxmaq istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1337
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1332
+#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5338,7 +5480,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5352,11 +5494,15 @@ msgstr ""
"Sisteminizin qurğuları haqqında daha geniş bilgiyi Linuks Mandrake \n"
"İstifadəçi Kitabcığında tapa bilərsiniz."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Avtomatik qurulum disketi hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5370,15 +5516,15 @@ msgstr ""
"\n"
"Bu qurulumu takrar etmək istəyə bilərsiniz axı.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Avtomatlaşdırılmış"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Təkrarla"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Paket seçkilərini saxla"
@@ -5406,421 +5552,405 @@ msgstr ""
msgid "Choose a file"
msgstr "Monitorunuzu seçin"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Ətraflı"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Xahiş edirik gözləyin"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Mə'lumat"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Ağacı Aç"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Ağacı Qapat"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Otaq və grup sıralaması arasında gəz"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Xətalı tərcih, təkrar sınayın\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Seçkiniz? (əsas %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Seçkiniz? (əsas %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Seçənəklər: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Seçkiniz? (əsas %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Çex dili (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Almanca"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "İspanca"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Fincə"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Fransızca"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norveçcə"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polyakca"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rusca"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "İsveçcə"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "İngiliz (UK) klaviaturası"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Amerikan (US) klaviaturası"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Ermenicə (köhnə) "
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Ermenicə (yazı maşını)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Ermenicə (fonetik)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azərbaycanca (latın)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belçika dili"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Ermenicə (fonetik)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Bulqarca"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilya dili (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Belarusca"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "İsveçcə (Alman sırası)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "İsveçcə (Fransız sırası)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Çex dili (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Almanca (ölü düymələr olmasın)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danimarka dili"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norveçcə)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoniya dili"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gürcü dili (\"Rus\" sırası)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gürcü dili (\"Latın\" sırası)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Yunanca"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Macarca"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Xırvatca"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "İsrail"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "İsrail (Fonetik)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "İzlandiya dili"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "İtalyanca"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Yaponca 106 düyməli"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Koreya klaviaturası"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latın Amerika dili"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litvaniya dili AZERTY (köhnə)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litvanya dili AZERTY (yeni)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanya dili \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanya dili \"Fonetik\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Yeri"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedoniya dili"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollandiya dili"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polyakca (QWERTY sırası)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polyakca (QWERTZ sırası)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portuqalca"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Fransızca (Kanada/Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovencə"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakca (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakca (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azərbaycanca (kiril)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Cədvəl"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Türkcə (ənənəvi \"F\" klaviatura)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Türkcə (müasir \"Q\" klaviatura)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrayna dili"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Amerikan (US) klaviaturası (beynəlmiləl)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vyetnam dili \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Yugoslavca (latın/kiril)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5833,7 +5963,31 @@ msgstr "Dairəvi bağlama %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Məntiqi ciltləri birinci olaraq sil\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Telefon nömrəsi"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Bölmə şəkilləndirilməsi"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5874,10 +6028,6 @@ msgstr "1 düymə"
msgid "Generic 2 Button Mouse"
msgstr "Sıravi 2 Düyməli Siçan"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Ümumi"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Çərx"
@@ -5942,38 +6092,54 @@ msgstr "heç biri"
msgid "No mouse"
msgstr "Siçansızs"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Siçanınızı işə salmaq üçün,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "TƏKƏRİ OYNADIN!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Qurtar"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Sonrakı ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Əvvəlki"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Doğrudur?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Mə'lumat"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Ağacı Aç"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Ağacı Qapat"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Otaq və grup sıralaması arasında gəz"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "İnternetə bağlan"
@@ -6020,7 +6186,7 @@ msgstr ""
"Sisteminizdə heç bir eternet şəbəkə adapteri tapıla bilmədi.\n"
"Bu bağlantı şəklini qura bilmərəm."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Şəbəkə ara üzünü seçin"
@@ -6033,7 +6199,7 @@ msgstr "İnternetə bağlanmaq üçün şəbəkə adapteri seçin."
msgid "no network card found"
msgstr "şəbəkə kartı tapılmadı"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Şəbəkə Qurğuları"
@@ -6048,15 +6214,15 @@ msgstr ""
"Məsələn``kompüteradı.sahəadı.com''.\n"
"Əgə şəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Ev sahibi adı"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Şəbəkə Quraşdırılması Sehirbazı"
@@ -6104,7 +6270,7 @@ msgstr "ISDN quraşdırılması"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"İnternet xidmət vericinizi seçin.\n"
"Siyahıda deyilsə Siyahıda deyil'i seçin."
@@ -6127,14 +6293,14 @@ msgstr "Bütün dünya"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Bütün dünya \n"
" D-Channel'lə xaric (kiralıq xətlər)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Hansı protokolu istifadə etmək istəyirsiniz?"
#: ../../network/isdn.pm_.c:199
@@ -6158,7 +6324,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"ISA kartınız var isə sonrakı ekrandakı qiymətlər doğru olmalıdır.\n"
@@ -6174,13 +6341,13 @@ msgid "Continue"
msgstr "Davam et"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Hansısı sizin ISDN kartınızdır?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"ISDN PCI kart tapdım, amma növünü bilmirəm. Xahiş edirik sonrakı ekrandakı "
"kartlardan birini seçin."
@@ -6197,47 +6364,47 @@ msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
msgid "Dialup options"
msgstr "Çevirməli şəbəkə seçənəkləri"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Bağlantı adı"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefon nömrəsi"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Giriş adı"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr ""
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skript əsaslı"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal əsaslı"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Sahə(domain) adı"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Birinci DNS Vericisi (arzuya görə)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "İkinci DNS Vericisi (arzuya görə)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6246,7 +6413,7 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6254,11 +6421,11 @@ msgstr ""
"\n"
"Bağlantınızı yenidən quraşdıra bilərsiniz."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Artıq İnternetə bağlısınız."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6266,28 +6433,28 @@ msgstr ""
"\n"
"İstəsəniz İnternetə bağlana bilərsiniz ya da yeniden quraşdıra bilərsiniz."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Hələ İnternetə bağlı deyilsiniz."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Bağlan"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Bağlantını kəs"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Şəbəkəni qur"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "İnternet bağlantısı & quraşdırılması"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
@@ -6295,7 +6462,7 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -6310,12 +6477,12 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6326,9 +6493,9 @@ msgstr ""
"Şəbəkə/İnternet bağlantınızı yenidən quraşdırmaq üçün Oldu'ya yoxsa Ləğv "
"et'ə basın.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6338,93 +6505,99 @@ msgstr ""
"İnternet/Şəbəkə qurğularınızı edəcəyik.\n"
"Avtomatik təsbit istəmirsiniz isə işarəti qaldırın.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Qurulacaq profili seçin"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Avtomatik təsbit işlət"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Usta Modu"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Avadanlıqlar tanınır..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normal modem təsbiti"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "%s qapısında tapıldı"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN Bağlantısı"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "%s tapıldı"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "%s ara üzündə tapıldı"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabel bağlantısı"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Kabel bağlantısı"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "eternet kart tapıldı"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "İstifadə edəcəyiniz vasitəni seçin"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6435,7 +6608,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6445,7 +6618,7 @@ msgstr ""
"\n"
"Qurğular indi sisteminizə əlavə ediləcək.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6453,16 +6626,16 @@ msgstr ""
"Bu edildikdən sonra Xdən çıxmağınızı tövsiyyə edirik, yoxsa\n"
"verici adı xəsarətləri meydana gələ bilər."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6472,45 +6645,50 @@ msgstr ""
"OLDU ya basın.\n"
"Aşağıdakı girişləri düzəltməniz özünü əvvəlki qurğuların üstünə yazacaqdır."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr "Xahiş edirik bu kompüter üçün IP qurğularını girin"
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "%s şəbəkə avadanlığı qurulur"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (sürücü %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP ünvanı"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Avtomatlaşdırılmış IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Açılışda başladılır"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6521,64 +6699,64 @@ msgstr ""
"Məsələn``kompüteradı.sahəadı.com''.\n"
"Əgər şəbəkə keçidi istifadə edirsinizsə bunun da IP nömrəsini girməlisiniz."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS verici"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Keçit avadanlığı"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Vəkil vericilər quraşdırılması"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP vəkil verici"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP vəkil verici"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Vəkil verici http://... şəklində olmalıdır."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Vəkil verici ftp://... olmalıdır."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "İnternet qurğuları"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "İnternete girişi indi sınamaq istəyirsiniz?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Bağlantınız sınanır..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "İnternetə artıq bağlısınız"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Təhlükəsizlik səbəbi ilə indi bağlantı qopacaqdır."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6586,115 +6764,120 @@ msgstr ""
"Sisteminiz İnternetə bağlı deyil.\n"
"Bağlantını yenidən quraşdırın"
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Bağlantı quraşdırılması"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Xahiş edirik aşağıdakıları doldurun ya da seçin"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Kart IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Kart mem (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Kart IO"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Kart IO_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Kart IO_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Sizin şəxsi telefon nömrəniz"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "İnternet xidmət vericinizin adı (məsələn azeronline.com)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "İXM telefon nömrəsi"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Dns xidmətcisi 1 (arzuya görə)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Dns xidmətcisi 2 (arzuya görə)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Klaviaturanızı seçin"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Yığma modu"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Bağlantı növü:"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Bağlantı növü:"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Hesab Girişi (istifadəçi adı)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Hesap Parolu"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "bağlama iflas etdi: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Bu platformda genişlədilmiş bölmələr dəstəklənmir"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Bölmə cədvəlinizdə bir boşluq var, amma o da işlədilə bilməz.\n"
"Bu boşluğu, birinci bölmənizi en yaxınındakı genişlədilmiş bölməyə "
"daşıyaraq\n"
"məsələni həll edə bilərsiniz."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "%s faylından qurtarılışda xəta: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "%s faylına yazarkən xəta oldu"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6704,194 +6887,194 @@ msgstr ""
"Datanın bütövlüyü yoxlaması bacarılmadı. \n"
"Bu o demekdir ki diskə yazılan hər şey təsadüfi olacaqdır"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "alınmalı"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "vacib"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "əla"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "gözəl"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "bəlkə"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Yerli Çap Edici"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Uzaq Çap Edici"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Uzaq çap edici vericisi(lpd)"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Şəbəkə Çap Edicisi (soket) "
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Çap Edici Vericisi"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Yerli Çap Edici"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Uzaq Çap Edici"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "%s faylına yazarkən xəta oldu"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(modul %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "CUPS verici IP"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Əsas)"
@@ -6914,12 +7097,12 @@ msgstr ""
"Buradakı hər çap edici avtomatik tapılacaqdır.\n"
"Olmazsa \"Uzaq CUPS vericisi\" ni seçin."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Uzaq CUPS vericisi"
@@ -6950,7 +7133,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
@@ -6959,7 +7142,7 @@ msgstr "Qapı nömrəsi rəqəmlə yazılmalıdır"
msgid "CUPS server IP"
msgstr "CUPS verici IP"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Qapı"
@@ -6968,22 +7151,13 @@ msgstr "Qapı"
msgid "Automatic CUPS configuration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "Avadanlıqlar tanınır..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Qapıları sına"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6996,14 +7170,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7021,12 +7195,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7040,11 +7214,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7054,35 +7228,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Avtomatik təsbit işlət"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Qapıları sına"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "%s tapıldı"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7090,43 +7268,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7134,7 +7312,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7142,73 +7320,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Quraşdırma"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "%s paketi qurulur"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "%s paketi qurulur"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "%s paketi qurulur"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "CUPS sürücü datası oxunur..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "CUPS sürücü datası oxunur..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7218,31 +7406,31 @@ msgstr ""
"çap edicinin bağlı olduğu çap edici vericisinin adını və növbə \n"
"adınını verməlisiniz."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Uzaqdakı ev sahibi adı"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Uzaqdakı ev sahibi adı"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Uzaqdakı ev sahibi adı"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) Çap Edici Seçənəkləri"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7255,35 +7443,35 @@ msgstr ""
"IP ünvanı, çap edicinin paylaşdırma adı, işləmə grupu, istifadəçi adı və \n"
"parol verilməlidir."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB verici adı"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB verici IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Paylaşdırma adı"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "İş qrupu"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7307,7 +7495,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7316,7 +7504,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7324,11 +7512,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "NetWare Çap Edici Qurğuları"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7340,28 +7528,28 @@ msgstr ""
"edici \n"
"növbəsi adı ilə istifadəçi adı va parolu verilməlidir."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Çap Edici Vericisi"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Çap Edici Növbə Adı"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Soket Çap Edici Qurğuları"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7372,60 +7560,56 @@ msgstr ""
"Soket çap edicidən yekun almaq üçün, çap edicinin ev sahibi adını ve "
"mümkünsə, qapısının nömrəsini verməlisiniz."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Çap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Çap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Çap Edici avadanlığı URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Çap edici adı"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "İzah"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Yeri"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "CUPS sürücü datası oxunur..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7440,28 +7624,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Doğrudur?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Çap Edici Bağlantısı"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Nə cür bir çap ediciniz var?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7470,18 +7654,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7491,12 +7675,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7504,7 +7688,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7517,7 +7701,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7527,34 +7711,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Çap edicini sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Qapıları sına"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7562,45 +7746,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Bəli, hər iki sınaq səhifəsini də çap et"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Çap Edici"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Standart"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7616,7 +7800,7 @@ msgstr ""
"\n"
"Düz mü işləyir?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7626,16 +7810,16 @@ msgstr ""
"Çap edicinin işləməsi üçün bir az vaxt keçər.\n"
"Düz mü işləyir?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7644,15 +7828,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7661,49 +7845,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7713,7 +7897,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7722,30 +7906,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Qapat"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Şəbəkə dayandırılır"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "Şəbəkə dayandırılır"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Qapat"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Çap edici seçənəkləri"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7753,38 +7948,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "CUPS sürücü datası oxunur..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7794,51 +7989,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7846,61 +8041,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Çap edici adı təkcə hərf, rəqəm və alt xətt daxil edə bilər"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Çap Edicisiz"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "CUPS sürücü datası oxunur..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "Bağlantınız başladılır..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Şəbəkəni qur"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Monitor qurulmayıb"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7908,12 +8103,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Şəbəkə Qurğuları"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7923,34 +8118,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Yüksək"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Şübhəci"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7965,12 +8160,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7984,70 +8179,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Hansı çap edici sistemini istifadə etmək istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Çap Edicini Qur"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "%s paketi qurulur"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Çap edici seçənəkləri"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "CUPS sürücü datası oxunur..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Çap Edicini Qur"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Bir çap edici qurmaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Çap Edici"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8058,7 +8253,7 @@ msgstr ""
"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8068,139 +8263,143 @@ msgstr ""
"Aşağıda yazıçıdakı növbələr verilmişdir.\n"
"Yenilərini əlavə edə bilər, və ya mövcud olanları dəyişdirə bilərsiniz."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Şəbəkəni qur"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normal Mod"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Çıx"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "İnternet qurğuları"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Çap Edici Bağlantısı"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "Sınaq səhifəsi çap edilir..."
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Qurğuları sınamaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Uzaq Çap Edici"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "CUPS sürücü datası oxunur..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Yerli Çap Edici"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "CUPS sürücü datası oxunur..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8284,24 +8483,62 @@ msgstr "Parollar uyğun gəlmir"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Şəkilləndirilmiş RAID md%d-yə disk bölməsi əlavə edilə bilinmədi"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "%s faylına yazıla bilinmədi"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid iflas etdi"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid iflas etdi (raidtools əksik ola bilər mi?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "%d səviyyə RAID üçün çatmayan sayda disk bölməsi\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Bu səviyyə RAID'i diqqətli istifadənizi tövsiyə edirik. Sisteminiz daha "
+"asand\n"
+"işlədiləcək, ancaq xətalara qarşı da həssaiyyəti də artacaqdır. İnternetə \n"
+"bağlı isəniz bunu tövsiyə etmirik. Parol ilə girilir."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Bu təhlükəsizlik səviyyəsiylə sistemin bir verici olaraq istifadəsi "
+"mümkündür. \n"
+"Təhlükəsizlik, birdən çox alıcının bağlanmasına icazə verəcək şəkildə "
+"artırılmışdır. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Yerli Şəbəkə Quraşdırılması"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Seçənəklər"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "ALSA səs sistemini (Advanced Linux Sound Architecture) başlat"
@@ -8359,7 +8596,7 @@ msgstr ""
"HardDrake texniki tə'minat sınağı aparar və onları bir ön quraşdırmadan "
"keçirər."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8435,7 +8672,7 @@ msgid ""
msgstr ""
"Linuks Virtual Verici, yüksək qabiliyyətli vericilər qurmaq üçün işlədilir."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8514,7 +8751,7 @@ msgstr ""
"bağlantılarını təşkilatlandırır. Portmap vericisi RPC mexanizmini işlədən\n"
"protokollarla xidmət edən kompüterlərdə qurulmalıdır və işlədilməlidir."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8613,7 +8850,7 @@ msgstr "İnternet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Sistem modu"
@@ -8736,6 +8973,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "İdarə Mərkəzi"
@@ -8839,6 +9077,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "%s paketi qurulur"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Lütfen çıxın və Ctrl-Alt-BackSpace düymələrinə basın"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "\"%s\"a(ə) təkrar girin və dəyişiklikləri fəallaşdırın"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8847,6 +9094,161 @@ msgstr ""
"Bölmə cədvəlini oxuya bilmirəm, dəyəsən biraz xarab olub:-(\n"
"Xəsərli hissələri düzəltməyə cəhd edəcəm"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "İnternet qurğuları"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Databeyz"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Databeyz"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS Verici"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS Verici"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "İstifadəçini əlavə et"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP Alıcısı"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_Yardım"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Bağlı deyil"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Sil"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Fayl seç"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "İstifadəçini əlavə et"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP Alıcısı"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Quraşdırılır..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "yenidən quraşdır"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "%s sürücüsünə bir disket taxın"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Disket sürücü yoxdur"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8888,6 +9290,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Avtomatik qurulum disketi hazırlanır"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8896,47 +9303,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Təbriklər!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Qurulum"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "İstifadəçi əlavə et"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "Loopback faylı şəkilləndirilir: %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8944,15 +9344,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8960,709 +9352,772 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "%s faylı oxunurkan xəta oldu"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Növbəni sil"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "\"Windows\"u sil"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Yerli Şəbəkə quraşdırılması"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Çap Edici Bağlantısı Seçin"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Şəbəkə ara üzü"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Növ"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Sabit disk seçkisi"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "İstifadəçi adı"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Modul seçənəkləri:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Siçan avadanlığı: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Seçənəklər"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Modeminizin hansı serial qapıya bağlı olduğunu seçiniz"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Xahiş edirik siçanınızı seçin"
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Yerli Şəbəkə quraşdırılması"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Çap Edici Bağlantısı Seçin"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Disketdən geri çağır"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Digər"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Sistemi qur"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Xüsusi"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Yardım"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Əvvəlki"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Hal:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Sonrakı ->"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Qurulacaq paketləri seçin"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Aşağıdakı paketlər qurulacaqdır"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Fayla qeyd et"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9694,7 +10149,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9703,7 +10158,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9744,7 +10199,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9772,12 +10227,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9794,7 +10254,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9834,7 +10294,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9845,7 +10305,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9858,7 +10318,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9902,104 +10362,532 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "%s qurulumu iflas etdi. Olan xəta:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Konsol Vasitələri"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "İdarə Mərkəzi"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "Usta"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Siçan"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Uzaq Çap Edici"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Paylaşdırma adı"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Çap Edici"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Şəbəkə Quraşdırılması Sehirbazı"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Tanıtma"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Paket Qrup Seçkisi"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Xahiş edirik gözləyin"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Qurulumdan çıx"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Qapı"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Şəbəkə quraşdırılması (%d adapter)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Profili sil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Silinəcək profil:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Yeni profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Ev sahibi adı:"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "İnternet imkanı"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Növ: "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Keçit:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Ara üz"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Hal:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "İnternet keçişini Qur..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Yerli Şəbəkə quraşdırılması"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Sürücü"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Ara üz"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Hal:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Yerli Şəbəkəni Quraşdır..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Sehirbaz..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Əlavə Et"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Bağlandı"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Bağlı deyil"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Bağlan..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Bağlantını Kəs..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Qurulu ara üzünüz yoxdure.\n"
+"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Yerli Şəbəkə Quraşdırılması"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "%s Adapteri: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Açılış Protokolu"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Açılışda başladılır"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP alıcısı"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Fəal"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Fəal"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Heç İnternet bağlantınız yoxdur.\n"
+"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "İnternet bağlantısı quraşdırılması"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "İnternet Bağlantısı Quraşdırılması"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Bağlantı növü:"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametrlər"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Keçit"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Eternet Kartı"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP Alıcısı"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "istifadə qaydası: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Modul adı"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Böyüklük"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "açılış disketi yaradılması"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "əsas"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy xətası: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "çəyirdək buraxılışı"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Ümumi"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ustaların Sahəsi"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrdin arzuya bağlı olan arqumentləri"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Modul əlavə et"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "zorla"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "lazım olarsa"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "scsi modulları keç"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "raid modulları keç"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Modulu çıxart"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Nəticə"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Diski yarat"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "%s avadanlığında medya olduğundan əmin olun"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"%s avadanlığında medya yoxdur.\n"
+"Xahiş edirik. birini taxın."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Fork edilə bilmir: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Düzgün mkbootdisk aparıla bilmir: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "şəbəkə kartı tapılmadı"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Qurtardı"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr ""
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "Qurulum hazırlanır"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "məhdudlaşdır"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "məhdudlaşdır"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10008,122 +10896,121 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Bölmə şəkilləndirilməsi"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Bağlama nöqtəsi"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Şəkilləndiriləcək disk bölmələrini seçin"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "İş Yeri"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Dayandır"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Çap Edici"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Sistemi qur"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Fayl seç"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Uzaq Çap Edici"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "İnit İsmarıcı"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Qurulum"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Qurulumdan çıx"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "İnternet Bağlantısı Bölüşdürülməsi fəallaşdırıldı"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10135,31 +11022,31 @@ msgstr ""
"\n"
"Nə etmək istəyirsiniz?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "passivləşdir"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "keç"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "yenidən quraşdır"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Vericilər bağlanır..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "İnternet Bağlantısı Bölüşdürülməsi indi bağlandı"
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "İnternet Bağlantısı Bölüşdürülməsi passivləşdirildi"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10171,19 +11058,19 @@ msgstr ""
"\n"
"Nə etmək istəyirsiniz?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "fəallaşdır"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Xidmətlər fəallaşdırılır..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "İnternet Bağlantısı Bölüşdürülməsi indi açıldı"
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10199,21 +11086,21 @@ msgstr ""
"Xəbədarlıq: Yerli Şəbəkə (LAN) qurmaq üçün uyğun Şəbəkə Adapterinə "
"ehtiyacınız var."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Ara Üz %s (%s modulu işlədilir)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Ara üz %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Siseminizdə şəbəkə adapteri yoxdur!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10221,11 +11108,11 @@ msgstr ""
"Sisteminizdə şəbəkə kartı tapıla bilməyib.Avadanlığı quran vasitəni işə "
"salın."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Şəbəkə ara üzü"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10240,18 +11127,18 @@ msgstr ""
"\n"
"Yerli Şəbəkə adapterinizi qurmaq üzərəyəm?"
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Sizi Yerli Şəbəkəyə bağlayacaq adapteri seçin"
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Monitor qurulmayıb"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10261,17 +11148,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Qurulum Tərzi Quraşdırılması"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "İnternet qurğuları"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10282,7 +11169,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10294,33 +11181,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "CUPS verici IP"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "%s quğusunda dəyəsən bir LAN ünvan çaxışması tapıldı!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10328,20 +11215,20 @@ msgstr ""
"Diqqət! Var olan Firewall qurğusu tapıldı. Yükləmədən sonra bir az əl "
"gəzdirə bilərsiniz."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Quraşdırılır..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Skriptlə qurulur, proqram tə'minatı qurulur, xidmətlər başladılır..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "%s paketi qurulurkən xəta oldu"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10352,23 +11239,23 @@ msgstr ""
"bölüşdürə bilərsiniz, bunun üçün isə avtomatik şəbəkə quraşdırılması (DHCP) "
"işlədilir."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Quraşdırma artıq qurtarıbdır, amma fəaliyyəti dayandırılıb."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Quraşdırma artıq qurtarıbdır və fəaliyyətdədir."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "İnternet Bağlantısı Bölüşdürmə Quraşdırması aparılmayıb."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "İnternet bağlantısı bölüşdürülməsi quraşdırılması"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10383,213 +11270,6 @@ msgstr ""
"\n"
"Quraşdırma sehirbazını açmaq üçün Quraşdıra tıqlayın."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Şəbəkə quraşdırılması (%d adapter)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Profili sil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Silinəcək profil:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Yeni profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Ev sahibi adı:"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "İnternet imkanı"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Növ: "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Keçit:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Ara üz"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Hal:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "İnternet keçişini Qur..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Yerli Şəbəkə quraşdırılması"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Sürücü"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Ara üz"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Hal:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Yerli Şəbəkəni Quraşdır..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Sehirbaz..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Əlavə Et"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Bağlandı"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Bağlı deyil"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Bağlan..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Bağlantını Kəs..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Qurulu ara üzünüz yoxdure.\n"
-"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Yerli Şəbəkə Quraşdırılması"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "%s Adapteri: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Açılış Protokolu"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Açılışda başladılır"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP alıcısı"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Fəal"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Fəal"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Heç İnternet bağlantınız yoxdur.\n"
-"Əvvəlcə onları 'Quraşdır'a basaraq qurun"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "İnternet bağlantısı quraşdırılması"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "İnternet Bağlantısı Quraşdırılması"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Bağlantı növü:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametrlər"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Keçit"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Eternet Kartı"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP Alıcısı"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "İdarə Mərkəzi"
@@ -10598,94 +11278,130 @@ msgstr "İdarə Mərkəzi"
msgid "Choose the tool you want to use"
msgstr "İstifadə edəcəyiniz vasitəni seçin"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Fransızca (Kanada/Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Avropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Fransızca"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "İzlandiya dili"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Avropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "serial"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Paketlər qurulurkən bir xəta oldu:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10729,7 +11445,7 @@ msgstr "Təkmilləşdirmə işi başlaya bilmir !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10740,11 +11456,11 @@ msgstr "Təkcə bu gününkünü göstər"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/Fayl/_Yeni"
+msgstr "/Fayl/_Təze"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<control>Y"
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
@@ -10752,7 +11468,7 @@ msgstr "/Fayl/_Aç"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<control>A"
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
@@ -10760,7 +11476,7 @@ msgstr "/Fayl/_Qeyd Et"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<control>Q"
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
@@ -10778,13 +11494,9 @@ msgstr "/_Seçənəklər"
msgid "/Options/Test"
msgstr "/Seçənəklər/Sınaq"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Yardım"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Yardım/_Haqqında..."
+msgstr "/Kömək/_Haqqında..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -10845,7 +11557,7 @@ msgstr "Təqvim"
msgid "Content of the file"
msgstr "Fayl məzmunu"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10854,80 +11566,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "xahiş edirik, gözləyin, fayl daranır: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache və Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
+msgid "Apache World Wide Web Server"
msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Sahə(domain) adı"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "NIS Verici"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix məktub vericisi, Inn xəbər vericisi"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS Verici"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS Verici"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "avadanlıq"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Çap Edici Vericisi"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "avadanlıq"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "Şəkilləndirilir"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Quraşdırma"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Fərqli qeyd et..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_USB avadanlığı tapılmadı\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "3 düymə emulasiyası"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "CUPS sürücü datası oxunur..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "Avadanlıqlar tanınır..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10971,6 +11714,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Firewall quraşdırılması"
@@ -11378,10 +12133,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedya - Səs"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Vasitələr"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Sənədlər"
@@ -11484,10 +12235,6 @@ msgstr ""
"Elektronik məktub və xəbər oxuyucusu (pine, mutt, tin..) və Web səyyahları"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arxivləmə, emulyatorlar, izləmə"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Şəxsi Maliyyə"
@@ -11534,1391 +12281,149 @@ msgstr "Multimedya - CD Yandırma"
msgid "Scientific Workstation"
msgstr "Elmi iş stansiyası"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Dayandır"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Choose options for server"
+#~ msgstr "X verici üçün seçənəkləri göstərin"
-#, fuzzy
-#~ msgid "None"
-#~ msgstr "Qurtardı"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Əsas istifadəçini seçin:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Uzaq Çap Edici"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "İndi %s moduluna parametrlər girə bilərsiniz."
-
-#~ msgid "mount failed"
-#~ msgstr "bağlama iflas etdi"
-
-#~ msgid "Low"
-#~ msgstr "Alçaq"
-
-#~ msgid "Medium"
-#~ msgstr "Orta"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Bu təhlükəsizlik səviyyəsi üçün əlavə olaraq artırılmış təhlükəsizlik "
-#~ "xəbərdarlığı və \n"
-#~ "yoxlama var."
-
-#~ msgid "Boot mode"
-#~ msgstr "Açılış modu"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Usta"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "Linuks zamanı GMT-yə (Greenwich Mean Time) görə qurğular və olduğunuz \n"
-#~ "yerdəki zamana görə lazımi dəyişiklikləri edər."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "İnternetə bağlantı"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "İnternetə bağlantını kəs"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Şəbəkə (İnternet/LAN) bağlantınızı quraşdırın"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Hansı diskə daşımaq istəyirsiniz?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Mə'lumat"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome iş stansiyası"
-
-#~ msgid "authentification"
-#~ msgstr "tanıtma"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor qurulmayıb"
-#~ msgid "user"
-#~ msgstr "istifadəçi"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache bir World Wide Web vericisidir. HTML faylları və CGI verilməsi "
-#~ "üçün istifadə edilir."
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Ekran kartı hələ qurulmayıb"
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) verici adlarını IP ünvanlarına çevirən\n"
-#~ "Sahə Adı Vericisidir(DNS)."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Rezolyusiya hələ seçilməyib"
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Xahiş edirik siçanınızın növünü seçin."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Çıx"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Taxılıb sökülə bilən avadanlıqların avtomatik bağlanması"
-
-#~ msgid "Active"
-#~ msgstr "Fəal"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "Xeyr"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "\"%s\" modelində bir çap edici tapıldı:"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Yerli Çap Edici Avadanlığı"
-
-#~ msgid "Printer Device"
-#~ msgstr "Çap Edici Avadanlığı"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Uzaq CUPS vericisi"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Uzaq CUPS vericisi"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linuks"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Sistem modu"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Digər"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Klaviatura quruluşunu seçiniz."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Növ: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Xətalı yedəkləmə faylı"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "X qur"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Çap Edici Avadanlığı"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Ləğv et"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Oldu"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Qapat"
-
-#~ msgid "Starting your connection..."
-#~ msgstr "Bağlantınız başladılır..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "Bağlantınız kəsilir..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ "Bağlantı kəsildi. Buna əllə kökdə\n"
-#~ "/etc/sysconfig/şəbəkə-scripts/net_cnx_down\n"
-#~ "əmrini icra edərək nail ola bilərsiniz."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Sistem indi bağlantısını kəsib."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Qurmaq istədiyiniz paketləri seçin"
-
-#~ msgid "Total size: "
-#~ msgstr "Hamısı: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Xahiş edirik gözləyin, "
-
-#~ msgid "Total time "
-#~ msgstr "Ümumi müddət"
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "X11 qurğuları üçün mövcud qurğulardan istifadə edək?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Çap ediciniz hansı avadanlığa bağlıdır? \n"
-#~ "(/dev/lp0, LPT1'nin qarşılığıdır)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr "Diqqət, şəbəkə adapteriniz onsuz da qurulub. Yenidən quracam."
-
-#~ msgid "New"
-#~ msgstr "Yeni"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Uzaqdakı növbə adı"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
+#~ "bə'zi parametrləri dəyişdirin"
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Qarışıqlıq (%s), daha aydın yazın\n"
+#~ msgid "An error occurred:"
+#~ msgstr "Bir xəta oldu:"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (əsas %s) "
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "%d saniyə sonra çıxılacaq"
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "Seçkiniz (əsas %s, yoxsa `none' yazın) "
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Bu qurğular doğrudur?"
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "/etc/sysconfig/autologin oxunmaq üçün açıla bilmir: %s"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Bir xəta oldu, parametrləri dəyişdirin"
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Şəbəkəni yenidən başlatmaq istəyirsiniz?"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 verici: %s"
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Razısınız?"
+#~ msgid "Show all"
+#~ msgstr "Hamısını Göstər"
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Şəbəkə avadanlığını yenidən başlatmalıyam:\n"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "X-Window qurğuları hazırlanır"
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "%s avadanlığını yenidən başladacam. Razısınız?"
+#~ msgid "What do you want to do?"
+#~ msgstr "Nə etmək istəyirsiniz?"
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Başqa bir şəkildə seçilməmiş isə, ümumiyyətlə bu seçki \"/dev/hda\" \n"
-#~ "(Birinci ali IDE disk) ya da \"/dev/sda\" (birinci SCSI disk)\n"
-#~ "olacaqdır."
+#~ msgid "Change Monitor"
+#~ msgstr "Monitoru Dəyişdir"
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Bağlantı növü:"
+#~ msgid "Change Graphics card"
+#~ msgstr "Ekran kartını dəyişdir"
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Əsas istifadəçini seçin:"
+#~ msgid "Change Server options"
+#~ msgstr "Verici seçənəklərini dəyişdir"
-#~ msgid "Test the mouse here."
-#~ msgstr "Siçanınızı buradan sınayın."
+#~ msgid "Change Resolution"
+#~ msgstr "Rezolyusiyanı Dəyişdir"
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr "Qurulma və sistem istifadəsi üçün bir dil seçin."
+#~ msgid "Show information"
+#~ msgstr "Mə'lumatı göstər"
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Davam edə bilmək üçün yuxarıdakı lisenziyanın maddələrini qəbul "
-#~ "etməlisiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xahiş edirik, maddələrlə razı isəniz \"Qəbul\" düyməsinə basın.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xahiş edirik, maddələrlə razı deyilsəniz ,\"Rədd\" düyməsinə basın\n"
-#~ "Yükləmə indiki qurğularınız dəyişdirilmədən bitiriləcək."
+#~ msgid "Test again"
+#~ msgstr "Yenidən sına"
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Yuxarıdakı siyahıdan klaviaturanıza uyöun gələn düzülüşü seçiniz"
+#~ msgid "Setting security level"
+#~ msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Əgər yükləmədən sonra işlətmək üçün fərqli dillər (yükləmənin əvvəlində "
-#~ "seçdiyinizdən) seçmək istəyirsinizsə,\n"
-#~ "xahiş edirik, onları yuxarıdakı siyahıdan seçin.\n"
-#~ "Əgər hamısını seçmək istəyirsiniz isə \"Hamısını\" seçin."
+#~ msgid "Graphics card"
+#~ msgstr "Ekran kartı"
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Seç:\n"
-#~ "\n"
-#~ " - Xüsusi: Əgər Linuksa aşina isəniz bu seçənəyə tıqlayın.\n"
-#~ " Sonra sistemin sinifini seçə biləcəksiniz.\n"
-#~ " Ayrınrılar üçün aşağıya baxın.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Usta: Əgər GNU/Linuks haqqında yaxşı bilik sahibi isəniz bunu seçin.\n"
-#~ " Daha sonra \"Xüsusi\" seçkisində olduğu kimi sistemin sinifini seçə "
-#~ "biləcəksiniz.\n"
-#~ " Ancaq artıq dərəcədə xahiş edirik, NƏ ETDİYİNİZİ BİLMİRSƏNİZ BU "
-#~ "SİNİFİ SEÇMƏYİN!."
+#~ msgid "Select a graphics card"
+#~ msgstr "Ekran kartınızı seçin"
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "İndi isə kompüterinizi necə işlədəcəyinizə qerar verin.Seç:\n"
-#~ "\n"
-#~ "* Masa üstü: kompüterinizi gündəlik işlər (idarə işləri, qrafika vs.)\n"
-#~ " üçün istifadə edəcək isəniz, bunu seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Təcrübi: Kompüterinizi proqram tə'minatı inkişafı üçün işlədəcəksəniz, "
-#~ "sizin üçün ideal seçkidir.\n"
-#~ " O zaman qaynaq kodları yazmaq, şəkilləndirmək və xətadan ayıqlamaq və ya "
-#~ "proqram paketləri hazırlamaq üçün lazımi hər cür proqramın daxil olduğu "
-#~ "bir kolleksiya kompüterinizə qurulacaqdır.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Verici: Kompüterinizə Linuks-Mandrakeni verici olaraq işlətmək üçün "
-#~ "quracaqsanız, bu yaxşı bir seçkidir.\n"
-#~ " Bir fayl vericisi (NFS ya da SMB),çap edici vericisi(Unixin lp protokolu "
-#~ "ya da Windows tərzi SMB çap),\n"
-#~ " tanıdıcı verici (NIS), mə'lumat tabanı vericisi və oxşarı...Onda KDE, "
-#~ "GNOME kimi məzəli şeylərin qurulmağını gözləməyin."
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Diqqət: Bu qrafika kartı ilə ediləcək sınaq təhlükəlidir"
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "İndi qurmaq ya da güncəlləmək istədiyiniz paket qruplarını\n"
-#~ "seçə bilərsiniz.\n"
-#~ "\n"
-#~ "Sonra DrakX seçdiklərinizi qurmaq ya da güncəlləmək üçün lazımi \n"
-#~ "boş yerinizin olub olmadığını sınayacaq. Əgər yoxsa, sizə bunu \n"
-#~ "söyləyəcək. Nə olursa olsun davam etmək istəsəniz,yükləmə davam edəcək.\n"
-#~ "Amma daha az ehtiyac olan paketlər qurulmayacaq.\n"
-#~ "Siyahının üstündə \"Şəxsi paket seçilməsi\"\n"
-#~ "seçənəyini işarətləsiniz 1000dən artıqpaket arasından seçə bilərsiniz."
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standart VGA, 60 Hz-də 640x480 "
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "İndi isə siz istədiyiniz paketi qurmaq üçün\n"
-#~ "seçə bilərsiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "Paket pəncərəsi solundakı bucaqdaki seçənəyə tıqlayaraqağacı həm aça\n"
-#~ "həm də sıxışdıra bilərsiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "Paketlərin əlifba sırasına görə düzülməsini istəyirsinizsə\n"
-#~ "\"Otaq və grupu düz\"\n"
-#~ "düyməsinə basın.\n"
-#~ "\n"
-#~ "\n"
-#~ "Paket ehtiyacları xəbərdarlıqlarını istəmirsəniz \"Avtomatik\n"
-#~ "ehtiyaclar\"ı seçə bilərsiniz.\n"
-#~ "Amma bunu işarətlədiyiniz vaxt unutmayın bir paketin işarətini "
-#~ "qaldırdığınızda\n"
-#~ "ehtiyacı olan digər paketlerin de işarəti səssizcə qalxar."
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 56 Hz-də 800x600"
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Yuxarıdakı siyahıdakı bütün CDlərə sahibsəniz, OLDUya tıqlayın.\n"
-#~ "Bu CD'lərin heç birinə sahib deyilsəniz, Ləğv et'i tıqlayın.\n"
-#~ "CD'lərdən bə'ziləri əksiksə, bunları seçili vəziyyətdən çıxarıb OLDUya "
-#~ "tıqlayın."
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Uyğun, 87 Hz-də titrəşimli 1024x768 (800x600 yox)"
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Kompüterinizi internete və ya yerli networka bağlamaq\n"
-#~ "istəyirsinizsə xahiş edirik doğru xüsusiyəti seçin. Ayrıca DrakXin bunu "
-#~ "tapması üçün avadanlığınızı açın.\n"
-#~ "\n"
-#~ "\n"
-#~ "İnternet və ya yerli networka heç girişiniz yox isə\"Şəbəkə qurğularını "
-#~ "keç\"\n"
-#~ "seçənəyini işarətləyin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Şəbəkə qurğularını sonraya buraxmaq istəyirsinizsəvə ya qurğular bitdiysə "
-#~ "\"Oldu\" seçənəyini işarətləyin."
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 87 Hz-də titrəşimli 1024x768, 56 Hz-də 800x600"
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "Modem tapılmadı. Xahiş edirik modemin bağlı olduğu serial qapını seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xəbəriniz olsun, birinci serial qapı (Windows altında\n"
-#~ "\"COM1\") linux altında\"ttyS0\" deyə adlandırılır."
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Təkmilləşdirilmiş Super VGA, 60 Hz-də 800x600, 72 Hz-də 640x480"
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "İndi isə çevirməli bağlantı xüsusiyyətləri seçə bilərsiniz.\n"
-#~ "Əgər bilmirsinizsə və ya ne girəcəyinizə qerar vermədinizsə\n"
-#~ "(Məsələn, İXV (ISP) və DNS nömrələri kimi) bunları\n"
-#~ "daha sonra da internete girərək öyrənə bilərsiniz."
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Titrəşimsiz SVGA, 60 Hz-də 1024x768, 72 Hz-də 800x600"
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Modeminiz xarici isə modeminizi açın ki DrakX onu avtomatik olaraq tapsın."
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "Yüksək Frekanslı SVGA, 70 Hz-də 1024x768"
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Xahiş edirik modeminizi açın ve doğru seçənəyi işarətləyin."
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Çoxlu Frekansa qadir 60 Hz-də 1280x1024"
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Əgər yuxarıdakılar haqqında mə'lumatınız yox isə və ya ne girəcəyinizə "
-#~ "qərar vermədinizsə\n"
-#~ "(Məsələn, İXV (ISP) və DNS nömrələri kimi)bunları\n"
-#~ "daha sonra da internete girərək öyrənə bilərsiniz."
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Çoxlu Frekansa qadir 74 Hz-də 1280x1024"
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "İndi isə ev sahibi bilgilərini girin. Ne girəcəyinizə\n"
-#~ "qerar vermədinizsə\n"
-#~ "(Məsələn, İXV (ISP) və DNS nömrələri kimi)bunları\n"
-#~ "daha sonra da internete girərək öyrənə bilərsiniz."
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Çoxlu Frekansa qadir 76 Hz-də 1280x1024"
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Seç:\n"
-#~ "\n"
-#~ " - IP ünvanı: Əgər IP ünvanını bilmirsinizsə, sistem idarəcisinəya da \n"
-#~ "İnternet xidmət vericisinə danışın.\n"
-#~ "\n"
-#~ " - Şəbəkə maskası: Ümumiyyətlə \"255.255.255.0\" yaxşı bir seçkidir. Əgər "
-#~ "əmin \n"
-#~ "deyilsəniz, yenə sistem idarəcinizə ya da xidmət vericinizəsoruşun.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Avtomatik IP : Əgər networkunuz bootp ya da dhcp protokollarından bir "
-#~ "dənəsini \n"
-#~ "istifadə edirsə bu seçənəyi işarətləyin."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Əgər şəbəkədə NIS işlədilirsə, \"NIS kullan\" seçənəyini işarətləyin. "
-#~ "Əgər \n"
-#~ "bilmirsinizsə sistem idarəcinizə soruşun."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr "İndi ev sahibi adını girin. Bilmirsinizsə boş buraxın."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "İndi çevirməli bağlantı seçənəklərini girə bilərsiniz. Əgər nə yazılması "
-#~ "lazım olduğunu\n"
-#~ "bilmirsinizsə İnternet xidmət vericinizdən lazımi bilgiləri alın."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr "Əgə vəkil (proxy) verici istifadə edacəmsəniz bunları girin."
-
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Əgər İnternet bağlantınız doğru şəkildə qurulmuş isə kriptoqrafik "
-#~ "paketi \n"
-#~ "də qura bilərsiniz. Əvvəl bir əks ünvanı seçin və daha sonra qurulacaq \n"
-#~ "paketləri quraşdırın."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "İndi isə yaşadığınız yerə görə zaman zolağını seçin."
-
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ "Siz indi yerli və ya çevirməli yazıçını qura bilərsiniz\n"
-#~ "(Unix, Netware və ya Microsoft Windows networkundakı)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Yazdırma funksiyası istəyirsinizsə CUPS və LPR arasında seçici\n"
-#~ "davranmalısınız.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS yeni, güclü ve elastik bir Unix yazdırma sistemidir\n"
-#~ "CUPS yəni \"Common Unix Printing System\". Bu da Linuks Mandrake\n"
-#~ "də əsas yazdırma sistemidir.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR Linuks Mandrakenin köhne sistemidir.\n"
-#~ "\n"
-#~ "\n"
-#~ "Printeriniz yox isə \"Yox\" düyməsinə tıqlayın."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linuks bir çox çap edici növü işlədə bilər. Hər bir növ\n"
-#~ "müxtəlif quruluş istəyər.\n"
-#~ "\n"
-#~ "\n"
-#~ "Çap ediciniz fiziki olaraq kompüterinizə bağlı isə\n"
-#~ "\"Yerli çap edici\"nı seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Unix sisteminə bağlı çap ediciyə uzaqdan bağlanmaq istəyirsinizsə\n"
-#~ "\"Uzaqdan bağlanılan çap edici\".\n"
-#~ "\n"
-#~ "\n"
-#~ " MS Windows kompüterinə (və ya SMB protokolunu\n"
-#~ "işlədən Unix kompüterinə) bağlı bir çap ediciyə çatmaq üçün\n"
-#~ "\"SMB/Windows95/98/NT\" seçənəyini işarətləyin."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ "Xahiş edirik DrakXin tapa bilməsi üçün yazıçınızı açın.\n"
-#~ "\n"
-#~ "Burada bir neçə mə'lumat verməlisiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Çap Edici adı: yazıçılar üçün \"lp\" işlədilir.\n"
-#~ "Ona görə də yazıçınızın adı \"lp\" olmalıdır.\n"
-#~ "Bir neçə çap ediciniz var isə istədiyiniz adı verə bilərsiniz. Sadəcə "
-#~ "olaraq ə aralarına boru işarəti \"|\" qoymalısınız.\n"
-#~ "Məsələn \"Mənim yazıçım|lp\".\n"
-#~ "Adında \"lp\" olan çap edici baş çap edici olacaqdır.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Təsvir: İstəyə bağlıdır. Amma bir neçə çap ediciniz var isə\n"
-#~ "bir xeyli faydalı ola bilər.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Yerləşmə: Çap Edicinin yeri haqqında istədiyinizi yaza bilərsiniz."
-#~ "Məsələn, \"2ci mərtəbə\".\n"
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Burada bir neçə mə'lumat verməlisiniz.\n"
-#~ "\n"
-#~ "\n"
-#~ "*İstək adı: yazıçılar üçün \"lp\" işlədilir.\n"
-#~ "Ona görə də yazıçınızın adı \"lp\" olmalıdır.\n"
-#~ "Bir neçə çap ediciniz var isə istədiyiniz adı verə bilərsiniz. Sadəcə "
-#~ "əolaraq aralarına boru işarəti \"|\" qoymalısınız.\n"
-#~ "Məsələn \"Mənim yazıçım|lp\".\n"
-#~ "Adında \"lp\" olan çap edici baş çap edici olacaqdır.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Saxlama qovluğu: Çap Edici sifarişlərinizi saxlanıldığı yer.\n"
-#~ "Mövzudan bixəbər isəniz əsas qurğunu seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "*Çap Edici bağlantısı: Çap Edici fiziki olaraq kompüterə bağlı ise\n"
-#~ "\"Yerli Çap Edici\" seçin.\n"
-#~ "Uzaq bir Unix sistemə bağlı çap edici isə\"Uzaqdan idarəli lpd Çap Edici"
-#~ "\" seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Uzaq SMB vericisi işlədən Unix və ya Windows sisteminə bağlıyazıçı üçün "
-#~ "isə \"SMB/Windows 95/98/NT\" seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "NetWare şəbəkədə yerləşən çap edici üçün isə\"NetWare\" seçin.\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "Sizin çap edici tapılmadı. Xahiş edirik bağlı olduğu avadanlığın\n"
-#~ "adını girin.\n"
-#~ "\n"
-#~ "\n"
-#~ "Xəbəriniz olsun, bir çox çap edici birinci paralel qapıya bağlıdır.\n"
-#~ "Bu da GNU/Linuksda \"/dev/lp0\", Windowsda isə \"LPT1\"dir."
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "70 Hz də 1600x1200 qadir Monitor"
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "İndi yuxarıdakı siyahıdan çap edici seçmalisiniz."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "76 Hz də 1600x1200 qadir Monitor"
#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ "Xahiş edirik yazıcınız üçün doğru qurğuları girin.\n"
-#~ "Nə seçəcəyinizi bilmirsiniz isə sənədlərə baxın\n"
-#~ "\n"
-#~ "\n"
-#~ "Bir sonrakı addımda yazıcınızı sınaya bilərsiniz və\n"
-#~ "daha sonra da istədiyiniz zaman dəyişdirə bilər."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Seçdiyiniz paket qruplarının ümumi böyüklüyü təximən %d MBdır.\n"
#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Linuks sisteminiz üçün bir idarəci parolu verilməlidir. Bu parol\n"
-#~ "yazılış xətalarına meydan verməməsi və e'tibarlı olması səbəbi ilə iki "
-#~ "dəfə\n"
-#~ "girilməlidir.\n"
-#~ "\n"
-#~ "\n"
-#~ "Bu parolu diqqətli seçməlisiniz. Sadəcə idarəi parolunu bilən \n"
-#~ "adamlar sistemi idarə və dəyişiklik edə bilirlər. Ayrıca idarəci \n"
-#~ "parolu ilə sistemə girən bir adam bütün veriləri silib, sistema zərər \n"
-#~ "verə bilər. Seçdiyiniz parol alfanumerik xarakterlər daxil edib en az 8 "
-#~ "xarakter uzunluğunda olmalıdır. Hər hansı bir kağıza, dəftara qeyd\n"
-#~ "alınmamalıdır. Çox uzun bir parol və ya çox qarışıq bir parol işlədilir "
-#~ "isə \n"
-#~ "parolun xatırlanması çətinləşir.\n"
-#~ "\n"
-#~ "\n"
-#~ "İdarəci olaraq sistemə girəcayiniz zaman, giriş sırasında \"login\"\n"
-#~ "yazan qismə \"root\" və \"password\" yazan qismə idarəci parolunu\n"
-#~ "yazmalısınız."
+#~ "Bu böyüklükdən daha azını yükləmək istəsəniz,\n"
+#~ "qurmaq istədiyiniz paket faizini seçin.\n"
+#~ "100%%'i seçərsəniz bütün paketlər qurulacaqdır."
#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "İndi bir ya da daha çox adamın Linuks sisteminizi istifadə etməsinə "
-#~ "icazə\n"
-#~ "verə bilərsiniz. Hər istifadəçi hesabı üçün edilən dəyişikliklər sadəcə\n"
-#~ "o istifadəçi ve istifadəçinin \"istifadəçi sırası\" üçün hökmlü olar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Sistemi sadəcə siz istifadə edeceksəniz belə ayrı bir istifadəçi hesabı "
-#~ "açaraq\n"
-#~ "normal işler üçün bu hesabı istifadə etməlisiniz. İdarəçi \"root\" "
-#~ "hesabı\n"
-#~ "gündəlik işlərdə istifadə edilməməlidir. Bu bir təhlükəsizlik riski "
-#~ "təşkil edər.\n"
-#~ "Sadə bir istifadəçi hesabı ilə işləmək sizi və sistemi size qarşı\n"
-#~ "qoruyar. İdarəci hesabı olan \"root\" sadəcə, sadə bir istifadəçi hesabı\n"
-#~ "ilə etməyəcəyiniz idarə və təmir işləri üçün istifadə edilməlidir."
-
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
-#~ "Başlanğıc disketi yaradılması aşırı dərəcədə tövsiyyə edilir.\n"
-#~ "Sistemi aça bilmədiyiniz zaman bu, sizin üçün tək qurtuluş yolu olar.\n"
-#~ "Yoxsa sistemi yenidən yükləmək məcburiyyətindəsiniz."
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "LILO və grub ana seçənəkləri bunlardır: \n"
-#~ "- Açılış avadanlığı: Açılış sektorunu olduğu sabit disk bölməsini daxil "
-#~ "edən avadanlığın\n"
-#~ "adını təyin edər.\n"
-#~ "Əgər heç bir şey bilmirsinizsə \"/dev/hda\"yı seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "- Əsas əks ilə açmadan əvvəl gecikmə: Açılış sistem yükləyicisinin ilk \n"
-#~ "əksi açmadan əvvəl gözləyəcəyi zamanın, saniyənin onda biri cinsindən "
-#~ "miqdarıdır.\n"
-#~ "Bu, klaviaturanın fəallaşmasından həmən sonra sabit diskdən açılan "
-#~ "sistemlər üçün faydalıdır.\n"
-#~ "Sistem yükləyicisi, əgər \"delay\" sıfır olaraq verilmiş isə\n"
-#~ "heç gözləməz.\n"
-#~ "\n"
-#~ "\n"
-#~ "- Ekran modu: Açılışda bir neçə mətn ekran modu seçilə bilər:\n"
-#~ " * sadə: 80x25 mətn ekran açılır.\n"
-#~ " * <rəqəm>: Göstərilənn rəqəmlərə görə mətn ekran rezolyusiyası "
-#~ "quraşdırılır.\n"
-#~ "\n"
-#~ "\n"
-#~ "- \"/tmp\"I hər açılışda təmizlə: Əgər hər açılışda \"/tmp\" cərgəsində "
-#~ "olan bütün\n"
-#~ "olan bütün cərgə və qovluqların silinməsini istəyirsinizsə, bu seçənəyi "
-#~ "seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ "- Var olan RAM miqdarı: Təəsüf ki, Linuks həmişə RAM miqdarını BIOSdan "
-#~ "düzgün\n"
-#~ "bir şəkildə öyrənəməyə bilər. Onda siz çzünüz sisteminizdə olan həqiq RAM "
-#~ "miqdarını buradan\n"
-#~ "girə bilərsiniz. Yadda saxlayın ki, həqiqi RAM ilə sistemin tapdığı "
-#~ "miqdar arasında 2\n"
-#~ "və ya 4 MBlıq fərq ola bilər."
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO (Linuks Yükləyici) SPARC üçün bir sistem yükləyicidir: sistemi "
-#~ "Linuks\n"
-#~ "ya da kompüterinizdəki başqa bir əməliyyat sistemiylə aça bilirlər.\n"
-#~ "Əsasən bu digər əməliyyat sistemləri doğru bir şəkildə təsbit edilib "
-#~ "açılışa\n"
-#~ "qurula bilərlər. Əgər bir problem olarsa, buradan əllə əlavə edilə "
-#~ "bilərlər.\n"
-#~ "Parametrlər mövzusunda diqqətli olun."
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ " - Açılış avadanlığı: Açılış sektorunu olduğu sabit disk bölməsini daxil "
-#~ "edən avadanlığın\n"
-#~ "adını təyin edər.\n"
-#~ "Əgər heç bir şey bilmirsinizsə \"/dev/hda\"yı seçin.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ana əks ilə açmadan əvvəl gecikmə: Açılış sistem yükləyicisinin ilk \n"
-#~ "görünüşü açmadan əvvəl gözləyəcəyi zamanın, saniyənin onda biri cinsindən "
-#~ "miqdarıdır.\n"
-#~ "Bu, klaviaturanın aktivləşməsindən həmən sonra sabit diskdən açılan "
-#~ "sistemlər üçün faydalıdır.\n"
-#~ "Sistem yükləyicisi, əgər delay sıfır olaraq verilmiş isə\n"
-#~ "heç gözləməz."
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Buradan etibarən, Linuks GUI (Qrafik İstifadəçi Ara üzü) çəkirdəyini\n"
-#~ "əmələ gətirən X Window sistemini quracağıq. Buna görə də ekran kartınızı\n"
-#~ "və monitorunuzu qurmalısınız. Bu addımların çoxu onsuz da avtomatik "
-#~ "olaraq\n"
-#~ "keçiləcək və sizə sadəcə olaraq tövsiyə edilən qurğuları incələmək və "
-#~ "qəbul etmək\n"
-#~ "düşəcək. :-)\n"
-#~ "\n"
-#~ "\n"
-#~ "Quruluş qurtardığında əgər DrakXdən əksini istəmədiniz isə X Window \n"
-#~ "başlayacaqdır. Qurğuşarınıza baxın və yoxlayın. Qurğularınızı yoxlayaraq\n"
-#~ "uyuşmazlıq olub olmadığına baxın, lazım gəlirsə geriyə dönün."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr "X qurğularında problem olarsa aşağıdakı seçənəkləri istifadə edin."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Əgər sistemə girərkən qrafik arar üzünün gəlməsini istəyirsənız isə \"Bəli"
-#~ "\",əks halda \"Xeyr\" düyməsinə basın."
-
-#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ "Sisteminiz üçün təhlükəsizlik səviyyəsini seçə bilərsiniz. Ətraflı "
-#~ "mə'lumat üçün xahiş edirik bələdçiyə\n"
-#~ " baş vurun. Əsasən , nə seçəcəyinizi bilmirsiniz isə buraya heç "
-#~ "toxunmayın.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "İndi sistem yenidən qapanıb açılacaqdır.\n"
-#~ "\n"
-#~ "Açıldıqdan sonra Linuks Mandrake avtomatik olaraq yüklənəcəkdir. Əgər "
-#~ "başqa \n"
-#~ "bir əməliyyat sistemi də işlədəcəksəniz əlavə xəbərdarlıqları oxuyun."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Çex dili (Proqramcılar)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Slovakca (Proqramcılar)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Yaradılacaq profil adı:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "/etc/fstab-a Yaz"
-
-#~ msgid "Format all"
-#~ msgstr "Hamısını şəkilləndir"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Bütün bölmələri şəkilləndirdikdən sonra, "
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "bu bölmələrdəki bütün verilər itəcəkdir"
-
-#~ msgid "Reload"
-#~ msgstr "Yenidən yüklə"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "Linuks köçürülməsi üçün bir dənə avtomatik qurulum disketi yaratmaq "
-#~ "istəyərmisiniz?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "ADSL quraşdırılması"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Uzaq CUPS vericiləri üçün heç bir quraşdırmaya lüzüm yoxdur \n"
-#~ "Buradakı hər çap edici avtomatik tapılacaqdır. \n"
-#~ "Əgər uzaq çap edici vericiniz var ise CUPS vercisinin \n"
-#~ "IP ünvanını verməlisiniz. Qapı nömrəsi vacib \n"
-#~ "deyil."
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Uzaqdakı növbə adı"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Sahə(domain) adı"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Çap Edicisiz"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Şəbəkə Monitoru"
-
-#~ msgid "Profile "
-#~ msgstr "Profil "
-
-#~ msgid "Statistics"
-#~ msgstr "Statistikalar"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "Yollama Sür'əti:"
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "Alam Sür'əti:"
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Bağlantı növü:"
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "İnternetə bağlanılır"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "İnternet ilə bağlantını kəs"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "İnternet ilə bağlantı kəsilməsi bacarılmadı."
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "İnternet ilə bağlantı kəsilməsi qurtardı."
-
-#~ msgid "Connection complete."
-#~ msgstr "Bağlantı qurtardı."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "Bağlantı iflas etdi.\n"
-#~ "Qurğularınızı Mandrake İdarə Mərkəzindən yoxlayın."
-
-#~ msgid "sent: "
-#~ msgstr "yollandı:"
-
-#~ msgid "received: "
-#~ msgstr "alındı:"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Əsas Runlevel"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "Quraşdırma faylının içindəkilərlə oynanılmaz"
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Tanınmaz quraşdırma faylı"
-
-#~ msgid "Adapter"
-#~ msgstr "Adapter"
-
-#, fuzzy
-#~ msgid "Disable network"
-#~ msgstr "Bağla"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Aç"
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "İndi siçanı sınaya bilərsiniz. Hər şeyin yolunda olduğunu \n"
-#~ "sınamaq üçün düymə və çarxı işlədin. Qurğular yaxşı isə\n"
-#~ "problem yoxdur. Əgər deyilsə onda \"Ləğv et\"i tıqlayaraq\n"
-#~ "başqa siçan sürücüsü seçə bilərsiniz."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL (və ya ADSL) bağlantısı"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Qapat"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr "CUPS ilə çap ediciyə yetişmək üçün URIni verməlisiniz"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "Bəli, ASCII sınaq səhifəsi çap et"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "Bəli, PostScript sınaq səhifəsi çap et"
-
-#~ msgid "Paper Size"
-#~ msgstr "Kağız Böyüklüyü"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "İş bittikdən sonra səhifə atılsın mı?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Uniprint sürücü seçənəkləri"
-
-#~ msgid "Color depth options"
-#~ msgstr "Rəng dərinlik seçənəkləri"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Mətni PostScript olaraq yazdırsın mı?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Mətn pilləli olaraq düzəldilsin mi?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Hər yekun səhifəsinin nömrəsi"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Sağ/Sol boşluqlar nöqtəvi(inch'in 1/72'si"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Üst/Alt boşluqlar nöqtəvi (inch'in 1/72'si)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "Əlavə GhostScript seçənəkləri"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Əlavə mətn seçənəkləri"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Tərs səhifə sıralaması"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Çap Edici Bağlantısı Seçin"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Hər çap edicinin bir adı olmalıdır (məsələn lp).\n"
-#~ "Çap edicinin təsviri və yeri də göstərilməlidir.\n"
-#~ "Bu çap edicinin adı nədir və yeri haradadır?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Hər çap edici növbəsinin (çap edici işlərinin yollandığı yer) bir adı "
-#~ "olar \n"
-#~ "(çoxunda lp) və gözləmə qovluğuna ehtiyac duyar. Bu növbə üçün\n"
-#~ "hansı ad və qovluq istifadə edilsin?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Növbənin adı"
-
-#~ msgid "Spool directory"
-#~ msgstr "Gözləmə qovluğu"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Daha e'tibarlı bir sistem üçün \"Kölgə parol işlət\" və \"MD5 kodlama \n"
-#~ "işlət\" seçənəklərini işarətlayin."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Əgər şəbəkədə NIS istifadə edilirsə, \"NIS işlət\" seçəneyini "
-#~ "işarətləyin. Əgər \n"
-#~ "bilmirsinizsə sistem idarəcinizə soruşun."
-
-#~ msgid "yellow pages"
-#~ msgstr "sarı səhifələr"
+#~ "Sabit diskinizdə bu paketlərin sadəcə olaraq %d%%'sini quracaq qədər yer "
+#~ "var.\n"
+#~ "Bundan daha azını qurmaq istəsəniz,\n"
+#~ "daha az bir faiz sadəcə ən vacib paketləri ;\n"
+#~ "%d%% isə qurula biləcək bütün paketləri quracaqdır."
-#~ msgid "Provider dns 1"
-#~ msgstr "İXM dns 1"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Sonrakı addımda daha geniş bir seçki qabağınıza gələcəkdir."
-#~ msgid "Provider dns 2"
-#~ msgstr "İXM dns 2"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Qurulacaq paketlərin faizi"
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "İnternetə necə bağlanmaq istəyirsiniz?"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Təhlükəsizlik səviyyəsini seçin"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 617c278c6..e808ec713 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -13,67 +13,99 @@ msgstr ""
"Content-Type: text/plain; charset=windows-1251\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 "
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 "
-#: ../../Xconfigurator.pm_.c:246
-#, fuzzy, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "i "
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 "
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 "
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 "
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 "
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 "
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 "
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 i "
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr " X "
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X "
+
+#: ../../Xconfig/card.pm_.c:225
#, fuzzy
msgid "Multi-head configuration"
msgstr " i"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "i"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr " ii"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr " i"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr " XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr " X "
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr " i XFree ?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X "
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr " X "
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X "
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "i "
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr " XFree86 %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr " i XFree ?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s 3D-"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -82,36 +114,19 @@ msgstr ""
" 3D- XFree %s.\n"
"XFree %s 2D- ."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
" i 3D-, i i XFree %"
"s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s 3D-"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-" i 3D-, i i XFree %"
-"s.\n"
-" , I I \n"
-"I '."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s 3D-"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -124,31 +139,60 @@ msgstr ""
"I '. i i XFree %s, i\n"
" i 2D-."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+" i 3D-, i i XFree %"
+"s.\n"
+" , I I \n"
+"I '."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr " XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr " ii"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr " i "
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"ֳ ?\n"
+" :\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr " i"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "i"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr " "
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -171,518 +215,328 @@ msgstr ""
" i.\n"
"i , i."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr " i"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr " i"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "i "
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "i i"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "i i i?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ": i i "
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr " i"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 (8 i)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-" i "
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 (15 i)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr ":"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 (16 i)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr " %d "
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 i (24 i)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr " i?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 ii (24 i)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr " , i "
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr " "
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr " "
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr " i ii "
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "i: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr " XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-#, fuzzy
-msgid "More"
-msgstr ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr ""
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-#, fuzzy
-msgid "Expert Mode"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr " "
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "i i i?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr " "
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr " i"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr " i: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr ": %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "i: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr " .. i: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr " .. i: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "i: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "i: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "i: %s \n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr " ii : %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr " XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr " XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr " i X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr " i?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "i i"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "i i"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "i i "
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "i "
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "I"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"ֳ ?\n"
-" :\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr " X i"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
" i i X i.\n"
", X ?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "i , i %s i "
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "i , i, Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 (8 i)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 (15 i)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 (16 i)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 i (24 i)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 ii (24 i)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 "
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 "
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 "
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 "
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 "
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 "
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 "
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 "
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 i "
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr " VGA, 640x480 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr " 8514, 1024x768 87 Hz ( 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 i 87 Hz , 800x600 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 60 Hz, 640x480 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr " SVGA, 1024x768 60 Hz, 800x600 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr " SVGA, 1024x768 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr ", i i 1280x1024 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr ", i i 1280x1024 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr ", i i 1280x1024 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "i, i i 1600x1200 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "i, i i 1600x1200 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr " "
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr " (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr " SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr " ?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr " LILO/GRUB"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr ""
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr ""
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr ""
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr " i "
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
#, fuzzy
msgid "Bootloader to use"
msgstr " i "
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr " "
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr " "
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA ( i BIOS)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr ""
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr ""
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "i-"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr " "
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr ""
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr " "
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr " "
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr ""
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr " /tmp "
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr " RAM ( %d M)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr " i"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr " RAM M"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
" `` '' "
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr " "
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "i "
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
#, fuzzy
msgid "Default OS?"
msgstr " "
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -691,84 +545,84 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
" .\n"
" , i i."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr ""
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr ""
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
#, fuzzy
msgid "Modify"
msgstr "i RAID"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "i ?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "I (SunOS,...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "I (MacOS,...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "I (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr ""
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr ""
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "-i"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "i"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr ""
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr ""
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr " "
@@ -802,53 +656,75 @@ msgstr " i swap"
msgid "This label is already used"
msgstr " "
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr " %s %s i"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "i i?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "i %s i?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr ""
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr ""
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr ". i "
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr " %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "( %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, 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 ""
+" i %s.\n"
+"i - ``i= i2=2 ...''.\n"
+", ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "i :"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "i %s ?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -865,37 +741,15 @@ msgstr ""
" ii? , i \n"
" ', i ."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr ""
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr " "
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-" i %s.\n"
-"i - ``i= i2=2 ...''.\n"
-", ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "i :"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -904,51 +758,56 @@ msgstr ""
" %s .\n"
" ii i?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "( %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr " "
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "i , i i i"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"I i i i i ii i, \n"
"i, `-' i `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr " i i "
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr " i i "
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr " i"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -957,32 +816,32 @@ msgstr ""
"i i i\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr " i"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr " i"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "I i:"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr ":"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "i"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr " i"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -991,121 +850,101 @@ msgstr ""
" i i i \n"
" i. i , ii \"\"."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr " i:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr " :"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "i , ."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr " , i "
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr ""
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr " i"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr " "
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr ""
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr " "
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr ""
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr " Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr " "
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "i"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "i"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "i"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1117,7 +956,7 @@ msgstr ""
" , i i i Internet. "
"."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1125,7 +964,7 @@ msgstr ""
" , ' i \n"
" ."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1135,55 +974,56 @@ msgstr ""
"i Internet i i. i\n"
"i."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
" i i i\n"
". i i \n"
", i i iii ii."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
" ii 4 , i .\n"
" i i."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr " i"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "i i"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr " i "
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1195,52 +1035,52 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr " /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr " "
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr " "
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr " ?"
@@ -1254,16 +1094,20 @@ msgstr ""
msgid "Boot Style Configuration"
msgstr " "
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
#, fuzzy
msgid "/_File"
msgstr ":\n"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr ""
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
@@ -1302,12 +1146,12 @@ msgstr " "
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr " I-"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
#, fuzzy
msgid "Configure"
@@ -1318,7 +1162,7 @@ msgid "System mode"
msgstr ""
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr ""
#: ../../bootlook.pm_.c:148
@@ -1329,14 +1173,16 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr ""
@@ -1385,7 +1231,7 @@ msgstr " "
msgid "Screenshots will be available after install in %s"
msgstr " , i "
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr ""
@@ -1393,7 +1239,7 @@ msgstr ""
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "ii"
@@ -1421,11 +1267,12 @@ msgstr "i"
msgid "Sweden"
msgstr "."
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Ii"
@@ -1435,7 +1282,7 @@ msgstr "Ii"
msgid "Austria"
msgstr ""
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1443,8 +1290,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "-, i i "
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr " i!"
@@ -1457,11 +1304,12 @@ msgstr ""
"i boot , i \n"
" 2048 "
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr ""
@@ -1469,11 +1317,11 @@ msgstr ""
msgid "Wizard"
msgstr " "
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr " "
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1485,149 +1333,155 @@ msgstr ""
", -, i \n"
"(ii , \" \")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr " "
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "i"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr " i"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr " i:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr " ``%s'' "
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "i"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr " i ``Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr " %s "
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr " ?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "i "
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "i i i "
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "i i i?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "i "
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "More"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "I"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1635,35 +1489,35 @@ msgstr ""
" i , i i i "
"(extended)"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "i i "
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr " i "
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr " i "
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr " i "
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "i "
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1671,11 +1525,11 @@ msgstr ""
"i i \n"
" ?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "!"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1683,125 +1537,132 @@ msgstr ""
" \n"
" "
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr " i "
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "I"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr " i"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "i"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "i"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr " RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr " LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "i"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "i RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "i LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "i RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr " i i"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr " :"
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr " :"
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr " i:"
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr " i:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr " i %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "i "
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr " i ?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr " i i %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr " i %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1810,132 +1671,137 @@ msgstr ""
"i i.\n"
" i i i"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr " i FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
#, fuzzy
msgid "This partition is not resizeable"
msgstr " i?"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr " i i"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr " %s "
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr " :"
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr " i ?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr " i ?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr " ..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr " i RAID "
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr " i LVM "
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr " i i"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "i i (loopback)"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "I i "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr " i"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
" i i i. i , \n"
" i "
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr " i. ?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "i :"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr " i. i"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
#, fuzzy
msgid "What type of partitioning?"
msgstr "i i ?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr " "
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1946,7 +1812,7 @@ msgstr ""
" LILO - , LILO "
", /boot ."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1958,7 +1824,7 @@ msgstr ""
"i i LILO, \n"
" /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1968,137 +1834,137 @@ msgstr ""
" , i i /boot .\n"
" /boot, i ."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "i %s i !"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr " i ii , i"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr " %s "
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr " i %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr " %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid "
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr " : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr ":"
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "i DOS-: %s ()\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "I: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr ": %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr ": %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s "
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "i %d %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr " \n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "i\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "() i i: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2106,27 +1972,27 @@ msgstr ""
" \n"
" ( i MS-DOS, lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr " %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr " %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-i %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "I i i: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2134,7 +2000,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2142,65 +2008,65 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr ": %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr ": %s i, %s , %s \n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "I: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-i %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr " i : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr " %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "i: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr " i:"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
" ( i %d i)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "i "
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2211,36 +2077,66 @@ msgstr "i "
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr " "
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "i"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "i"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "I i:"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "I i:"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS Domain"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS "
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %s"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr " %s %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr " i %s: %s"
@@ -2257,72 +2153,325 @@ msgstr ""
msgid "server"
msgstr ""
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
#, fuzzy
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr " i , i 16 "
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr " i , i 32 "
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr " i i /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr " i %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr " "
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
" i i (ext2, reiserfs)\n"
" i i\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
" i i (ext2, reiserfs)\n"
" i i\n"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr " "
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr " %s i: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
": i \n"
". i ."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr " i ii !"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr " "
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr " (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "i "
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "i"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr " (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "i"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "i"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "-"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 i"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr ". i "
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "I"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr " i %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "i , "
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d "
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr " CUPS"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2336,7 +2485,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2434,9 +2583,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2618,7 +2766,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2630,9 +2778,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2679,21 +2826,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2709,9 +2855,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
" , \n"
" Mandrake Linux. \n"
@@ -2790,9 +2936,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2939,38 +3084,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3073,11 +3212,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3132,7 +3271,7 @@ msgstr ""
" , GNU/Linux.\n"
" , , ."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3147,7 +3286,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3162,7 +3301,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3178,29 +3317,29 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3222,7 +3361,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3244,7 +3383,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3252,7 +3391,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3273,7 +3412,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3298,7 +3437,7 @@ msgstr ""
" i i i. \n"
" , i!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3314,29 +3453,28 @@ msgstr ""
"i , i, \n"
" \" (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3345,7 +3483,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3370,11 +3508,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3384,9 +3522,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3398,7 +3535,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3424,7 +3561,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3451,18 +3588,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3470,12 +3606,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3491,7 +3626,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
#, fuzzy
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
@@ -3503,7 +3638,7 @@ msgstr ""
"\n"
" ."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
#, fuzzy
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
@@ -3522,7 +3657,7 @@ msgstr ""
"\n"
" \"\" "
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3530,12 +3665,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3550,26 +3685,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr " broadcast NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr " %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr " %s"
@@ -3599,7 +3734,7 @@ msgstr " i swap"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3607,61 +3742,61 @@ msgstr ""
"\n"
" ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr " i swap"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr " "
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr " "
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr " i "
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr " i , i "
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr " Windows i i"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr " i?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr " "
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr " M: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr " swap M:"
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr " Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr " i?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "i i Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3670,13 +3805,16 @@ msgstr ""
" FAT \n"
" , : %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
" Windows . \n"
" i ``defrag''"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3697,55 +3835,55 @@ msgstr ""
" i i i .\n"
"i i, ii Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr " Windows?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr " %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr " FAT %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
" FAT \n"
" i i i (i )"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "i i "
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "i Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr " i i Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr " i %s i i "
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
#, fuzzy
msgid "Custom disk partitioning"
msgstr " i "
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr " fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -3754,12 +3892,12 @@ msgstr ""
" i %s\n"
" i i, `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr " Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
#, fuzzy
msgid "I can't find any room for installing"
msgstr " "
@@ -3768,16 +3906,16 @@ msgstr " "
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr " i DrakX :"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr " : %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr " i"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr " i"
@@ -3789,12 +3927,12 @@ msgstr ""
"i , ,\n"
" ."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr " i %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3806,12 +3944,12 @@ msgstr ""
" cdrom , \"rpm -qpl Mandrake/RPMS/*."
"rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Сардэчна запрашаем у %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr " "
@@ -3821,9 +3959,9 @@ msgstr " "
msgid "Entering step `%s'\n"
msgstr " `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -3833,203 +3971,158 @@ msgstr ""
" . ii `F1' i, \n"
" `text' i ii <ENTER>."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "i , i :"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr " i %d .\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"i ,\n"
-" , i .\n"
-"\n"
-" ii i ,\n"
-" 100% ."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-" i %d%% .\n"
-"\n"
-"i , \n"
-" .\n"
-" ;\n"
-" %d%% i i ."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr " i ."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr " "
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "i "
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr " : %d / %d M"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "I: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "i: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr ": %d K\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr ": %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
" , "
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr " i"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr " , i"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr " i . "
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
" i \n"
" , i ?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr " i . i"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "븢"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "i "
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "i i"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "븢"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr " "
-#: ../../install_steps_gtk.pm_.c:528
+#: ../../install_steps_gtk.pm_.c:474
#, fuzzy
-msgid "Please wait, preparing installation"
+msgid "Please wait, preparing installation..."
msgstr " "
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d "
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr " %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4045,17 +4138,17 @@ msgstr ""
"i , ii i, i "
"Cd."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr " ?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr " :"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr " :"
@@ -4100,11 +4193,11 @@ msgstr " "
msgid "Do you really want to leave the installation?"
msgstr "i i i?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "˳ "
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4119,7 +4212,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4225,114 +4318,118 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "i"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "i , i."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "i ?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
#, fuzzy
msgid "Install/Update"
msgstr "븢"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
#, fuzzy
msgid "Is this an install or an update?"
msgstr " i "
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "i "
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "i , ."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "i , , ."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr " PCMCIA ..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr " IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr " i"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"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 loose all the partitions?\n"
@@ -4345,7 +4442,7 @@ msgstr ""
"\n"
"i i ?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4353,140 +4450,143 @@ msgstr ""
"DiskDrake i i .\n"
" i !"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "i (/) i?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr " i i i, ."
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr " ?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr " i %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
" i (swap) , i ."
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
+msgstr " "
+
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr " i . "
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
" i i (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr " (%dM)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "ii (%dM)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr " (%d)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4496,16 +4596,16 @@ msgstr ""
"i i CD , ii i.\n"
"i CD , i i i ii ."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4514,23 +4614,23 @@ msgstr ""
" %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -4606,171 +4706,202 @@ msgstr ""
"75002 Paris\n"
"FRANCE"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr " i "
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr " i "
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "i ?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr " i ii GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "NIS :"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr " CUPS"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
#, fuzzy
msgid "No printer"
msgstr "I i"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "i i?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
#, fuzzy
msgid "Mouse"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
#, fuzzy
msgid "ISDN card"
msgstr " ISDN "
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
#, fuzzy
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr " NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "i Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr " root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
" ( i %d i)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "i"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "i"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "i NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS :"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "i"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr " "
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NIS :"
+
+#: ../../install_steps_interactive.pm_.c:1142
+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"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -4797,19 +4928,19 @@ msgstr ""
"i , \n"
" i ii \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "i "
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "i"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4835,7 +4966,7 @@ msgstr ""
" ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4844,28 +4975,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr ", "
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr " , i "
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4873,11 +5004,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr " aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4885,16 +5016,16 @@ msgstr ""
" boot, \n"
" 븢, ?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr " . i :"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4905,18 +5036,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4925,7 +5055,8 @@ msgstr ""
" i .\n"
" i ?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4936,7 +5067,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4950,18 +5081,22 @@ msgstr ""
" \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"I i -\n"
" i i i Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
#, fuzzy
msgid "Generate auto install floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4970,16 +5105,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
#, fuzzy
msgid "Replay"
msgstr "i"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
#, fuzzy
msgid "Save packages selection"
msgstr "i "
@@ -5008,422 +5143,406 @@ msgstr ""
msgid "Choose a file"
msgstr " "
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "i , "
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "I"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr " "
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr " "
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr " i i "
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr " , \n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr " ? ( %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr " ? ( %s) "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "i: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr " aboot?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr " ? ( %s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "i (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "i"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Ii"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "ii"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "i"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "i"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "i"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "i"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "i"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK i"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US i"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Ii"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "i ()"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "i (typewriter)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "i ()"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr " (latin)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "ii"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "i ()"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "i"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "ii (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr ""
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "i ( )"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "i ( )"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "i (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "i ( i i)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "i"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (i)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "i"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "ii (\"\" )"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "ii (\"i\" )"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "i"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "i"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "i"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "I"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "I ()"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Ii"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Ii"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Ii"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "i 106 i"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
#, fuzzy
msgid "Korean keyboard"
msgstr "UK i"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "i-i"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "ii AZERTY ()"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "ii AZERTY ()"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "ii \" \" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "ii \"\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr ""
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "i"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "i ( )"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "i (qwertz )"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "i"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "i ()"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "i (-----)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "i (-----)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "i (-----)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "i"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "i (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "i (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr " ()"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "i"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr " i"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr " i"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "i ( \"F\" )"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "i ( \"Q\" )"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "ii"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US i (i)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "i \" \" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr " (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5436,7 +5555,31 @@ msgstr "i %s\n"
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr " "
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr " "
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5479,10 +5622,6 @@ msgstr "2 i"
msgid "Generic 2 Button Mouse"
msgstr " 2 "
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr ""
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr " "
@@ -5548,40 +5687,56 @@ msgstr ""
msgid "No mouse"
msgstr " "
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr " , ."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
#, fuzzy
msgid "To activate the mouse,"
msgstr " , ."
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr " !"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
#, fuzzy
msgid "Finish"
msgstr "ii"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr " ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr ""
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr " ?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "I"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr " "
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr " "
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr " i i "
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr " I"
@@ -5627,7 +5782,7 @@ msgstr ""
"i ethernet i . i , "
" i i."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr " i"
@@ -5642,7 +5797,7 @@ msgstr ""
msgid "no network card found"
msgstr " "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr " i"
@@ -5658,15 +5813,15 @@ msgstr ""
" ``mybox.mylab.myco.com''.\n"
" i IP , i ."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "I "
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "i i"
@@ -5716,7 +5871,7 @@ msgstr " ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
" .\n"
"i i, ``I''"
@@ -5738,14 +5893,14 @@ msgstr ""
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
" \n"
" D- ( )"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "i ?"
#: ../../network/isdn.pm_.c:199
@@ -5769,7 +5924,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"i ISA , ii i "
@@ -5786,13 +5942,13 @@ msgid "Continue"
msgstr ""
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr " ISDN ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
" ISDN PCI , . i , PCI "
" ."
@@ -5809,49 +5965,49 @@ msgstr " ?"
msgid "Dialup options"
msgstr " (Dialup)"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "I "
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr " "
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "I (login ID)"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr " "
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr " i"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "I "
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
#, fuzzy
msgid "First DNS Server (optional)"
msgstr " DNS"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
#, fuzzy
msgid "Second DNS Server (optional)"
msgstr "i DNS:"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -5859,7 +6015,7 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
@@ -5868,12 +6024,12 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
#, fuzzy
msgid "You are currently connected to internet."
msgstr " I?"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
@@ -5882,38 +6038,38 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr " I?"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "I "
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr " ISDN"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr " i"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "I i i"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -5927,12 +6083,12 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "i i"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5940,106 +6096,113 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
#, fuzzy
msgid "Choose the profile to configure"
msgstr " i:"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+#, fuzzy
+msgid "Expert Mode"
+msgstr ""
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr " ..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy, c-format
msgid "detected on port %s"
msgstr " i %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, fuzzy
msgid "ISDN connection"
msgstr " ISDN"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr " i"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Cable connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr " "
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
#, fuzzy
msgid "LAN connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr " i, i "
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr " I-"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr " , ?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
#, fuzzy
msgid "Network configuration"
msgstr "i i"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6047,35 +6210,35 @@ msgid ""
"%s"
msgstr "i i i?"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6085,38 +6248,43 @@ msgstr ""
" i IP - \n"
"i (, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr " %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, fuzzy, c-format
msgid " (driver %s)"
msgstr " XFree86: %s\n"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP "
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr " i"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr " IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr " . "
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP i 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6128,66 +6296,66 @@ msgstr ""
" ``mybox.mylab.myco.com''.\n"
" i IP , i ."
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS "
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "-"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr " proxy "
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy i http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy i ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr " I"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "i I?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
#, fuzzy
msgid "Testing your connection..."
msgstr "i ISDN ?"
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
#, fuzzy
msgid "The system is now connected to Internet."
msgstr " I?"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr ""
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
#, fuzzy
msgid ""
"The system doesn't seem to be connected to internet.\n"
@@ -6196,309 +6364,314 @@ msgstr ""
"\n"
" ."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr " I"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "i , i i i"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ "
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr " (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO "
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 "
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 "
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr " i "
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "I , .net"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr " "
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
#, fuzzy
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 "
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
#, fuzzy
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 "
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr " i"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr " "
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "I "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "I "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "I (i i)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr " "
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr " i: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr " i "
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
" i i , i .\n"
"i , i , i i\n"
" (extended) "
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr " %s : %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr " ii"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr " i %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
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 trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "i "
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr ""
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "i "
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr ""
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr " "
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr " "
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr " "
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr " CUPS"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr " lpd"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr " (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr " "
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "URI "
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr " "
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr " "
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr " i %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "( %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP SMB"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " ( )"
@@ -6521,12 +6694,12 @@ msgstr ""
" , .\n"
" , \" CUPS\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr ""
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr " CUPS"
@@ -6557,7 +6730,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP i 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -6566,7 +6739,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP SMB"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr ""
@@ -6575,22 +6748,13 @@ msgstr ""
msgid "Automatic CUPS configuration"
msgstr " "
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr " ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr " "
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "I i"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6603,14 +6767,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr " "
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6628,12 +6792,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr " "
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6647,11 +6811,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6661,35 +6825,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr " "
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr " "
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr " "
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr " i %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6697,43 +6865,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "URI "
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr " "
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6741,7 +6909,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6749,73 +6917,83 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr " ?"
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "URI "
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr ""
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr " %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr " %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr " %s"
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "i lpd"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6825,31 +7003,31 @@ msgstr ""
" i i i i ,\n"
" i."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr " "
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr " "
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr " "
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr " "
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "i SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6862,35 +7040,35 @@ msgstr ""
", i , i i, i "
"i ."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "I SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "I "
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr " "
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6914,7 +7092,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6923,7 +7101,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6931,11 +7109,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "i NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6947,28 +7125,28 @@ msgstr ""
"( i TCP/IP) i i i , "
" , i i i ."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr " "
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "I i "
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "i "
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -6979,60 +7157,56 @@ msgstr ""
" i, \n"
"i i ."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "I "
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "I "
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI "
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "I i"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "i"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr ""
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr " "
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7047,28 +7221,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr " ?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr " "
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr " "
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "i i ?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7077,18 +7251,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr " I"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7098,12 +7272,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr " I"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7111,7 +7285,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7124,7 +7298,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7134,34 +7308,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr " i ?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr " "
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7169,45 +7343,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr ", i "
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr ""
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr ""
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr " "
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr " "
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr " "
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr " "
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7223,7 +7397,7 @@ msgstr ""
"\n"
" ?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7233,16 +7407,16 @@ msgstr ""
" , , i .\n"
" ?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "I i"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7251,15 +7425,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7268,49 +7442,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7320,7 +7494,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7329,31 +7503,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-#, fuzzy
-msgid "Close"
-msgstr " "
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr " i"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr " i"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr " i"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr " i"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr " "
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "i "
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7361,38 +7546,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr " I"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7402,51 +7587,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7454,62 +7639,62 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "I i"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr " "
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "i ISDN ?"
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr " i"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "i "
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7517,12 +7702,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr " i"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7532,34 +7717,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr " i ?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "i"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "i"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7574,12 +7759,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr " i ?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7593,70 +7778,70 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr " "
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr " i ?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr " "
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr " %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "i "
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr " "
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr " i ?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr ""
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7667,7 +7852,7 @@ msgstr ""
" i .\n"
" , i i."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7677,140 +7862,144 @@ msgstr ""
" i .\n"
" , i i."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr " i"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
#, fuzzy
msgid "Normal Mode"
msgstr ""
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "i i i?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr " I"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "i i i?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr " I-"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr " "
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr " "
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "i i i?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr " "
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr " "
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "i i i?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr " CUPS"
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -7893,24 +8082,62 @@ msgstr "i "
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr " i _i_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr " i i %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid "
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid ( raid i?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr " RAID %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+" . i \n"
+" i, i : i "
+"\n"
+" , i i i Internet. "
+"."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+" i i i\n"
+". i i \n"
+", i i iii ii."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr " i"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "i"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7966,7 +8193,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8036,7 +8263,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8112,7 +8339,7 @@ msgstr ""
"\n"
" i , i RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8209,7 +8436,7 @@ msgstr "i"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8334,6 +8561,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr " I"
@@ -8438,6 +8666,15 @@ msgstr ""
msgid "Installing packages..."
msgstr " %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "i , i, Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "i , i %s i "
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8446,6 +8683,159 @@ msgstr ""
"i , :(\n"
" ii i "
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr " I"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS :"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS :"
+
+#: ../../standalone/drakTermServ_.c:234
+#, fuzzy
+msgid "Etherboot Floppy/ISO"
+msgstr " . "
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr " i"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "i"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr " i"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr " IDE"
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr " X Window"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr " %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8487,6 +8877,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr " "
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8495,47 +8890,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr " ii!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "븢"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr " i"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr " i %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8543,15 +8931,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8559,709 +8939,774 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr " ii"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr " ii"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr " ii"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr " %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr " "
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr " "
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "i "
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "i Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "I i:"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr " ii"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr " , ."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr " "
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr " "
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr " "
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr " "
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "i , i."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr " "
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr " "
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr " "
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr " , ."
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr " ii"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr ":"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr ": "
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "I i:"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr " i ?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr " i ?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr " "
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr " "
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "i :"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "i i"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
#, fuzzy
msgid "across Network"
msgstr ":"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr " "
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr ". i"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr ": %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1983
+#, c-format
+msgid ""
+"\n"
+"- Save via %s on host : %s\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "i"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+#, fuzzy
+msgid "\t-Tape \n"
+msgstr ": "
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr " ?"
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "i i"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr " , ."
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr " "
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr " "
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr ""
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr " i"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr " "
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr " "
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr " "
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr " "
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr " "
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr ""
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr " "
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr " i"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "i , ."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr " ii"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr " "
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr " , ."
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr " "
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "i i"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "i i"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr ""
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr " i"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr ". i"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9293,7 +9738,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9302,7 +9747,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9343,7 +9788,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9371,12 +9816,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9393,7 +9843,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9433,7 +9883,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9444,7 +9894,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9457,7 +9907,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9501,105 +9951,551 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr " %s . i :"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr " I"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "I "
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+#, fuzzy
+msgid "Windows Migration tool"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr " DiskDrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "i i"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr ""
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "i , "
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr " , i "
+
+#: ../../standalone/drakconnect_.c:80
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "i i"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#, fuzzy
+msgid "Profile: "
+msgstr " i: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+#, fuzzy
+msgid "Hostname: "
+msgstr "I "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:181
+#, fuzzy
+msgid "Type:"
+msgstr ": "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr ":"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#, fuzzy
+msgid "LAN configuration"
+msgstr " ADSL"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Driver"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Interface"
+msgstr " i"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:244
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr " i"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr " i"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "I "
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Not connected"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+#, fuzzy
+msgid "LAN Configuration"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "I i i"
+
+#: ../../standalone/drakconnect_.c:588
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "I i i"
+
+#: ../../standalone/drakconnect_.c:597
+#, fuzzy
+msgid "Connection type: "
+msgstr "I "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Module name"
+msgstr "i :"
+
+#: ../../standalone/drakfloppy_.c:69
+#, fuzzy
+msgid "Size"
+msgstr ": %s"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+#, fuzzy
+msgid "drakfloppy"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:91
+#, fuzzy
+msgid "boot disk creation"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:126
+#, fuzzy
+msgid "kernel version"
+msgstr " I"
+
+#: ../../standalone/drakfloppy_.c:132
+#, fuzzy
+msgid "General"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:137
+#, fuzzy
+msgid "Expert Area"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:141
+#, fuzzy
+msgid "Add a module"
+msgstr " i"
+
+#: ../../standalone/drakfloppy_.c:161
+#, fuzzy
+msgid "force"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:163
+#, fuzzy
+msgid "omit scsi modules"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:200
+#, fuzzy
+msgid "Remove a module"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:429
+#, fuzzy, c-format
+msgid "Unable to fork: %s"
+msgstr "i "
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr " i %s"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr ""
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr " "
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr " "
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr ""
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9608,122 +10504,121 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr " "
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr " RPM- i"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr " i"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr " i"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr " "
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr ""
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "i"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr ""
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr " i"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr " "
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr " "
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr " i !"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "븢"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr " i !"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr " "
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr " I-"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr " I- "
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9731,35 +10626,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
#, fuzzy
msgid "disable"
msgstr "i"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
#, fuzzy
msgid "reconfigure"
msgstr " X Window"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
#, fuzzy
msgid "Disabling servers..."
msgstr " ..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr " I- "
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr " I- "
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9767,21 +10662,21 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
#, fuzzy
msgid "enable"
msgstr "i"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr " I- "
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
#, fuzzy
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
@@ -9798,21 +10693,21 @@ msgstr ""
"\n"
" Internet?"
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, fuzzy, c-format
msgid "Interface %s"
msgstr " i"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr " i !"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -9820,11 +10715,11 @@ msgstr ""
"i ethernet i . i , "
" i i."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr " i"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9834,7 +10729,7 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -9842,12 +10737,12 @@ msgstr ""
"i , , "
" i."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "i "
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9857,17 +10752,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr " "
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr " I"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9878,7 +10773,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9890,33 +10785,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP SMB"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr " i i %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr " (firewall)!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -9924,21 +10819,21 @@ msgstr ""
"! i i (firewall). "
" ."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
#, fuzzy
msgid "Configuring..."
msgstr " IDE"
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr " , , ..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr " %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -9949,25 +10844,25 @@ msgstr ""
" ' , \n"
" (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr " I- "
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "I i i"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9977,224 +10872,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr " I-"
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "i i"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr " i: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "I "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr ""
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr ": "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr ":"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr " "
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr " ADSL"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Driver"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr " i"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr " "
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr " i"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr " i"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "I "
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr ""
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr ""
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "I i i"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "I i i"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "I "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr ""
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "i i"
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -10204,94 +10881,130 @@ msgstr " I"
msgid "Choose the tool you want to use"
msgstr " i, i "
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "i ()"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Ţ"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Ii"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Ţ"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr ""
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr " :"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10341,7 +11054,7 @@ msgstr " live upgrade !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr ""
@@ -10389,10 +11102,6 @@ msgstr ""
msgid "/Options/Test"
msgstr ""
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr ""
@@ -10455,7 +11164,7 @@ msgstr ""
msgid "Content of the file"
msgstr ""
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10464,80 +11173,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr ""
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr " ADSL"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr ""
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr ""
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "I "
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "NIS :"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr " "
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS :"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS :"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr ""
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr " "
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr ""
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr ""
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr ""
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr ""
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "i , ."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_usb \n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr " ?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr " CUPS"
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr " ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -10581,6 +11321,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -10933,10 +11685,6 @@ msgid "Multimedia - Sound"
msgstr " - "
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
#, fuzzy
msgid "Documentation"
msgstr "i"
@@ -11049,10 +11797,6 @@ msgstr ""
"Web "
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr ", , "
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr " "
@@ -11102,192 +11846,211 @@ msgstr " - CD"
msgid "Scientific Workstation"
msgstr " "
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "i"
+#~ msgid "Choose options for server"
+#~ msgstr " i "
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Monitor not configured"
+#~ msgstr "i "
-#~ msgid "None"
-#~ msgstr ""
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "i i"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr " i:"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr " "
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr " "
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ " i "
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr " i %s."
+#~ msgid "An error occurred:"
+#~ msgstr ":"
-#~ msgid "mount failed"
-#~ msgstr " i"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr " %d "
-#~ msgid "Low"
-#~ msgstr ""
+#~ msgid "Is this the correct setting?"
+#~ msgstr " i?"
-#~ msgid "Medium"
-#~ msgstr "i"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr " , i "
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ " i , \n"
-#~ "i i ."
+#~ msgid "XFree86 server: %s"
+#~ msgstr " XFree86: %s"
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr ""
+#~ msgid "Show all"
+#~ msgstr " "
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr ""
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr " i X-Window"
-#, fuzzy
-#~ msgid "Connect to Internet"
-#~ msgstr " I"
+#~ msgid "What do you want to do?"
+#~ msgstr " i?"
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr " I"
+#~ msgid "Change Monitor"
+#~ msgstr "i i"
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr " i ?"
+#~ msgid "Change Graphics card"
+#~ msgstr "i i"
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr " "
+#~ msgid "Change Server options"
+#~ msgstr "i i "
-#, fuzzy
-#~ msgid "Infos"
+#~ msgid "Change Resolution"
+#~ msgstr "i "
+
+#~ msgid "Show information"
#~ msgstr "I"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr " "
+#~ msgid "Test again"
+#~ msgstr " "
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache - World Wide Web . "
-#~ "\n"
-#~ "HTML i CGI."
+#~ msgid "Setting security level"
+#~ msgstr "i i"
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) - i, i \n"
-#~ " i IP ."
+#~ msgid "Graphics card"
+#~ msgstr "i"
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "i , ."
+#~ msgid "Select a graphics card"
+#~ msgstr " i"
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr ""
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr ": i i "
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "i "
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr " VGA, 640x480 60 Hz"
-#~ msgid "Active"
-#~ msgstr ""
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 56 Hz"
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr ""
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr " 8514, 1024x768 87 Hz ( 800x600)"
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr " i \"%s\" "
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 i 87 Hz , 800x600 56 Hz"
-#~ msgid "Local Printer Device"
-#~ msgstr " "
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 60 Hz, 640x480 72 Hz"
-#~ msgid "Printer Device"
-#~ msgstr " "
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr " SVGA, 1024x768 60 Hz, 800x600 72 Hz"
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr " CUPS"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr " SVGA, 1024x768 70 Hz"
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr " CUPS"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr ", i i 1280x1024 60 Hz"
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr ", i i 1280x1024 74 Hz"
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Mouse Systems"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr ", i i 1280x1024 76 Hz"
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr ""
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "i, i i 1600x1200 70 Hz"
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "i , i."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "i, i i 1600x1200 76 Hz"
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr " "
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr " i %d .\n"
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr ": "
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "i ,\n"
+#~ " , i .\n"
+#~ "\n"
+#~ " ii i ,\n"
+#~ " 100% ."
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr " ii"
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ " i %d%% .\n"
+#~ "\n"
+#~ "i , \n"
+#~ " .\n"
+#~ " ;\n"
+#~ " %d%% i i ."
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr " X Window"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr " i ."
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr " "
+#~ msgid "Percentage of packages to install"
+#~ msgstr " "
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr ""
+#~ msgid "Please choose the desired security level."
+#~ msgstr " i"
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr ""
+#~ msgid "Complete (%dMB)"
+#~ msgstr " (%dM)"
-#, fuzzy
-#~ msgid "close"
-#~ msgstr " "
+#~ msgid "Minimum (%dMB)"
+#~ msgstr "ii (%dM)"
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "Root"
+#~ msgid "Recommended (%dMB)"
+#~ msgstr " (%d)"
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "i ISDN ?"
+#~ msgid "Utilities"
+#~ msgstr ""
-#, fuzzy
-#~ msgid "Closing your connection..."
-#~ msgstr "i ISDN ?"
+#~ msgid "Archiving, emulators, monitoring"
+#~ msgstr ", , "
-#, fuzzy
-#~ msgid "The system is now disconnected."
-#~ msgstr " I?"
+#~ msgid "None"
+#~ msgstr ""
+
+#~ msgid "You may now provide options to module %s."
+#~ msgstr " i %s."
+
+#~ msgid "mount failed"
+#~ msgstr " i"
+
+#~ msgid "Low"
+#~ msgstr ""
+
+#~ msgid "Medium"
+#~ msgstr "i"
+
+#~ msgid ""
+#~ "Few improvements for this security level, the main one is that there are\n"
+#~ "more security warnings and checks."
+#~ msgstr ""
+#~ " i , \n"
+#~ "i i ."
+
+#~ msgid ""
+#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
+#~ "host names to IP addresses."
+#~ msgstr ""
+#~ "named (BIND) - i, i \n"
+#~ " i IP ."
+
+#~ msgid "Active"
+#~ msgstr ""
+
+#~ msgid "A printer, model \"%s\", has been detected on "
+#~ msgstr " i \"%s\" "
+
+#~ msgid "Local Printer Device"
+#~ msgstr " "
+
+#~ msgid "Printer Device"
+#~ msgstr " "
#~ msgid "Choose the size you want to install"
#~ msgstr " "
@@ -11311,30 +12074,9 @@ msgstr " "
#~ " \n"
#~ "(/dev/lp0 i LPT1:)?\n"
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#, fuzzy
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ ", i.\n"
-#~ "i i ?"
-
#~ msgid "New"
#~ msgstr ""
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "i"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr " "
-
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr " (%s), \n"
@@ -11344,10 +12086,6 @@ msgstr " "
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr " ? ( %s. i `none' i) "
-#, fuzzy
-#~ msgid "Do you want to restart the network"
-#~ msgstr "i i i?"
-
#~ msgid ""
#~ "\n"
#~ "Do you agree?"
@@ -11355,27 +12093,6 @@ msgstr " "
#~ "\n"
#~ " ?"
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "i , ' \"/dev/hda"
-#~ "\"\n"
-#~ "( IDE ) i \"/dev/sda\" ( SCSI )."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "I "
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr " i:"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr " , ."
-
#~ msgid ""
#~ "You need to accept the terms of the above license to continue "
#~ "installation.\n"
@@ -11485,18 +12202,6 @@ msgstr " "
#~ " ,\n"
#~ " ."
-#, fuzzy
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "i CD i i i, ii .\n"
-#~ "i i CD , ii i.\n"
-#~ "i CD , i i i ii "
-#~ "."
-
#~ msgid ""
#~ "If you wish to connect your computer to the Internet or\n"
#~ "to a local network please choose the correct option. Please turn on your "
@@ -11581,26 +12286,6 @@ msgstr " "
#~ " DNS, \n"
#~ " ."
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ " i (dialup). i \n"
-#~ " , i,\n"
-#~ " i Internet "
-#~ "(ISP)."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ " , . \n"
-#~ " , . ."
-
#~ msgid ""
#~ "You may now enter your host name if needed. If you\n"
#~ "don't know or are not sure what to enter, leave blank."
@@ -11905,58 +12590,6 @@ msgstr " "
#~ " ', \n"
#~ " ."
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ " SILO:\n"
-#~ " - : , i\n"
-#~ "i, i GNU/Linux. i , \n"
-#~ "i i, \" (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - : \n"
-#~ ", "
-#~ ".\n"
-#~ " i, i \n"
-#~ " i. , i "
-#~ "\"\"\n"
-#~ "\"\" i ."
-
#~ msgid ""
#~ "SILO is a bootloader for SPARC: it is able to boot\n"
#~ "either GNU/Linux or any other operating system present on your computer.\n"
@@ -12084,69 +12717,9 @@ msgstr " "
#~ msgid "ADSL configuration"
#~ msgstr " ADSL"
-#, fuzzy
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ " CUPS \n"
-#~ " , .\n"
-#~ " , \" CUPS\"."
-
#~ msgid "Remote queue"
#~ msgstr " "
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "I "
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "I i"
-
-#, fuzzy
-#~ msgid "Network Monitoring"
-#~ msgstr "i i"
-
-#, fuzzy
-#~ msgid "Profile "
-#~ msgstr " i: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "I "
-
-#, fuzzy
-#~ msgid "Connecting to Internet "
-#~ msgstr " I"
-
-#, fuzzy
-#~ msgid "Disconnecting from Internet "
-#~ msgstr " I"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr " I"
-
-#, fuzzy
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr " I"
-
-#, fuzzy
-#~ msgid "Connection complete."
-#~ msgstr "I "
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr " "
-
#~ msgid "NetWare"
#~ msgstr "NetWare"
@@ -12156,10 +12729,6 @@ msgstr " "
#~ msgid "Disable network"
#~ msgstr "i "
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "i "
-
#~ msgid ""
#~ "You can now test your mouse. Use buttons and wheel to verify\n"
#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
@@ -12171,10 +12740,6 @@ msgstr " "
#~ "\n"
#~ " ."
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr " "
-
#~ msgid "You can specify directly the URI to access the printer with CUPS."
#~ msgstr " URI i CUPS."
@@ -12217,9 +12782,6 @@ msgstr " "
#~ msgid "Extra Text options"
#~ msgstr " "
-#~ msgid "Reverse page order"
-#~ msgstr " "
-
#~ msgid "Select Remote Printer Connection"
#~ msgstr " "
@@ -12252,14 +12814,6 @@ msgstr " "
#~ msgid "Spool directory"
#~ msgstr " i"
-#, fuzzy
-#~ msgid "Disable"
-#~ msgstr "i"
-
-#, fuzzy
-#~ msgid "Enable"
-#~ msgstr "i"
-
#~ msgid ""
#~ "To enable a more secure system, you should select \"Use shadow file\" "
#~ "and\n"
@@ -12281,10 +12835,6 @@ msgstr " "
#~ msgid "yellow pages"
#~ msgstr " i"
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr " ADSL"
-
#~ msgid "Provider dns 1"
#~ msgstr "DNS 1 "
@@ -12294,61 +12844,18 @@ msgstr " "
#~ msgid "How do you want to connect to the Internet?"
#~ msgstr " I?"
-#, fuzzy
-#~ msgid "Selected size %d%s"
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid "Opening your connection..."
-#~ msgstr "i ISDN ?"
-
-#, fuzzy
-#~ msgid "Configure..."
-#~ msgstr " IDE"
-
-#, fuzzy
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr ": i"
-
#~ msgid "This startup script try to load your modules for your usb mouse."
#~ msgstr " i usb ."
-#, fuzzy
-#~ msgid "Boot style configuration"
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
-#~ msgstr ""
-#~ " ' \n"
-#~ " (Internet Connection Sharing)?\n"
-#~ "\n"
-#~ ": .\n"
-#~ "\n"
-#~ " Internet?"
-
#~ msgid "Automatic dependencies"
#~ msgstr " "
#~ msgid "Configure LILO/GRUB"
#~ msgstr " LILO/GRUB"
-#~ msgid "Create a boot floppy"
-#~ msgstr " . "
-
#~ msgid "Choice"
#~ msgstr ""
-#, fuzzy
-#~ msgid "gMonitor"
-#~ msgstr "i"
-
#~ msgid "Miscellaneous"
#~ msgstr ""
@@ -12380,10 +12887,6 @@ msgstr " "
#~ " i, NumLock i \n"
#~ " i (, i `p' `6')."
-#, fuzzy
-#~ msgid "Actions"
-#~ msgstr ""
-
#~ msgid "Scientific applications"
#~ msgstr " "
@@ -12393,10 +12896,6 @@ msgstr " "
#~ msgid "Second DNS Server"
#~ msgstr "i DNS:"
-#, fuzzy
-#~ msgid "using module"
-#~ msgstr " "
-
#~ msgid "%s is already in use"
#~ msgstr "%s "
@@ -13150,9 +13649,6 @@ msgstr " "
#~ msgid "Other countries"
#~ msgstr "I i"
-#~ msgid "Package"
-#~ msgstr ""
-
#~ msgid "Password:"
#~ msgstr ":"
@@ -13406,9 +13902,6 @@ msgstr " "
#~ msgid "Use MD5 passwords"
#~ msgstr " i MD5"
-#~ msgid "Use diskdrake"
-#~ msgstr " DiskDrake"
-
#~ msgid "Use shadow file"
#~ msgstr " "
@@ -13513,9 +14006,6 @@ msgstr " "
#~ msgid "changing type of"
#~ msgstr " "
-#~ msgid "default"
-#~ msgstr " "
-
#~ msgid "dhcp-client"
#~ msgstr "dhcp-client"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 7bea7e548..2ae952797 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -1,84 +1,112 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 1999, 2000 MandrakeSoft
-# Elena Radeva <ely@triada.bg>, 1999.
-# Pavel Cholakov <pavel@linux.home.bg>, 1999.
-# Boyan Ivanov <boyan17@bulgaria.com>, 1999, 2000
-# Bozhan Boiadzhiev <bozhan@plov.omega.bg>, 2000
-# Valery Dachev <valery@zonebg.com>, 2000, 2001
-#
-# Bulgarians on Linux use windows-1251 encoding
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Copyright (c) 2000 MandrakeSoft
+# Bozhan Boiadzhiev <bozhan@plov.omega.bg>, 2000.
#
+#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2000-08-15 15:29+0200\n"
-"Last-Translator: Valery Dachev <valery@zonebg.com>\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2000-02-28 20:56+0200\n"
+"Last-Translator: Bozhan Boiadzhiev <bozhan@plov.omega.bg>\n"
"Language-Team: Bulgarian\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=windows-1251\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 "
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr " Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 "
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr " \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 "
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 "
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 "
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 "
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 "
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 "
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 "
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr " X "
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X "
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr " "
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr " "
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr " "
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr " XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr " X "
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr " XFree ?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X "
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr " X "
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr " Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "X "
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr " \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr " XFree ?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s 3D "
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -89,33 +117,17 @@ msgstr ""
" XFree %s, - "
"2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr " 3D XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s 3D "
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-" 3D XFree %s.\n"
-", "
-"."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s O 3D "
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -129,31 +141,59 @@ msgstr ""
" XFree %s, - "
"2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+" 3D XFree %s.\n"
+", "
+"."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac ( )"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr " XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr " "
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+" ?\n"
+" :\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr " "
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr ""
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -177,511 +217,325 @@ msgstr ""
" .\n"
" , ."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr " "
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr " "
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr " ?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-": \"\" "
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr " "
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 (8 )"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-" "
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 (15 )"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr " :"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 (16 )"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr " %d "
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 (24 )"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr " ?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 (32 )"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr " , "
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr " "
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr " "
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr " "
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr " : %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 : %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr ""
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr " "
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr " ?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr " "
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr " "
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr ": %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr " : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr " : %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr " : %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr " X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr " ?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr " "
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-" ?\n"
-" :\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X "
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"K , X .\n"
" X , ?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr " %s, "
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr " Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 (8 )"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 (15 )"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 (16 )"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 (24 )"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 (32 )"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 "
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 "
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 "
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 "
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 "
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 "
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 "
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 "
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 "
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standard VGA, 640x480 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514-, 1024x768 87 Hz interlaced ( 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 87 Hz interlaced, 800x600 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 60 Hz, 640x480 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 60 Hz, 800x600 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr " SVGA, 1024x768 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr " , 1280x1024 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr " , 1280x1024 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr " , 1280x1024 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr ", 1600x1200 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr ", 1600x1200 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr " "
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr " (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO "
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr " bootloader-?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub "
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO "
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO "
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr " DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr " "
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr " "
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Bootloader "
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr " "
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA ( BIOS-)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr ""
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr ""
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr " "
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr " default "
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr ""
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr " ()"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr " , "
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr ""
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr " /tmp "
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr " RAM-, ( %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr " "
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr " RAM- Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr " `` '' "
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr ", "
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr " "
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr " "
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr " Open Firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr " "
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr " CD ?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr " OF ?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr " ?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -690,83 +544,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
" .\n"
" ."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr ""
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr ""
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr ""
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr " "
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr " (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr " (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr " (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr ""
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr ""
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr ""
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "-"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr ""
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr ""
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr ""
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr " "
@@ -799,53 +653,75 @@ msgstr " swap-"
msgid "This label is already used"
msgstr " "
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr " %s %s "
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr " () ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr " %s ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr ""
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr ""
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr " "
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr " %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "( %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, c-format
+msgid ""
+"You may now provide options to module %s.\n"
+"Options are in format ``name=value name2=value2 ...''.\n"
+"For instance, ``io=0x300 irq=7''"
+msgstr ""
+" %s.\n"
+" ``= 2=2 ...''.\n"
+": ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr " :"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr " %s ?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -864,37 +740,15 @@ msgstr ""
" ? , "
" ."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr " "
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr " "
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-" %s.\n"
-" ``= 2=2 ...''.\n"
-": ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr " :"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -903,50 +757,55 @@ msgstr ""
" %s .\n"
" ?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "( %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr " "
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr ", "
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
" , , `-' `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr " "
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr " "
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr " "
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -955,32 +814,32 @@ msgstr ""
" \n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr " "
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr " "
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr " "
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr ""
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr ""
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -989,123 +848,103 @@ msgstr ""
".\n"
" ?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr " :"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr " Windows Manager :"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr ", ."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr " , "
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr ""
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr " "
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr ""
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr " "
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
" \n"
" , ?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr ""
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr " Cracker-"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr ""
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr ""
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr ""
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr ""
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1115,7 +954,7 @@ msgstr ""
", -: \n"
" . ."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1123,7 +962,7 @@ msgstr ""
" , "
"."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1133,61 +972,62 @@ msgstr ""
" . "
". "
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
" , "
".\n"
" \n"
" . "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
" 4- , .\n"
" ."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr " "
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr " "
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr " libsafe "
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
", a "
"."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1212,7 +1052,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
@@ -1226,7 +1066,7 @@ msgstr "Welcome to GRUB the operating system chooser!"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
@@ -1241,7 +1081,7 @@ msgstr "Use the %c and %c keys for selecting which entry is highlighted."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
@@ -1255,7 +1095,7 @@ msgstr "Press enter to boot the selected OS, 'e' to edit the"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
@@ -1269,27 +1109,27 @@ msgstr "commands before booting, or 'c' for a command-line."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr " /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr " "
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr " bootloader %s\n"
@@ -1302,17 +1142,21 @@ msgstr " .\n"
msgid "Boot Style Configuration"
msgstr " "
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "/_"
+msgstr "/_"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "//_"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<>Q"
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1345,14 +1189,14 @@ msgstr " Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
" %s .\n"
" , ."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr ""
@@ -1362,7 +1206,7 @@ msgid "System mode"
msgstr " "
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr " X-Window "
#: ../../bootlook.pm_.c:148
@@ -1373,14 +1217,16 @@ msgstr ", autologin"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ", autologin (, )"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1429,7 +1275,7 @@ msgstr " "
msgid "Screenshots will be available after install in %s"
msgstr " , "
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr ""
@@ -1437,7 +1283,7 @@ msgstr ""
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr ""
@@ -1466,11 +1312,12 @@ msgstr ""
msgid "Sweden"
msgstr ""
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr ""
@@ -1480,7 +1327,7 @@ msgstr ""
msgid "Austria"
msgstr ""
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1488,8 +1335,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr " backup "
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr " !"
@@ -1503,11 +1350,12 @@ msgstr ""
"\n"
" ) "
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr ""
@@ -1515,11 +1363,11 @@ msgstr ""
msgid "Wizard"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr " "
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1531,144 +1379,149 @@ msgstr ""
" \n"
"( , \" \")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr ", "
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr " FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr " :"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr " ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr ""
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr " ''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
" %s, "
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr " ?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr ", ?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr " /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1676,31 +1529,31 @@ msgstr ""
" , , "
" "
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1708,11 +1561,11 @@ msgstr ""
" \n"
" ?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1720,122 +1573,129 @@ msgstr ""
" \n"
" , , "
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr " RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr " LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr " RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr " LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr " RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr " loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr " : "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr " MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr " : "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr " : "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr " loopback ?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr " ?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr " ext2 ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr " loopback- %s ?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr " %s ?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1844,126 +1704,133 @@ msgstr ""
"loopback.\n"
" loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr " fat "
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
" %s, te "
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr " MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr " ?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr " ?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr " ... "
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr " RAID "
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr " LVM "
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "LVM ?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr " loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr " loopback : "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr " loopback, ."
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr " . ?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr " mount:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr " ?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+" \n"
+" , ?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1975,7 +1842,7 @@ msgstr ""
" LILO , LILO "
" /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1987,7 +1854,7 @@ msgstr ""
" boot LILO, \n"
" /boot "
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1997,129 +1864,129 @@ msgstr ""
" , /boot .\n"
" /boot "
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr " %s !"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr " , "
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr " %s, "
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr " loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr " %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
" %s \n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr " %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr " %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr " DOS: %s ( )\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr ": %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr ": %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s "
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr " %d %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2128,7 +1995,7 @@ msgstr ""
"Loopback ():\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2136,27 +2003,27 @@ msgstr ""
", \n"
" ( MS-DOS boot, lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr " %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr " %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID- %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr " loopback : %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2168,7 +2035,7 @@ msgstr ""
"-, \n"
" .\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2180,64 +2047,64 @@ msgstr ""
" \n"
" .\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr ": %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr ": %s , %s , %s \n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr ": "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM- %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr " : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr " %d %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr ": %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr " : "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr " ( %d )"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr " "
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2246,36 +2113,66 @@ msgid "Change type"
msgstr " "
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr ", "
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr " "
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr " "
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS "
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "DNS "
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %s "
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr " %s %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck %d %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr " %s: %s"
@@ -2292,70 +2189,323 @@ msgstr ""
msgid "server"
msgstr ""
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr " JFS - 16 "
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr " ReiserFS - 32 "
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr " /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr " %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr " LVM %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr " root ."
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
" (ext2, reiserfs) "
"\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr " LVM %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr " "
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr " %s : %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"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 ""
" - , "
" . "
" "
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr " !"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr " "
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr " (DMA) "
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr " "
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "//_..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr " (DMA) "
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway "
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 "
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr " %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d "
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr " \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr " "
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2369,7 +2519,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2521,9 +2671,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2860,7 +3009,7 @@ msgstr ""
#: ../../help.pm_.c:256
#, fuzzy
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2872,9 +3021,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2946,21 +3094,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2976,9 +3123,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
" "
"\n"
@@ -3074,9 +3221,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3273,38 +3419,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3479,11 +3619,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3533,7 +3673,7 @@ msgstr ""
" GNU/Linux, , \n"
" ."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3569,7 +3709,7 @@ msgstr ""
" \"\". "
" ."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3595,7 +3735,7 @@ msgstr ""
", . \n"
" , \"OK\", ."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3623,7 +3763,7 @@ msgstr ""
" . , , \n"
" \"\" ."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3631,23 +3771,23 @@ msgstr ""
", . , COM1 Windows GNU/Linux\n"
" ttyS0."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3669,7 +3809,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3691,7 +3831,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3699,7 +3839,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3720,7 +3860,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3744,7 +3884,7 @@ msgstr ""
" . ,\n"
" boot-, !"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3758,29 +3898,28 @@ msgstr ""
" , , \" \n"
" (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3789,7 +3928,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3814,11 +3953,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3828,9 +3967,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3842,7 +3980,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3868,7 +4006,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3895,18 +4033,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3914,12 +4051,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3935,7 +4071,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3946,7 +4082,7 @@ msgstr ""
" \n"
" ."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3965,7 +4101,7 @@ msgstr ""
" \"\", \n"
" ."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3973,12 +4109,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4002,20 +4138,20 @@ msgstr ""
"\n"
" ?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr " broadcast NIS "
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr " FAT %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr " FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4023,7 +4159,7 @@ msgstr ""
" , ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr " %s"
@@ -4054,7 +4190,7 @@ msgstr " swap-"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4062,59 +4198,59 @@ msgstr ""
"\n"
" ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr " FAT /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr " "
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr " "
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr " "
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr " , "
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr " Windows loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr " Linux4Win ?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr " "
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr " root- MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr " swap- MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr " Windows "
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr " ?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr " Windows "
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4123,12 +4259,15 @@ msgstr ""
" FAT , \n"
" : %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
" Windows , ''defrag''"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -4149,54 +4288,54 @@ msgstr ""
" . .\n"
" , ."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr " windows?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr " %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr " FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
" FAT loopback ( "
" )"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr " "
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr " Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr " , ?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr " e %s "
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr " "
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr " fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4205,11 +4344,11 @@ msgstr ""
" %s.\n"
" , `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr " "
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr " "
@@ -4217,16 +4356,16 @@ msgstr " "
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr " DrakX :"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr " : %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr " "
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr " "
@@ -4238,12 +4377,12 @@ msgstr ""
" , .\n"
" ."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr " %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4255,12 +4394,12 @@ msgstr ""
" \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr " %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr " "
@@ -4270,9 +4409,9 @@ msgstr " "
msgid "Entering step `%s'\n"
msgstr " `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4282,200 +4421,155 @@ msgstr ""
",\n"
" 'F1', CDROM ''."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr ", :"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr " , , %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-" - ,\n"
-" , .\n"
-"\n"
-" - ;\n"
-" 100%% ."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-" %d%% .\n"
-"\n"
-" - ,\n"
-" , .\n"
-" - ;\n"
-" %d%% ."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr " - ."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr " "
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr " : %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr ": %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr ": %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr ": %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr ": %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
" , "
""
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr " / "
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr " , "
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr " . "
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
" \n"
" , ?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr " . "
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "/ "
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr " "
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr " , "
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr " "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr ", , "
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d "
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr " %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4491,17 +4585,17 @@ msgstr ""
" , , CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr " ?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr " :"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr " :"
@@ -4575,11 +4669,11 @@ msgstr " "
msgid "Do you really want to leave the installation?"
msgstr " \"%s\" ?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4594,7 +4688,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4818,113 +4912,117 @@ msgstr ""
" \n"
".\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr ", ."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr " ?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "/"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr " ?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr ", ."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ", ."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr " 2 "
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr " 3 "
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr " PCMCIA ..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr " IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"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 loose all the partitions?\n"
@@ -4935,7 +5033,7 @@ msgstr ""
" DrakX .\n"
"( %s)\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4943,7 +5041,7 @@ msgstr ""
"DiskDrake .\n"
" !"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -4952,75 +5050,78 @@ msgstr ""
" , "
"DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Root "
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr " root- (/) ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr " , "
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr " , "
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr " ?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr " owe"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
" swap , "
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr " "
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr " . "
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
" (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr " (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr " (%d Mb)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr " (%dMb)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5028,55 +5129,55 @@ msgstr ""
" .\n"
" auto_install ."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr " - "
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5086,16 +5187,16 @@ msgstr ""
" CD-, .\n"
" CD-, , Ok. "
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5104,23 +5205,23 @@ msgstr ""
" %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5184,159 +5285,190 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr " , "
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr " ?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr " GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr " ( NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP "
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr " CUPS "
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr " () ?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN "
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV "
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr " Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr " root"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr " ( %d )"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "LDAP "
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP "
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "NIS "
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS "
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS "
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "LDAP "
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "NIS "
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP "
+
+#: ../../install_steps_interactive.pm_.c:1142
+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"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5365,19 +5497,19 @@ msgstr ""
" bootdisk , \n"
" \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5403,7 +5535,7 @@ msgstr ""
" . bootdisk ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5412,28 +5544,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr " , "
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr " bootloader"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5445,11 +5577,11 @@ msgstr ""
" , \n"
" BootX, "
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr " aboot ?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5457,15 +5589,15 @@ msgstr ""
" aboot, \n"
" , ?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr " bootloader"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr " bootloader . :"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5482,18 +5614,17 @@ msgstr ""
" : shut-down\n"
" ."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr " %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5503,7 +5634,8 @@ msgstr ""
"\n"
" ?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5514,7 +5646,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5528,17 +5660,21 @@ msgstr ""
" Errata, : \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
" \n"
" Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr " "
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5552,15 +5688,15 @@ msgstr ""
"\n"
" .\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr " "
@@ -5587,414 +5723,398 @@ msgstr ""
msgid "Choose a file"
msgstr " "
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr " "
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr ""
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr " "
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr " "
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr " "
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr " , \n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr " ? ( %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr " ? ( %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr ": %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr " aboot ?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr " ? ( %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr " (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr ""
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr ""
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr ""
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr ""
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr ""
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr ""
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr ""
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr ""
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr ""
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "U "
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US "
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr ""
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr " ()"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr " ( )"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr " ()"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr " ()"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr ""
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr " ()"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr ""
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr " (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr ""
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr " ( )"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr " ( )"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr " (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr " ( )"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr ""
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr " (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr " ()"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr " (US)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr ""
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr " (\"\" )"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr " (\"\" )"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr ""
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr ""
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr ""
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr ""
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr " ()"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr ""
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr ""
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr ""
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr " 106 "
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr " "
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr ""
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr " AZERTY ()"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr " AZERTY ()"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr " \" \" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr " \"\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr ""
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr ""
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr ""
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr " (QWERTY )"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr " (QWERTZ )"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr ""
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr " ()"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr " (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr " (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr " (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr ""
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr " (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr " (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr " ()"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr ""
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr " "
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr " "
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr " ( \"F\" )"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr " ( \"Q\" )"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr ""
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US ()"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr " \" \" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr " ()"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -6007,7 +6127,31 @@ msgstr "\" \" : %s\n"
msgid "Remove the logical volumes first\n"
msgstr " \n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr " "
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr " "
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6048,10 +6192,6 @@ msgstr "1 "
msgid "Generic 2 Button Mouse"
msgstr " 2- "
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr ""
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Wheel"
@@ -6116,38 +6256,54 @@ msgstr ""
msgid "No mouse"
msgstr " "
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr ", "
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr " ,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr " !"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr ""
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr " ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- "
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr " ?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr " "
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr " "
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr " "
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr " "
@@ -6194,7 +6350,7 @@ msgstr ""
" .\n"
" ."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr " "
@@ -6207,7 +6363,7 @@ msgstr ", "
msgid "no network card found"
msgstr " "
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr " "
@@ -6223,15 +6379,15 @@ msgstr ""
"Host ,\n"
" ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr " :"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr " "
@@ -6286,7 +6442,7 @@ msgstr " IDSN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
" .\n"
" , Unlisted"
@@ -6305,14 +6461,14 @@ msgstr " "
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
" \n"
" D- ( )"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr " ?"
#: ../../network/isdn.pm_.c:199
@@ -6336,7 +6492,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
" ISA , .\n"
@@ -6352,13 +6509,13 @@ msgid "Continue"
msgstr ""
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr " ISDN ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
" ISDN PCI , . PCI "
" ."
@@ -6375,47 +6532,47 @@ msgstr ", ."
msgid "Dialup options"
msgstr " "
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr " "
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr " "
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr " "
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr " "
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr " "
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr " "
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr " DNS ( )"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr " DNS ( )"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6423,7 +6580,7 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6431,11 +6588,11 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr " "
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6443,33 +6600,33 @@ msgstr ""
"\n"
" ."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr " "
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr ""
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr ""
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr " "
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr " %s ."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6487,12 +6644,12 @@ msgstr ""
"\n"
" OK, ."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr " "
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6503,9 +6660,9 @@ msgstr ""
" Ok, , , "
" .\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6515,66 +6672,72 @@ msgstr ""
" / .\n"
" , .\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr " "
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr " "
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr " "
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr " ..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr " %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN "
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr " %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL "
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr " %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr " "
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN "
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "ethernet "
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr " , "
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6584,23 +6747,23 @@ msgstr ""
" , .\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr " "
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr " ?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr " "
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr " "
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6611,7 +6774,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6621,7 +6784,7 @@ msgstr ""
"\n"
" .\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6629,16 +6792,16 @@ msgstr ""
" , X\n"
" , ."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6647,7 +6810,7 @@ msgstr ""
" , .\n"
" - ."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6657,38 +6820,43 @@ msgstr ""
" IP \n"
" - (, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr " %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " ( %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP "
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr " "
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr " IP "
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr " "
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6700,64 +6868,64 @@ msgstr ""
" ``mybox.mylab.myco.com''.\n"
" IP gateway, "
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS "
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway "
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr " proxy"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr " ID ( )"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy- http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy- ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr " "
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr " ?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr " ..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr " ."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr " , ."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6765,111 +6933,116 @@ msgstr ""
" .\n"
" ."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr " "
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr ", -"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ "
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr " (DMA) "
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO "
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 "
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 "
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr " "
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr " (. provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr " "
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "1- DNS ( )"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "2- DNS ( )"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr " "
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr " "
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr " "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Timeout ( )"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr " ( )"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr " "
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr " : "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr " "
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
" , .\n"
" , "
" extended-"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr " %s : %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr " backup-"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr " %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6880,188 +7053,188 @@ msgstr ""
" , \n"
" "
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr ""
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr ""
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr " "
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr ""
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr ""
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Unix "
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR "
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - "
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - , "
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr " "
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr " "
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr " CUPS "
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr " LPD "
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr " (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr " SMB/Windows 95/98/NT "
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr " NetWare "
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr " URI "
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr " "
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr " "
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr " "
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr " "
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr " %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "( %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "( )"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP CUPS "
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " ( )"
@@ -7085,12 +7258,12 @@ msgstr ""
"; . ,\n"
" \" CUPS \" ."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr ""
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr " CUPS "
@@ -7140,7 +7313,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr " !"
@@ -7148,7 +7321,7 @@ msgstr " !"
msgid "CUPS server IP"
msgstr "IP CUPS "
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr ""
@@ -7156,21 +7329,13 @@ msgstr ""
msgid "Automatic CUPS configuration"
msgstr " CUPS"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr " ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr " "
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr " "
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7183,14 +7348,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr " "
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7208,12 +7373,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr " "
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7227,11 +7392,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7241,35 +7406,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr " "
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr " "
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr " "
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr " %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7277,43 +7446,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr " URI "
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr " "
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7321,7 +7490,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7329,72 +7498,82 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr ", ."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr " URI "
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr " "
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr " ..."
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr " lpd-"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7404,27 +7583,27 @@ msgstr ""
" \n"
" ."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr " "
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr " "
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr " !"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr " !"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr " SMB (Windows 9x/NT) "
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7438,35 +7617,35 @@ msgstr ""
", , \n"
" ."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr " SMB "
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP SMB :"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr " "
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr " "
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr " IP !"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr " SAMBA share !"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7490,7 +7669,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7499,7 +7678,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7507,11 +7686,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr " NetWare "
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7522,28 +7701,28 @@ msgstr ""
" NetWare , \n"
" , , ,."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr " "
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr " "
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr " NCP !"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr " NCP !"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr " Socket "
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7557,19 +7736,19 @@ msgstr ""
" . \n"
" ."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr " "
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr " a !"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr " URI"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7579,11 +7758,11 @@ msgstr ""
" CUPS Foomatic . , "
" URI spooler-."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr " URI !"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
#, fuzzy
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
@@ -7593,28 +7772,24 @@ msgstr ""
" \n"
". ."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr " "
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr ""
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr ""
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr " "
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7629,26 +7804,26 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr " ?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr " "
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr " "
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr " ?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7657,17 +7832,17 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr " OKI Winprinter"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7677,11 +7852,11 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr " Lexmark inkjet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
#, fuzzy
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
@@ -7694,7 +7869,7 @@ msgstr ""
" . , \n"
" , ."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7707,7 +7882,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
#, fuzzy
msgid ""
"Printer default settings\n"
@@ -7723,22 +7898,22 @@ msgstr ""
", \n"
", ."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr " %s !"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr " %s !"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr " %s !"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7747,11 +7922,11 @@ msgstr ""
" (\"%s\")\n"
" ?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr " "
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
#, fuzzy
msgid ""
"Please select the test pages you want to print.\n"
@@ -7764,40 +7939,40 @@ msgstr ""
" \n"
" . ."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr " "
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr ""
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr " "
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr " ()"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr " (4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr " "
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr " "
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr " (/) (/) ..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7812,7 +7987,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -7820,15 +7995,15 @@ msgstr ""
" .\n"
" .\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr " ?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr ""
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7841,7 +8016,7 @@ msgstr ""
"<file>\" \"kprinter <file>\". "
" .\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -7851,8 +8026,8 @@ msgstr ""
" . , "
" .\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7865,23 +8040,23 @@ msgstr ""
" . "
" , . \"%s <file>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
" , "
" - \" \".\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7890,8 +8065,8 @@ msgstr ""
" ( ) "
" \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -7901,7 +8076,7 @@ msgstr ""
" . , "
" .\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
#, fuzzy
msgid ""
"To get a list of the options available for the current printer click on the "
@@ -7911,7 +8086,7 @@ msgstr ""
"\" \".\n"
"\n"
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -7920,7 +8095,7 @@ msgstr ""
" ( ), "
" \"%s <file>\" \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7930,7 +8105,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7943,29 +8118,40 @@ msgstr ""
" . "
" , . \"%s <file>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr ""
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr " \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr " \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr " \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr " \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr " "
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7973,36 +8159,36 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr " "
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, fuzzy, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8018,7 +8204,7 @@ msgstr ""
".\n"
" :\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
#, fuzzy
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
@@ -8027,7 +8213,7 @@ msgstr ""
"CUPS Novell \n"
" - .\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
#, fuzzy
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
@@ -8036,11 +8222,11 @@ msgstr ""
"PDQ , LPD \n"
" Socket/TCP .\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD LPRng IPP .\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
#, fuzzy
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
@@ -8049,7 +8235,7 @@ msgstr ""
" , \n"
" \"foomatic-configure\" ."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
#, fuzzy
msgid ""
"\n"
@@ -8061,7 +8247,7 @@ msgstr ""
" CUPS \n"
" ."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8071,15 +8257,15 @@ msgstr ""
" , \n"
"\"\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr " "
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8090,11 +8276,11 @@ msgstr ""
" \"\", .\n"
" ."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr " , "
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8103,16 +8289,16 @@ msgstr ""
" \"%s\" ,\n"
" ?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr " "
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr " %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, fuzzy, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8122,29 +8308,29 @@ msgstr ""
" \n"
" %s ?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr " "
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr " ...."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr " "
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr " "
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8152,11 +8338,11 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr " "
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8166,7 +8352,7 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
#, fuzzy
msgid ""
"The network access was not running and could not be started. Please check "
@@ -8178,24 +8364,24 @@ msgstr ""
". \n"
"."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr " "
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr ""
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr ""
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr " %s "
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8210,11 +8396,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr " "
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8228,66 +8414,66 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr " LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr " LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr " spooler"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr " (spooler) ?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr " \"%s\" ..."
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr " ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr " "
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr " PinterDrake ..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr " \"%s\" ..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr " ?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr " : "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr ""
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8300,7 +8486,7 @@ msgstr ""
" , \n"
" \" \", ."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8312,29 +8498,33 @@ msgstr ""
" , \n"
" \" \", ."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr " "
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr " "
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr " ?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr " "
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
@@ -8343,103 +8533,103 @@ msgstr ""
" %s: %s %s\n"
" ?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr " !"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr " "
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr " , , "
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr " , , "
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr " , "
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr " "
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr " "
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr " ?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr " "
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr " \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr " "
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr " \"%s\" ."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr " \"%s\" ?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr " \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8524,24 +8714,61 @@ msgstr " . !"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr " __ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr " %s "
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid "
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid ( raidtools ?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr " RAID %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+" . - \n"
+", -: \n"
+" . ."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+" , "
+".\n"
+" \n"
+" . "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr " "
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr ""
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr " ALSA (Advanced Linux Sound Architecture) "
@@ -8597,7 +8824,7 @@ msgstr ""
"HardDrake , \n"
"/ ."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8675,7 +8902,7 @@ msgstr ""
"Linux Virtual Server \n"
" ."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8752,7 +8979,7 @@ msgstr ""
"NFS NIS. portmap , \n"
" , RPC ."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8848,7 +9075,7 @@ msgstr ""
msgid "File sharing"
msgstr " "
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr ""
@@ -8967,6 +9194,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr " "
@@ -9070,6 +9298,15 @@ msgstr ""
msgid "Installing packages..."
msgstr " ..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr " Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr " %s, "
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9078,6 +9315,161 @@ msgstr ""
" , :(\n"
" "
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr " -"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr " -"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS "
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS "
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP "
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP "
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr " ..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr " %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr " "
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr " !"
@@ -9118,6 +9510,11 @@ msgstr ""
", , , "
" "
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr " "
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9126,12 +9523,12 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr " !"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9139,36 +9536,29 @@ msgstr ""
" .\n"
" ."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr ""
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr " "
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr " loopback ?"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9176,15 +9566,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9192,710 +9574,773 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr " %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr " "
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr " "
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr " Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr " "
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr " backup-"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr ", "
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr ", "
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr ", "
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr " "
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "LAN "
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr " "
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr ", ."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr ", "
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr ", , ."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr ", "
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr " "
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr " "
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr ", ."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr " ?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr " ?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr " "
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr " :"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr " "
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr " "
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr " : %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1983
+#, c-format
+msgid ""
+"\n"
+"- Save via %s on host : %s\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr ", ."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr " "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr ", ."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr ", "
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "LAN "
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr " "
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr " "
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr ", ."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr ""
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr " "
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr " "
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr " "
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr ""
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- "
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr ""
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr " "
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr ""
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr " "
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr " "
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr ", ."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr ", ."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr ", ."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr " backup-"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr " "
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr ", "
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr ", , ."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr " "
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr " "
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr ""
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr " "
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr " "
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9927,7 +10372,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9936,7 +10381,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9977,7 +10422,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10005,12 +10450,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10027,7 +10477,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10067,7 +10517,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10078,7 +10528,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10091,7 +10541,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10135,105 +10585,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr " %s . :"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr " "
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr " "
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr " "
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr " , "
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr " (%d )"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr ": "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr " :"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+" ( ):"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr " :"
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr ": "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr ":"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr ":"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr " LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr " , ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr ", ... "
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr " ..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+" .\n"
+" , ''"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr " %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP "
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+" Internet .\n"
+" , ''"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr " "
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr " : "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet "
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP "
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr ": drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr " DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd "
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr " scsi "
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr " raid "
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr ""
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr " "
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr " %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+" %s.\n"
+" ."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr " : %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+" mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s "
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr ""
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr " "
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr " "
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr " "
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr ""
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10242,123 +11118,122 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr " "
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr " "
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr " "
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr " "
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr " , "
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr ""
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr ""
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr ""
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr " "
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr " "
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr " "
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr " "
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr " !"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr ""
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr " !"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr " "
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr " "
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr " "
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10370,31 +11245,31 @@ msgstr ""
"\n"
" ?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr ""
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr " ..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr " ."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr " ."
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10406,19 +11281,19 @@ msgstr ""
"\n"
" ?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr ""
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr " ..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr " ."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10434,21 +11309,21 @@ msgstr ""
": , "
" (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr " %s ( %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr " %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr " !"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10456,11 +11331,11 @@ msgstr ""
" ethernet . , "
" ."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr " "
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10475,19 +11350,19 @@ msgstr ""
"\n"
" ."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
" ."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr " "
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10497,17 +11372,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr " CUPS"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr " "
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10518,7 +11393,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10530,33 +11405,33 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP CUPS "
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr " LAN %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr " !"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10564,21 +11439,21 @@ msgstr ""
" ! . "
" ."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr " ..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
" , , ..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr " %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10588,23 +11463,23 @@ msgstr ""
" "
" (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr " , ."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr " ."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr " ."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr " "
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10619,211 +11494,6 @@ msgstr ""
"\n"
" ``'', ."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr " (%d )"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr ": "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr " :"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-" ( ):"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr " :"
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr " "
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr ": "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr ":"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ":"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr " LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr ""
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr " , ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr ", ... "
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr ""
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr " "
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr " ..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-" .\n"
-" , ''"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr " "
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr " %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr " "
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr " "
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP "
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr " "
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr " "
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-" Internet .\n"
-" , ''"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr " "
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr " "
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr " : "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet "
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP "
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr " "
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr " "
@@ -10832,94 +11502,130 @@ msgstr " "
msgid "Choose the tool you want to use"
msgstr " , "
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr " ()"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr ""
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr ""
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr " :"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10965,7 +11671,7 @@ msgstr " !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr ""
@@ -10979,7 +11685,7 @@ msgstr "//_"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
-msgstr "<>N"
+msgstr "<control>N"
#: ../../standalone/logdrake_.c:103
msgid "/File/_Open"
@@ -10987,7 +11693,7 @@ msgstr "//_"
#: ../../standalone/logdrake_.c:103
msgid "<control>O"
-msgstr "<>O"
+msgstr "<control>O"
#: ../../standalone/logdrake_.c:104
msgid "/File/_Save"
@@ -10995,11 +11701,11 @@ msgstr "//_"
#: ../../standalone/logdrake_.c:104
msgid "<control>S"
-msgstr "<>S"
+msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "// _"
+msgstr "// _"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11013,13 +11719,9 @@ msgstr "/_"
msgid "/Options/Test"
msgstr "//"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "//_..."
+msgstr "//_..."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -11080,7 +11782,7 @@ msgstr ""
msgid "Content of the file"
msgstr " "
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -11089,12 +11791,12 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr " , : %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr " LILO/Grub"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
#, fuzzy
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
@@ -11106,69 +11808,98 @@ msgstr ""
" HTTP FTP proxy\n"
" \n"
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "shadow"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr " "
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr ""
+msgid "Ftp Server"
+msgstr "NIS "
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix , Inn "
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS "
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "NIS "
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr ""
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr " "
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr ""
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr ""
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr " "
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr " ..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr ", ."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr " serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr " ?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr " ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr " ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11212,6 +11943,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr " "
@@ -11615,10 +12358,6 @@ msgid "Multimedia - Sound"
msgstr " - "
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr ""
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr ""
@@ -11723,10 +12462,6 @@ msgstr ""
"tin..) "
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr ", , "
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr " "
@@ -11773,2126 +12508,218 @@ msgstr " - CD"
msgid "Scientific Workstation"
msgstr " "
-#, fuzzy
-#~ msgid "About"
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-
-#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
-#~ msgstr ""
-#~ " "
-#~ " ( %s )"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr ""
-
-#~ msgid "Choose a default printer!"
-#~ msgstr " "
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck %d %d"
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "/ "
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr " : %s\n"
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr " %s."
+#~ msgid "Choose options for server"
+#~ msgstr " "
-#~ msgid "mount failed"
-#~ msgstr " "
+#~ msgid "Monitor not configured"
+#~ msgstr " "
-#~ msgid "Low"
-#~ msgstr ""
+#~ msgid "Graphics card not configured yet"
+#~ msgstr " "
-#~ msgid "Medium"
-#~ msgstr ""
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr " "
#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ " . , \n"
-#~ " ."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr ""
-
-#~ msgid "Boot mode"
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid ""
-#~ "To know about the options available for the current printer read either "
-#~ "the list shown below or click on the \"Print option list\" button. %s\n"
#~ "\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ " , "
-#~ " - \" "
-#~ "\".\n"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "GNU/Linux GMT ( )\n"
-#~ " , ."
-
-#~ msgid "Connect to Internet"
-#~ msgstr " "
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr " "
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr " (LAN )"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr " ?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr ", , ."
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Gnome "
-
-#~ msgid "authentification"
-#~ msgstr ""
-
-#~ msgid "user"
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "Apache World Wide Web (WWW) . HTML "
-#~ "\n"
-#~ " CGI."
-
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) Domain Name Server (DNS), \n"
-#~ " IP ."
-
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr ", ."
+#~ " "
-#~ msgid "Scanning available nfs shared resource"
-#~ msgstr " NFS "
+#~ msgid "An error occurred:"
+#~ msgstr " :"
-#~ msgid "Scanning available nfs shared resource of server %s"
-#~ msgstr " NFS %s"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr " %d "
-#~ msgid "Scanning available samba shared resource"
-#~ msgstr " SAMBA "
+#~ msgid "Is this the correct setting?"
+#~ msgstr " ?"
-#~ msgid "Scanning available samba shared resource of server %s"
-#~ msgstr " SAMBA %s"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr " , "
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr ""
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 : %s"
-#~ msgid "Removable media"
-#~ msgstr " "
+#~ msgid "Show all"
+#~ msgstr " "
-#~ msgid "Active"
-#~ msgstr ""
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr " X-Window"
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr ""
+#~ msgid "What do you want to do?"
+#~ msgstr " ?"
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr " \"%s\", "
+#~ msgid "Change Monitor"
+#~ msgstr " "
-#~ msgid "Local Printer Device"
-#~ msgstr " "
+#~ msgid "Change Graphics card"
+#~ msgstr " "
-#~ msgid "Printer Device"
-#~ msgstr " "
+#~ msgid "Change Server options"
+#~ msgstr " "
-#~ msgid "Device/file name missing!"
-#~ msgstr " / !"
+#~ msgid "Change Resolution"
+#~ msgstr " "
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "() () CUPS ()"
+#~ msgid "Show information"
+#~ msgstr " "
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "() () ()"
+#~ msgid "Test again"
+#~ msgstr " "
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
+#~ msgid "Setting security level"
+#~ msgstr " "
-#, fuzzy
-#~ msgid " System "
-#~ msgstr ""
+#~ msgid "Graphics card"
+#~ msgstr " "
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr ", ."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr ", "
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr ": "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr " backup-"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr " "
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr " "
+#~ msgid "Select a graphics card"
+#~ msgstr " "
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr ""
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "Ok"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr ""
-
-#~ msgid "Starting your connection..."
-#~ msgstr " ...."
-
-#~ msgid "Closing your connection..."
-#~ msgstr " ..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ " .\n"
-#~ " , \n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ " root."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr " ."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr " , "
-
-#~ msgid "Total size: "
-#~ msgstr " : "
-
-#~ msgid "Please wait, "
-#~ msgstr ", , "
-
-#~ msgid "Total time "
-#~ msgstr " "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr " X11 ?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
#~ msgstr ""
-#~ " \n"
-#~ "(: /dev/lp0 LPT1) ?\n"
+#~ ": \"\" "
+#~ ""
-#~ msgid "%s"
-#~ msgstr "%s"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standard VGA, 640x480 60 Hz"
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ", . ."
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 56 Hz"
-#~ msgid "New"
-#~ msgstr ""
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514-, 1024x768 87 Hz interlaced ( 800x600)"
-#~ msgid "Remote"
-#~ msgstr ""
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 87 Hz interlaced, 800x600 56 Hz"
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr ""
-#~ ", -\n"
-#~ "\n"
-#~ " \"\""
-
-#~ msgid "Use \"New\""
-#~ msgstr " \"\""
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 60 Hz, 640x480 72 Hz"
-#~ msgid "If the list above doesn't contain the wanted entry, enter it here:"
-#~ msgstr " - , :"
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 60 Hz, 800x600 72 Hz"
-#~ msgid "Shared resource"
-#~ msgstr " "
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr " SVGA, 1024x768 70 Hz"
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "..... (%s), -\n"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr " , 1280x1024 60 Hz"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? ( %s)"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr " , 1280x1024 74 Hz"
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr " ? ( %s, 'none' )"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr " , 1280x1024 76 Hz"
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr " /etc/sysconfig/autologin : %s"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr ", 1600x1200 70 Hz"
-#~ msgid "Do you want to restart the network"
-#~ msgstr " ?"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ " ?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr " :\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr ""
-#~ " %s. ?"
-
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ " , \"/dev/hda\"\n"
-#~ "( IDE ) \"/dev/sda\" ( SCSI )."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr ", 1600x1200 76 Hz"
#~ msgid ""
-#~ "The following printers are configured.\n"
-#~ "You can add some more or modify the existing ones."
-#~ msgstr ""
-#~ " .\n"
-#~ " ."
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr " , , %d MB.\n"
#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "If you continue, I will shut down your %s environnement"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
+#~ " - ,\n"
+#~ " , .\n"
#~ "\n"
-#~ " , %s "
+#~ " - ;\n"
+#~ " 100%% ."
#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "Warning:\n"
-#~ "Applying the changes while running may crash your X environnement."
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
+#~ " %d%% .\n"
#~ "\n"
-#~ ":\n"
-#~ " X ."
-
-#~ msgid "%s is already in use"
-#~ msgstr " %s "
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "( )"
-
-#~ msgid "A command line must be entered!"
-#~ msgstr " !"
+#~ " - ,\n"
+#~ " , .\n"
+#~ " - ;\n"
+#~ " %d%% ."
-#~ msgid "ADSL configuration"
-#~ msgstr " ADSL"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr " - ."
-#~ msgid "Adapter"
-#~ msgstr ""
+#~ msgid "Percentage of packages to install"
+#~ msgstr " "
-#~ msgid "Add location of packages"
-#~ msgstr " "
+#~ msgid "Please choose the desired security level."
+#~ msgstr " "
-#~ msgid "After formatting all partitions,"
-#~ msgstr " ,"
+#~ msgid "hide expert mode"
+#~ msgstr " "
-#~ msgid "Alcatel modem"
-#~ msgstr " Alcatel"
+#~ msgid "show expert mode"
+#~ msgstr " "
#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
#~ msgstr ""
-#~ " , ?\n"
-#~ " , .\n"
-#~ " : ``Use shadow file for passwords?'',\n"
-#~ " ?"
-
-#~ msgid "Auto install floppy"
-#~ msgstr " "
-
-#~ msgid "Automatic dependencies"
-#~ msgstr " "
-
-#~ msgid "Available packages"
-#~ msgstr " "
+#~ " '%s' ,\n"
+#~ " "
#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
#~ msgstr ""
-#~ ", numlock \n"
-#~ " (: 'p' '6')"
+#~ "! '%s'.\n"
+#~ " '%s' .\n"
+#~ " , . "
-#~ msgid "Boot style configuration"
-#~ msgstr " "
+#~ msgid "unknown"
+#~ msgstr ""
-#~ msgid "CUPS starting"
-#~ msgstr " CUPS"
-
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr " supermount "
+#~ msgid "Select a module or write his name:"
+#~ msgstr " :"
#~ msgid "Category"
#~ msgstr ""
-#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
-#~ msgstr ""
-#~ " (IRC ) xchat, licq, gaim "
-#~ " "
-
-#~ msgid "Checking dependencies"
-#~ msgstr " "
-
-#~ msgid "Choice"
-#~ msgstr ""
-
-#~ msgid "Choose"
-#~ msgstr ""
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr " -"
-
-#~ msgid "Collapse all"
-#~ msgstr " "
-
-#~ msgid "Color depth options"
-#~ msgstr " "
-
-#~ msgid "Command line"
-#~ msgstr " "
-
-#~ msgid "Communication facilities"
-#~ msgstr " "
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr " ."
-
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr " Lilo/Grub"
-
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr " LILO/GRUB"
-
-#~ msgid "Configure local network"
-#~ msgstr " "
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr " / "
-
-#~ msgid "Configure timezone"
-#~ msgstr " "
-
-#~ msgid "Configure..."
-#~ msgstr " ..."
-
-#~ msgid "Confirm Password"
-#~ msgstr " "
-
-#~ msgid "Connecting to Internet "
-#~ msgstr " "
-
-#~ msgid "Connection Time: "
-#~ msgstr " : "
-
-#~ msgid "Connection complete."
-#~ msgstr " ."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ " .\n"
-#~ " Mandrake Control Center."
-
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Timeout ( ) [ , ]"
-
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr " \"%s\" !"
-
-#~ msgid "Create a boot floppy"
-#~ msgstr " boot-"
-
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
-#~ msgstr ""
-#~ " boot . \n"
-#~ " , \n"
-#~ " ."
-
-#~ msgid "Customized"
-#~ msgstr ""
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr " ()"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr ", DNS/DHCP "
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "DSL ( ADSL) "
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr " (MySQL PostgreSQL)"
-
-#~ msgid "Default Runlevel"
-#~ msgstr "Runlevel "
-
-#~ msgid "Development C/C++"
-#~ msgstr " C/C++"
-
-#~ msgid "Development, Database"
-#~ msgstr ", -"
-
-#~ msgid "Development, Integrated Environment"
-#~ msgstr ", "
-
-#~ msgid "Development, Standard tools"
-#~ msgstr ", "
-
-#~ msgid "Directory"
-#~ msgstr ""
-
-#~ msgid "Disable"
-#~ msgstr ""
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr " "
-
-#~ msgid "Disable network"
-#~ msgstr " "
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr " "
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr " ."
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr " ."
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ " Linux ?"
-
-#~ msgid "ECI modem"
-#~ msgstr " ECI"
-
-#~ msgid "Eject page after job?"
-#~ msgstr " ?"
-
-#~ msgid "Enable"
-#~ msgstr ""
-
-#~ msgid "Enable network"
-#~ msgstr " "
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr " Num Lock- "
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ " ( ) \n"
-#~ " ( lp) spool- . \n"
-#~ " "
-#~ " ?"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ " (, \"lp\").\n"
-#~ " "
-#~ "\n"
-#~ " . \n"
-#~ " ?"
-
-#~ msgid "Expand all"
-#~ msgstr " "
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr " GhostScript "
-
-#~ msgid "Extra Text options"
-#~ msgstr " "
-
-#~ msgid "File/Print/Samba"
-#~ msgstr ", //Samba"
-
-#~ msgid "Find Package"
-#~ msgstr " "
-
-#~ msgid "Find Package containing file"
-#~ msgstr " "
-
-#~ msgid "Finding leaves"
-#~ msgstr " "
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr " "
-
-#~ msgid "First DNS Server"
-#~ msgstr " DNS "
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr " stair-stepping ?"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ " FTP HTTP, hdlist\n"
-#~ " URL- "
-
-#~ msgid "Format all"
-#~ msgstr " "
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "GNU/Linux . \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " , \"\n"
-#~ "\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Unix , "
-#~ "\n"
-#~ "\" \".\n"
-#~ "\n"
-#~ "\n"
-#~ " Microsoft Windows "
-#~ "\n"
-#~ "( Unix SMB ), \"SMB/Windows "
-#~ "95/98/NT\"."
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr " (.: `extra', `commercial')"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr " %s"
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr " "
-
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr " ?"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr " ISDN :\n"
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ " X, \n"
-#~ " X Window ."
-
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ " - \n"
-#~ " , \n"
-#~ " . "
-#~ "\n"
-#~ "DNS (name server), "
-#~ "\n"
-#~ "."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ " CD- -, Ok. \n"
-#~ " CD-, . CD-, "
-#~ " ,\n"
-#~ " Ok."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ " , \"\". \n"
-#~ " , \"\"."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ " proxy , , . ,\n"
-#~ " ."
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ " ( , \n"
-#~ " ), , "
-#~ ", \n"
-#~ " -. , "
-#~ "\"\"."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ " , , "
-#~ "\n"
-#~ "CUPS LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS , Unix (CUPS\n"
-#~ " \" Unix \"). "
-#~ " \n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR , Mandrake Linux "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ " , \"\"."
-
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ " \n"
-#~ " , , . , "
-#~ "\n"
-#~ " , DrakX "
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " , \n"
-#~ "\" \".\n"
-#~ "\n"
-#~ "\n"
-#~ " -, , "
-#~ " , \"\"."
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr ""
-#~ " ADSL Alcatel, Alcatel. , ECI."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ " , , , DrakX "
-#~ " ."
-
-#~ msgid ""
-#~ "If your network uses the LDAP (or NIS) protocol for authentication, "
-#~ "select\n"
-#~ "\"LDAP\" (or \"NIS\") as authentication. If you don't know, ask your "
-#~ "network\n"
-#~ "administrator.\n"
-#~ "\n"
-#~ "If your computer is not connected to any administrated network, you may "
-#~ "want to\n"
-#~ "choose \"Local files\" for authentication."
-#~ msgstr ""
-#~ " LDAP ( NIS) , \n"
-#~ "\"LDAP\" ( \"NIS\") . , "
-#~ "\n"
-#~ ".\n"
-#~ "\n"
-#~ " , "
-#~ "\n"
-#~ " \" \" ."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ " NIS, \" NIS\". ,\n"
-#~ " ."
-
-#~ msgid "In which country are you located ?"
-#~ msgstr " ?"
-
-#~ msgid "Installed packages"
-#~ msgstr " "
-
-#~ msgid "Internet Tools"
-#~ msgstr " "
-
-#~ msgid "Internet/Network access"
-#~ msgstr "/ "
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "KDE, QT, Gnome, GTK+"
-#~ msgstr "KDE, QT, Gnome, GTK+"
-
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ " LILO GRUB :\n"
-#~ " - Boot : (.. \n"
-#~ "), boot . \"/dev/hda\", \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " - : "
-#~ "\n"
-#~ " , "
-#~ "\n"
-#~ ". , "
-#~ "\n"
-#~ " . , \"delay\" \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " - : VGA , \n"
-#~ " . :\n"
-#~ " * normal: 80x25 .\n"
-#~ "\n"
-#~ " * <number>: .\n"
-#~ "\n"
-#~ "\n"
-#~ " - \"/tmp\" : "
-#~ "\n"
-#~ " \"/tmp\", "
-#~ ",\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " - RAM, : , , \n"
-#~ " BIOS RAM . , GNU/Linux "
-#~ "\n"
-#~ " RAM. , \n"
-#~ " RAM. , 2 4 MB\n"
-#~ " RAM ."
-
-#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
-#~ msgstr ""
-#~ " .\n"
-#~ " :"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Miscellaneous"
-#~ msgstr ""
-
-#~ msgid "Miscellaneous questions"
-#~ msgstr " "
-
-#~ msgid "Modify printer"
-#~ msgstr " "
-
-#~ msgid "Name of queue"
-#~ msgstr " "
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr " :"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Network Monitoring"
-#~ msgstr " "
-
-#~ msgid "Network adaptater 1 (eth0):"
-#~ msgstr " 1 (eth0):"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr " CDROM ( /mnt/cdrom)"
-
-#~ msgid "No match"
-#~ msgstr " "
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ " . , , .\n"
-#~ "\n"
-#~ "\n"
-#~ " , ( \"COM1\" Microsoft\n"
-#~ "Windows) \"ttyS0\" Linux."
-
-#~ msgid "No more match"
-#~ msgstr " "
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ " X Window System, \n"
-#~ "GNU/Linux GUI ( ). \n"
-#~ " . - \n"
-#~ ", "
-#~ "\n"
-#~ " :)\n"
-#~ "\n"
-#~ "\n"
-#~ " , X ( \n"
-#~ "DrakX ), . "
-#~ "\n"
-#~ " , , \n"
-#~ " ."
-
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
-#~ msgstr ""
-#~ ", ,\n"
-#~ " .\n"
-#~ ": , "
-#~ " (LAN).\n"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr " "
-
-#~ msgid "Opening your connection..."
-#~ msgstr " ..."
-
-#~ msgid "Other countries"
-#~ msgstr " "
-
-#~ msgid "Package"
-#~ msgstr ""
-
-#~ msgid "Paper Size"
-#~ msgstr " "
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr " ."
-
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ ", .\n"
-#~ ", , .\n"
-#~ "\n"
-#~ "\n"
-#~ " , "
-#~ " ."
-
-#~ msgid "Please submit the following information"
-#~ msgstr ", "
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr ", ."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
-#~ msgstr ""
-#~ ", , DrakX "
-#~ "\n"
-#~ " .\n"
-#~ "\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " * : , spooler \"lp\" "
-#~ " . \n"
-#~ " \"lp\".\n"
-#~ " , "
-#~ ". pipe\n"
-#~ " (\"|\"). , - , "
-#~ " , . \"My printer|lp\".\n"
-#~ " \"lp\" () "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ " * : , , "
-#~ " \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " * : \n"
-#~ " , ( "
-#~ ",\n"
-#~ " \"2- \").\n"
-
-#~ msgid "Press next to continue."
-#~ msgstr " , ."
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr " PostScript ?"
-
-#~ msgid "Profile "
-#~ msgstr " "
-
-#~ msgid "Provider dns 1"
-#~ msgstr "1- DNS "
-
-#~ msgid "Provider dns 2"
-#~ msgstr "2- DNS "
+#~ msgid "preload module"
+#~ msgstr " "
-#~ msgid "Python, Perl, libraries, tools"
-#~ msgstr "Python, Perl, , "
+#~ msgid "click on a category"
+#~ msgstr " "
-#~ msgid "Receiving Speed:"
-#~ msgstr " : "
+#~ msgid "Remove"
+#~ msgstr ""
-#~ msgid "Reconfigure using wizard..."
-#~ msgstr " ..."
+#~ msgid "Tool for boot disk creation"
+#~ msgstr " "
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Reload"
-#~ msgstr ""
-
-#~ msgid "Remote queue"
-#~ msgstr " "
-
-#~ msgid "Remote queue name missing!"
-#~ msgstr " !"
-
-#~ msgid "Reverse page order"
-#~ msgstr " "
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "/ (1/72 )"
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "SILO bootloader SPARC: o \n"
-#~ "GNU/Linux , "
-#~ " .\n"
-#~ ", \n"
-#~ ". , \n"
-#~ " . .\n"
-#~ "\n"
-#~ "\n"
-#~ " ,\n"
-#~ " . ,\n"
-#~ " boot-, !"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ " SILO :\n"
-#~ " - bootloader : , "
-#~ "\n"
-#~ " GNU/Linux. \n"
-#~ ", \" (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - : "
-#~ "\n"
-#~ " , "
-#~ "\n"
-#~ ". , \n"
-#~ " . , \"delay\" \n"
-#~ " ."
-
-#~ msgid "Sciences"
-#~ msgstr ""
-
-#~ msgid "Scientific applications"
-#~ msgstr " "
-
-#~ msgid "Search"
-#~ msgstr ""
-
-#~ msgid "Second DNS Server"
-#~ msgstr " DNS "
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr " "
-
-#~ msgid "Select the size you want to install"
-#~ msgstr " , "
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ ":\n"
-#~ "\n"
-#~ " - : GNU/Linux, "
-#~ "\n"
-#~ " . - "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ " - : , \"\" GNU/Linux \n"
-#~ " . "
-#~ "\"\"\n"
-#~ " , "
-#~ ".\n"
-#~ " , , , !"
-
-#~ msgid "Selected size %d%s"
-#~ msgstr " %d%s"
-
-#~ msgid "Sending Speed:"
-#~ msgstr " : "
-
-#~ msgid "Show only leaves"
-#~ msgstr " "
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr " ()"
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr ""
-#~ ", . ."
-
-#~ msgid "Sort by"
-#~ msgstr " "
-
-#~ msgid "Spool directory"
-#~ msgstr "Spool-"
-
-#~ msgid "Spooler: "
-#~ msgstr "Spooler: "
-
-#~ msgid "Statistics"
-#~ msgstr ""
-
-#~ msgid "Test the mouse here."
-#~ msgstr " ."
-
-#~ msgid ""
-#~ "The Mandrake Linux spreads among several CDROMs. It may be that drakX "
-#~ "has\n"
-#~ "selected packages on another CDROM than the installation CDROM, and when "
-#~ "it\n"
-#~ "needs that you put another one into the drive, it will eject the current "
-#~ "CDROM\n"
-#~ "and ask you for another one."
-#~ msgstr ""
-#~ "Mandrake Linux CDROM-. , "
-#~ "DrakX\n"
-#~ " CDROM, CDROM, , \n"
-#~ " , CDROM "
-#~ "\n"
-#~ " ."
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr " "
-
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr " usb ."
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ " - , \" shadow \"\n"
-#~ " \" MD5 \"."
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr " "
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "/ (1/72 )"
-
-#~ msgid "Tree"
-#~ msgstr ""
-
-#~ msgid "Try to find a modem?"
-#~ msgstr " ?"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "URL RPM"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr " Uniprint "
-
-#~ msgid "Unrecognized config file"
-#~ msgstr " "
-
-#~ msgid "Update location"
-#~ msgstr " "
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr " RPM "
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr " MD5 "
-
-#~ msgid "Use diskdrake"
-#~ msgstr " diskdrake"
-
-#~ msgid "Use shadow file"
-#~ msgstr " shadow "
-
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ " .\n"
-#~ " ?\n"
-
-#~ msgid "What are looking for?"
-#~ msgstr " ?"
-
-#~ msgid "What is your system used for?"
-#~ msgstr " ?"
-
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr " ?"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr " ?"
-
-#~ msgid "Which package are looking for"
-#~ msgstr " "
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr " ?"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ " CUPS , \n"
-#~ " ; ,\n"
-#~ " ; ,\n"
-#~ " IP \n"
-#~ "CUPS ."
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr " /etc/fstab"
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr ", ASCII "
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr ", PostScript "
-
-#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ " . , "
-#~ " \n"
-#~ ". , , "
-#~ ".\n"
-
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ " ( ) "
-#~ "\n"
-#~ " ( Unix, Netware Microsoft Windows )."
-
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ " , \n"
-#~ " . , "
-#~ "\n"
-#~ ", .\n"
-#~ "\n"
-#~ "\n"
-#~ ", ,\n"
-#~ " ."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ " , \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " , "
-#~ "\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " , \n"
-#~ " \" \".\n"
-#~ "\n"
-#~ "\n"
-#~ " , "
-#~ "\" \".\n"
-#~ " , "
-#~ "\n"
-#~ " , ."
-
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ " root Mandrake Linux .\n"
-#~ " , "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ "Root , "
-#~ "\n"
-#~ " . .\n"
-#~ " root "
-#~ "\n"
-#~ " , .\n"
-#~ "\n"
-#~ "\n"
-#~ " - 8\n"
-#~ ". .\n"
-#~ "\n"
-#~ "\n"
-#~ " , : "
-#~ "\n"
-#~ " ."
-
-#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
-#~ msgstr ""
-#~ " .\n"
-#~ "\n"
-#~ "* : "
-#~ " , \n"
-#~ " : , "
-#~ " . , \n"
-#~ " , , "
-#~ " , .\n"
-#~ "\n"
-#~ "\n"
-#~ "* : "
-#~ "\n"
-#~ " . , . , "
-#~ "\n"
-#~ " , .\n"
-#~ "\n"
-#~ "\n"
-#~ "* RAM, : , , "
-#~ " BIOS RAM . \n"
-#~ " , GNU/Linux "
-#~ "RAM. , \n"
-#~ " RAM. , 2 4 MB "
-#~ " RAM .\n"
-#~ "\n"
-#~ "\n"
-#~ "* : "
-#~ " (CD-ROM,\n"
-#~ " , Zip ..) \"mount\" \"umount\", "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ "* \"/tmp\" : "
-#~ " \"/tmp\",\n"
-#~ " , .\n"
-#~ "\n"
-#~ "\n"
-#~ "* NumLock : NumLock "
-#~ " , . , \n"
-#~ " "
-#~ " X)."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr " ."
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ " . , "
-#~ "\n"
-#~ " . , \""
-#~ "\",\n"
-#~ " ."
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are installing on an Apple machine with a 1-button mouse, you "
-#~ "will\n"
-#~ "be given the opportunity to define some keyboard keys to emulate the 2nd\n"
-#~ "and 3rd mouse buttons. This will allow you to be able to access the "
-#~ "full\n"
-#~ "functionality of the mouse in both the Linux console and the X Window "
-#~ "GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have an ADB mouse, please select USB, as the Linux kernel will "
-#~ "take\n"
-#~ "care of mapping your mouse hardware correctly."
-#~ msgstr ""
-#~ " . , "
-#~ "\n"
-#~ " . , \"\", "
-#~ "\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " Apple , "
-#~ "\n"
-#~ " , 2- 3- \n"
-#~ ". "
-#~ "Linux\n"
-#~ ", X Windows GUI.\n"
-#~ "\n"
-#~ "\n"
-#~ " ADB , , USB, Linux "
-#~ "\n"
-#~ " ."
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr " URI CUPS."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ " .\n"
-#~ "\n"
-#~ " * IP : , "
-#~ " .\n"
-#~ " IP , \" IP"
-#~ "\", -.\n"
-#~ "\n"
-#~ " * : \"255.255.255.0\" . "
-#~ " , "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ " * IP: BOOTP DHCP , "
-#~ " . , \n"
-#~ " \"IP \". "
-#~ " , ."
-
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ " \"\" \n"
-#~ ", \"\" \n"
-#~ " \"root\". , \n"
-#~ " . \n"
-#~ " ( , ..)\n"
-#~ " \"Home\" , \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " . ,\n"
-#~ " "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ " , \n"
-#~ ", ."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ " dialup . \n"
-#~ " , "
-#~ "\n"
-#~ " . DNS (name "
-#~ "server)\n"
-#~ ", \n"
-#~ "."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ " . ,\n"
-#~ " ."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ " . \n"
-#~ " , ."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr ""
-#~ " , . \n"
-#~ " , ."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ " , . \n"
-#~ " , "
-#~ "\n"
-#~ " ."
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ " , \n"
-#~ " .\n"
-#~ "\n"
-#~ "DrakX . "
-#~ ",\n"
-#~ " . , "
-#~ "\n"
-#~ " , - "
-#~ ".\n"
-#~ " \" "
-#~ "\";\n"
-#~ " , 1000 ..."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "\t* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ "\t at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ "\t will then have a complete collection of software installed in order "
-#~ "to compile, debug and format source code,\n"
-#~ "\t or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ "\t SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ "\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ " . "
-#~ ":\n"
-#~ "\n"
-#~ "\t* : , "
-#~ " \n"
-#~ "\t .\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* : "
-#~ " , .\n"
-#~ "\t , , "
-#~ " ,\n"
-#~ "\t .\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* : , "
-#~ " . \n"
-#~ "\t (NFS SMB), (Unix- Microsoft Windows-), "
-#~ " (NIS), \n"
-#~ "\t - ... , "
-#~ " (KDE, GNOME, ..)."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ " . "
-#~ ":\n"
-#~ "\n"
-#~ "* : , "
-#~ " \n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ "* : "
-#~ " , .\n"
-#~ " , , "
-#~ " ,\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ "* : , "
-#~ " . \n"
-#~ " (NFS SMB), (Unix- Microsoft Windows-), "
-#~ " (NIS), \n"
-#~ " - ... , "
-#~ " (KDE, GNOME, ..)."
-
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr " -."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ " -, "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ " \"\", .\n"
-#~ "\n"
-#~ "\n"
-#~ " \"\", . "
-#~ " \n"
-#~ "."
-
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " * : , spooler \"lp\" "
-#~ " . \n"
-#~ " \"lp\".\n"
-#~ " , "
-#~ ". pipe\n"
-#~ " (\"|\"). , - , "
-#~ " , . \"My printer|lp\".\n"
-#~ " \"lp\" () , "
-#~ ".\n"
-#~ "\n"
-#~ "\n"
-#~ " * Spool : , "
-#~ " . \n"
-#~ " , \n"
-#~ "\n"
-#~ "\n"
-#~ " * : "
-#~ " , \" \".\n"
-#~ " Unix , "
-#~ " \" LPD \".\n"
-#~ "\n"
-#~ "\n"
-#~ " Microsoft "
-#~ "Windows ( Unix SMB\n"
-#~ " ), \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " NetWare , "
-#~ "\"NetWare\".\n"
-
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ " . , , "
-#~ "\n"
-#~ " .\n"
-#~ "\n"
-#~ "\n"
-#~ " , . "
-#~ "\n"
-#~ " \"/dev/lp0\" GNU/Linux \"LPT1\" Microsoft Windows."
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ " .\n"
-#~ "\n"
-#~ " , Mandrake Linux \n"
-#~ ". "
-#~ ",\n"
-#~ " ."
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr " "
-
-#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ ": , ROOT "
-#~ " !\n"
-#~ " root, "
-#~ " \"su\".\n"
-#~ " , , "
-#~ ". ."
-
-#~ msgid "cannot fork: "
-#~ msgstr " : "
-
-#~ msgid "default"
-#~ msgstr " "
-
-#~ msgid "don't use pppoe"
-#~ msgstr " PPPOE"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#~ msgid "horizontal nice looking aurora"
-#~ msgstr " - aurora"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n ()"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n ()"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n ( )"
-
-#~ msgid "loopback"
-#~ msgstr "loopback"
-
-#~ msgid "not connected"
-#~ msgstr " "
-
-#~ msgid "received: "
-#~ msgstr ": "
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "rpmdrake `` ''.\n"
-#~ " rpmdrake, "
+#~ msgid "Show expert mode"
+#~ msgstr " "
-#~ msgid "sent: "
-#~ msgstr ": "
+#~ msgid "modules"
+#~ msgstr ""
-#~ msgid "using module"
-#~ msgstr " "
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr " . .\n"
-#~ msgid "vertical traditional aurora"
-#~ msgstr " aurora"
+#~ msgid "experts only"
+#~ msgstr " "
-#~ msgid "yellow pages"
-#~ msgstr " "
+#~ msgid "/File/_Preferences"
+#~ msgstr "//_"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index f210d9039..235ad3a0b 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 8.2\n"
-"POT-Creation-Date: 2002-06-13 15:54+0200\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
"PO-Revision-Date: 2002-01-28 22:41GMT\n"
"Last-Translator: Thierry Vignaud <tvignaud@mandrakesoft.com>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -14,96 +14,117 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Configure all heads independently"
-msgstr ""
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 ko"
-#: ../../Xconfigurator.pm_.c:244
-msgid "Use Xinerama extension"
-msgstr "Implijit Xinemara"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 ko"
-#: ../../Xconfigurator.pm_.c:247
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Kefluniadur hep ken kartenn \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 Mo"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 Mo"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 Mo"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 Mo"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 Mo"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 Mo"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 Mo pe vuioc'h"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Dibabit ur servijer X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "servijer X"
+
+#: ../../Xconfig/card.pm_.c:225
#, fuzzy
msgid "Multi-head configuration"
msgstr "o lenn ar c'hefluniadur"
-#: ../../Xconfigurator.pm_.c:251
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:262
-msgid "Graphics card"
-msgstr "Kartenn c'hrafek"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Diuzit ment memor ho kartenn c'hrafek"
-#: ../../Xconfigurator.pm_.c:263
-msgid "Select a graphics card"
-msgstr "Diuzit ur gartenn c'hrafek"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Staliadur XFree86"
-#: ../../Xconfigurator.pm_.c:287
-msgid "Choose a X server"
-msgstr "Dibabit ur servijer X"
+#: ../../Xconfig/card.pm_.c:343
+#, fuzzy
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Pe seurt enmont a vennit ouzhpennañ"
-#: ../../Xconfigurator.pm_.c:287
-msgid "X server"
-msgstr "servijer X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:294
-msgid "Choose a X driver"
-msgstr "Dibabit ur sturier X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Implijit Xinemara"
-#: ../../Xconfigurator.pm_.c:294
-msgid "X driver"
-msgstr "Sturier X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Kefluniadur hep ken kartenn \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:361 ../../Xconfigurator.pm_.c:367
-#: ../../Xconfigurator.pm_.c:417 ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:364
-#, fuzzy
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Pe seurt enmont a vennit ouzhpennañ"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s gant 3D"
-#: ../../Xconfigurator.pm_.c:375
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:377 ../../Xconfigurator.pm_.c:410
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfigurator.pm_.c:379 ../../Xconfigurator.pm_.c:412
-#: ../../Xconfigurator.pm_.c:1510
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s gant 3D"
-
-#: ../../Xconfigurator.pm_.c:387 ../../Xconfigurator.pm_.c:401
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:389 ../../Xconfigurator.pm_.c:403
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:398
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -111,31 +132,52 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:418
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../Xconfigurator.pm_.c:422
-msgid "XFree configuration"
-msgstr "Staliadur XFree86"
-
-#: ../../Xconfigurator.pm_.c:497
-msgid "Select the memory size of your graphics card"
-msgstr "Diuzit ment memor ho kartenn c'hrafek"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:551
-msgid "Choose options for server"
-msgstr "Dibabit dibarzhoù ar servijer"
+#: ../../Xconfig/main.pm_.c:60
+#, fuzzy, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr "Derc'hel ar c'hefluniadur IP o ren"
-#: ../../Xconfigurator.pm_.c:575
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Dibabit ur skramm"
-#: ../../Xconfigurator.pm_.c:575
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Skramm"
-#: ../../Xconfigurator.pm_.c:578
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personelañ"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Rummel"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Dizober"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -158,230 +200,158 @@ msgstr ""
"a zo en tu-hont da varregezh ho skramm : gallout a rafe gwastañ ho skramm\n"
" M'hoc'h eus douetañs, dibabit ur c'hefluniadur fur."
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Feur freskaat a-led"
-#: ../../Xconfigurator.pm_.c:586
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Feur freskaat a-serzh"
-#: ../../Xconfigurator.pm_.c:623
-msgid "Monitor not configured"
-msgstr "Skramm ket kefluniet"
-
-#: ../../Xconfigurator.pm_.c:626
-msgid "Graphics card not configured yet"
-msgstr "Kartenn c'hrafek ket kefluniet c'hoazh"
-
-#: ../../Xconfigurator.pm_.c:629
-msgid "Resolutions not chosen yet"
-msgstr "Spisterioù ket dibabet c'hoazh"
-
-#: ../../Xconfigurator.pm_.c:647
-msgid "Do you want to test the configuration?"
-msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-
-#: ../../Xconfigurator.pm_.c:651
-#, fuzzy
-msgid "Warning: testing this graphics card may freeze your computer"
-msgstr "Da ziwall : arvarus eo amprouiñ ar gartenn c'hrafek-mañ"
-
-#: ../../Xconfigurator.pm_.c:654
-msgid "Test of the configuration"
-msgstr "Amprouiñ ar c'hefluniadur"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 liv (8 bit)"
-#: ../../Xconfigurator.pm_.c:693 ../../Xconfigurator.pm_.c:705
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"klaskit kemmañ arventennoù 'zo"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil liv (15 bit)"
-#: ../../Xconfigurator.pm_.c:693 ../../Xconfigurator.pm_.c:705
-msgid "An error occurred:"
-msgstr "C'hoarvezet eo ur fazi :"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil liv (16 bit)"
-#: ../../Xconfigurator.pm_.c:734
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Kuitaat e %d eilenn"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milion a livioù (24 bit)"
-#: ../../Xconfigurator.pm_.c:745
-msgid "Is this the correct setting?"
-msgstr "Ha reizh eo ar c'hefluniadur ?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliard a livioù (32 bit)"
-#: ../../Xconfigurator.pm_.c:754
-msgid "An error occurred, try to change some parameters"
-msgstr "C'hoarvezet eo ur fazi, klaskit kemmañ arventennoù 'zo"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Spisterioù"
-#: ../../Xconfigurator.pm_.c:825
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Spister"
-#: ../../Xconfigurator.pm_.c:877
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Dibabit ar spister ha donder al livioù"
-#: ../../Xconfigurator.pm_.c:879
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
msgid "Graphics card: %s"
msgstr "Kartenn c'hrafek : %s"
-#: ../../Xconfigurator.pm_.c:880
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servijer XFree86 : %s"
-
-#: ../../Xconfigurator.pm_.c:894 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-#, fuzzy
-msgid "More"
-msgstr "Dilec'hiañ"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Nullañ"
-#: ../../Xconfigurator.pm_.c:894 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:701
-#: ../../my_gtk.pm_.c:1034 ../../my_gtk.pm_.c:1056
-#: ../../standalone/drakbackup_.c:2288 ../../standalone/drakbackup_.c:2359
-#: ../../standalone/drakbackup_.c:2375
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Mat eo"
-#: ../../Xconfigurator.pm_.c:896 ../../network/netconnect.pm_.c:173
-#: ../../printerdrake.pm_.c:2473 ../../standalone/drakfloppy_.c:146
-#: ../../standalone/draknet_.c:275 ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mod mailh"
-
-#: ../../Xconfigurator.pm_.c:897
-msgid "Show all"
-msgstr "Diskouez pep tra"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../Xconfigurator.pm_.c:942
-msgid "Resolutions"
-msgstr "Spisterioù"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Amprouiñ ar c'hefluniadur"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Reizhadur ar stokellaoueg : %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Seurt logodenn : %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Trobarzhell al logodenn : %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "KempredA-led ar skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "FreskA-serzh ar skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:1518
+#: ../../Xconfig/various.pm_.c:33
#, c-format
msgid "Graphics card: %s\n"
msgstr "Kartenn c'hrafek : %s\n"
-#: ../../Xconfigurator.pm_.c:1519
-#, c-format
-msgid "Graphics card identification: %s\n"
-msgstr "Anavezoud kartenn c'hrafek : %s\n"
-
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:34
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Memor c'hrafek : %s ko\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Donder liv: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Spister: %s\n"
-#: ../../Xconfigurator.pm_.c:1525
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servijer XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1526
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Sturier XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1544
-msgid "Preparing X-Window configuration"
-msgstr "O prientiñ kefluniadur X-Window"
-
-#: ../../Xconfigurator.pm_.c:1564
-msgid "What do you want to do?"
-msgstr "Petra a vennit ober ? "
-
-#: ../../Xconfigurator.pm_.c:1569
-msgid "Change Monitor"
-msgstr "Kemmañ ar skramm"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Graphics card"
-msgstr "Kemmañ ar gartenn c'hrafek"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Change Server options"
-msgstr "Kemmañ dibarzhoù ar servijer"
-
-#: ../../Xconfigurator.pm_.c:1574
-msgid "Change Resolution"
-msgstr "Kemmañ ar spister"
-
-#: ../../Xconfigurator.pm_.c:1575
-msgid "Show information"
-msgstr "Diskouez titouroù"
-
-#: ../../Xconfigurator.pm_.c:1576
-msgid "Test again"
-msgstr "Amprouiñ adarre"
-
-#: ../../Xconfigurator.pm_.c:1577 ../../printerdrake.pm_.c:2476
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Kuitaat"
-
-#: ../../Xconfigurator.pm_.c:1585
-#, fuzzy, c-format
-msgid ""
-"Keep the changes?\n"
-"The current configuration is:\n"
-"\n"
-"%s"
-msgstr "Derc'hel ar c'hefluniadur IP o ren"
-
-#: ../../Xconfigurator.pm_.c:1606
+#: ../../Xconfig/various.pm_.c:51
msgid "Graphical interface at startup"
msgstr "X pa loc'her"
-#: ../../Xconfigurator.pm_.c:1607
+#: ../../Xconfig/various.pm_.c:52
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -390,277 +360,165 @@ msgstr ""
"Kefluniañ ho urzhiataer evit lañsañ X ent emgefreek pa loc'ho a c'hellañ.\n"
"Mennout a rit lañsañ X pa adloc'hit ?"
-#: ../../Xconfigurator.pm_.c:1613
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Adereit ouzh %s evit bevaat ar c'hemmoù mar plij"
-
-#: ../../Xconfigurator.pm_.c:1628
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 liv (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil liv (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil liv (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milion a livioù (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliard a livioù (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 ko"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 Mo"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 Mo pe vuioc'h"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA standard, 640x480 da 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Gour-VGA, 800x600 da 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Kenglotus 8514, 1024x768 da 87 Hz pebeilet (800x600 ebet)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Gour-VGA, 1024x768 da 87 Hz pebeilet, 800x600 da 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Gour-VGA astennet, 800x600 da 60 Hz, 640x480 da 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "G-VGA nann-pebeilet, 1024x768 da 60 Hz, 800x600 da 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "G-VGA talm uhel, 1024x768 da 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Lies-talm a c'hell ober 1280x1024 da 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Lies-talm a c'hell ober 1280x1024 da 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Lies-talm a c'hell ober 1280x1024 da 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Skramm a c'hell ober 1600x1200 da 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Skramm a c'hell ober 1600x1200 da 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Rann gentañ ar parzhadur loc'hañ"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Rann gentañ ar bladenn (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Staliadur SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Pelec'h e mennit staliañ ar c'harger loc'hañ ?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Staliadur LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO gant meuziad skrid"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO gant meuziad c'hrafek"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Loc'hañ abaoe DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Dibarzhoù pennañ ar c'harger loc'hañ"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "C'harger loc'hañ da implijout"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Staliadur c'harger loc'hañ"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Trobarzhell loc'hañ"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne da ket en-dro gant BIOSoù kozh)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Fetis"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "fetis"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Mod video"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Gedvezh kent loc'hañ ar skeudenn dre ziouer"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1087 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:710 ../../printerdrake.pm_.c:808
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Tremenger"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Tremenger (adarre)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Strishaat dibarzhoù al linenn urzhiañ"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "strishaat"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Skarañ /tmp bep ma loc'her"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Spisait ment ar memor vev diouzh ret (kavet %d Mo)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Aotren lies trolinenn"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Roit ment ar memor vev e Mo"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Didalvout eo ``Strishaat dibarzhoù al linenn urzhiañ'' hep tremenger"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1143
-#: ../../install_steps_interactive.pm_.c:1082
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Klaskit adarre mar plij"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1082
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "An tremegerioù ne glot ket"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr ""
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr ""
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr ""
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr ""
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr ""
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "RK dre ziouer"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -669,7 +527,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -677,75 +535,75 @@ msgstr ""
"Setu da heul an enmontoù liesseurt.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:741
-#: ../../standalone/drakbackup_.c:850 ../../standalone/drakfont_.c:790
-#: ../../standalone/drakfont_.c:827
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Ouzhpennañ"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Graet"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Kemmañ"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Pe seurt enmont a vennit ouzhpennañ"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:884
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Reizhiadoù (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Reizhiadoù (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Reizhiadoù (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Skeudenn"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Gwrizienn"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Ouzhpennañ"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lenn-skrivañ "
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Taolenn"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Arvarus"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Skridennad"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Dre ziouer"
@@ -778,53 +636,75 @@ msgstr "Ret eo deoc'h kaout ur parzhadur disloañ"
msgid "This label is already used"
msgstr "En implij eo ar skridennad-se endeo"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Kavet etrefas %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Hag un all hoc'h eus ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Hag un etrefas %s bennak a zo ganeoc'h ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1033
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ket"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1033
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ya"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Gwelet titouroù periantel"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "O staliañ ur sturier evit kartenn %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(mollad %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, 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 ""
+"Bremañ e c'hellit pourvezañ e zibarzhoù d'ar mollad %s.\n"
+"Diouzh ar furmad ``anv=talvoud anv2=talvoud2...'' eo an dibaboù.\n"
+"Da skouer, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Dibarzhoù ar mollad :"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pe sturier %s a zlefen amprouiñ ?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -843,37 +723,15 @@ msgstr ""
"urzhiataer,\n"
"hogen ne raio reuz ebet."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Embrouiñ"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Spisait dibarzhoù"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, 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 ""
-"Bremañ e c'hellit pourvezañ e zibarzhoù d'ar mollad %s.\n"
-"Diouzh ar furmad ``anv=talvoud anv2=talvoud2...'' eo an dibaboù.\n"
-"Da skouer, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Dibarzhoù ar mollad :"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -882,51 +740,56 @@ msgstr ""
"Kargañ ar mollad %s a zo sac'het.\n"
"Mennout a rit klask adarre gant arventennoù all ?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(ouzhpennet %s endeo)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Re eeun eo an tremeger"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Roit un anv arveriad mar plij"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"An anv arveriad a zle bezañ ennañ lizherennoù munut, sifroù, `-' ha `_' "
"hepken"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "En implij eo an anv arveriad-se endeo"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "En implij eo an anv arveriad-se endeo"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Ouzhpennañ un arveriad"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -935,32 +798,32 @@ msgstr ""
"Skrivit un arveriad\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Aotren an arveriad"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Anv gwirion"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:709
-#: ../../printerdrake.pm_.c:807
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Anv arveriad"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Arlun"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -969,61 +832,57 @@ msgstr ""
"Kefluniañ ho urzhiataer evit lañsañ X ent emgefreek pa loc'ho a c'hellañ.\n"
"Mennout a rit lañsañ X pa adloc'hit ?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Dibabit ar arveriad dre ziouer"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
#, fuzzy
msgid "Choose the window manager to run:"
msgstr "Dibabit ar benveg a vennit staliañ"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../any.pm_.c:851
+#: ../../any.pm_.c:848
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
"when your installation is complete and you restart your system."
msgstr "Gallout a rit dibab yezhoù all hag a vo hegerz goude staliañ"
-#: ../../any.pm_.c:865 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "An holl"
-#: ../../any.pm_.c:957
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Aotreiñ an holl dud"
-#: ../../any.pm_.c:957
-msgid "Custom"
-msgstr "Personelañ"
-
-#: ../../any.pm_.c:957
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "N'ev ket lodañ"
-#: ../../any.pm_.c:967 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
"Bremanaet e tle bezañ ar pabak-mañ\n"
"Ha sur oc'h e mennit e ziuzañ ?"
-#: ../../any.pm_.c:970
+#: ../../any.pm_.c:986
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:978 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:984
+#: ../../any.pm_.c:1000
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 "
@@ -1032,63 +891,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:998 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:564
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:702 ../../my_gtk.pm_.c:705 ../../my_gtk.pm_.c:1034
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1588
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2279 ../../standalone/drakbackup_.c:2300
-#: ../../standalone/drakbackup_.c:2321 ../../standalone/drakbackup_.c:2339
-#: ../../standalone/drakbackup_.c:2387 ../../standalone/drakbackup_.c:2407
-#: ../../standalone/drakbackup_.c:2426 ../../standalone/drakfloppy_.c:235
-#: ../../standalone/drakfloppy_.c:384 ../../standalone/drakfont_.c:768
-#: ../../standalone/drakgw_.c:598 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:527
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Nullañ"
-
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1000
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1037
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Bezit deuet mat, preizherien !"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Paour"
-#: ../../any.pm_.c:1039 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Skouer"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Uhel"
-#: ../../any.pm_.c:1041
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Uhel"
-#: ../../any.pm_.c:1042
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Ankeniet"
-#: ../../any.pm_.c:1045
+#: ../../any.pm_.c:1074
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"
@@ -1098,7 +936,7 @@ msgstr ""
"aesoc'h da implijout, hogen kizidig-tre : arabat e implj evit un ardivink\n"
"kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziñ dre dremenger."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1106,7 +944,7 @@ msgstr ""
"Gweredekaet eo bremañ an tremenger, hogen dierbedet eo c'hoazh an implij en "
"ur rouedad"
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1117,13 +955,13 @@ msgstr ""
"evit kevreañ evel arval ouzh ar Genrouedad. Bremañ ez eus gwiriadennoù "
"surentez."
-#: ../../any.pm_.c:1050
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1051
+#: ../../any.pm_.c:1080
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1131,7 +969,7 @@ msgid ""
"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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Gant al live surentez-mañ e teu posupl implijout ar reizhiad-mañ evel ur "
"servijer.\n"
@@ -1139,7 +977,7 @@ msgstr ""
"servijer\n"
"o tigemer kevreadennoù a-berzh arvaloù niverus."
-#: ../../any.pm_.c:1054
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1148,25 +986,21 @@ msgstr ""
"Kemer a reomp arc'hweloù al live 4, hogen bremañ eo peurserret ar reizhiad.\n"
"Arc'hweloù surentez a zo en o muiañ"
-#: ../../any.pm_.c:1059
-msgid "Please choose the desired security level."
-msgstr "Dibabit al live surentez"
-
-#: ../../any.pm_.c:1062
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Live surentez"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Implijit libsafe gant ar servijer"
-#: ../../any.pm_.c:1065
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1067
-msgid "Security user (login or email)"
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
msgstr ""
# NOTE: this message will be displayed at boot time; that is
@@ -1175,7 +1009,7 @@ msgstr ""
# 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_.c:354
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1200,52 +1034,52 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:910
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Degemer mat e GRUB an dibaber reizhiad oberia¤ !"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:913
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Implijit ar stokelloù %c ha %c evit diuz pe enmont zo war wel"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:916
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Stokit enkas evit loc'ha¤ ar RK diuzet, 'e' evit aoza¤ an"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:919
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "urzhiado— kent loc'ha¤, pe 'c' evit ul linenn-urzhia¤."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:922
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "An enmont war wel a vo loc'het ent emgefreek e %d eilenn."
-#: ../../bootloader.pm_.c:926
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1026
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Gorretaol"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1028
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Meuziad Lañsañ"
-#: ../../bootloader.pm_.c:1047
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Pelec'h e mennit staliañ ar c'harger loc'hañ ?"
@@ -1259,7 +1093,8 @@ msgstr "N'ev ket skoazell.\n"
msgid "Boot Style Configuration"
msgstr "Kefluniadur goude staliañ"
-#: ../../bootlook.pm_.c:79 ../../standalone/drakfloppy_.c:82
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Restr"
@@ -1269,8 +1104,8 @@ msgstr "/_Restr"
msgid "/File/_Quit"
msgstr "/Restr/_Kuitaat"
-#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
-#: ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr ""
@@ -1313,8 +1148,8 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Lugerezh ar voullerez"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1457
-#: ../../standalone/drakbackup_.c:1468 ../../standalone/drakgw_.c:592
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Kefluniañ"
@@ -1335,15 +1170,16 @@ msgstr ""
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2431 ../../standalone/drakbackup_.c:3335
-#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:537
-#: ../../standalone/drakfont_.c:658 ../../standalone/drakfont_.c:721
-#: ../../standalone/drakfont_.c:766 ../../standalone/draknet_.c:109
-#: ../../standalone/draknet_.c:141 ../../standalone/draknet_.c:297
-#: ../../standalone/draknet_.c:436 ../../standalone/draknet_.c:522
-#: ../../standalone/draknet_.c:565 ../../standalone/draknet_.c:666
-#: ../../standalone/logdrake_.c:520
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "YA"
@@ -1446,8 +1282,8 @@ msgstr "Amerika"
msgid "Please make a backup of your data first"
msgstr "Gwarezit ho roadoù da gentañ mar plij"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:899
-#: ../../diskdrake/interactive.pm_.c:908 ../../diskdrake/interactive.pm_.c:962
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Lennit aketus !"
@@ -1461,11 +1297,12 @@ msgstr ""
"rann\n"
"a zo a-walc'h) e deroù ar bladenn"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Fazi"
@@ -1473,11 +1310,11 @@ msgstr "Fazi"
msgid "Wizard"
msgstr "Skoazeller"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Dibabit un obererezh"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1490,147 +1327,153 @@ msgstr ""
"(klikit warni, da c'houde klikit war \"Adventañ\")"
#
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Klikit war ur parzhadur mar plij"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Munudoù"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "marc'hañ sac'het"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Disloañ"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Goullo"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:933
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "All"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Seurt ar reizhiadoù restroù :"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Krouiñ"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Seurt"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Grit kentoc'h gant ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Dilemel"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Implijit ``Divarc'hañ'' da gentañ"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Goude kemmañ seurt ar parzhadur %s, holl roadoù ar parzhadur-se a vo kollet"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Dibabit un parzhadur"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Dibabit un parzhadur all"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Kuitaat"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Tremen er mod mailh"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Tremen er mod boas"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Dizober"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Kenderc'hel evelato ?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Kuitaat hep enrollañ"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Kuitaat hep skrivañ an daolenn barzhañ ?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Ac'hubiñ ent emgefreek"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Skarañ an holl"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+#, fuzzy
+msgid "More"
+msgstr "Dilec'hiañ"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Dinoiñ ar bladenn galet"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Ac'hubet eo an holl barzhadurioù kentañ renk"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "N'hellan ouzpennañ parzhadur ebet ken"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1638,35 +1481,35 @@ msgstr ""
"Evit kaout muioc'h a barzhadurioù, lamit unan evit ma c'hellot krouiñ ur "
"parzhadur astennet mar plij"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Skrivañ an daolenn barzhañ"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Taolenn barzhañ saveteerezh"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Taolenn barzhañ saveteerezh"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Taolenn barzhañ saveteerezh"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Emvarc'hañ ar skoroù lem/laka"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Diuzit ar restr"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1674,11 +1517,11 @@ msgstr ""
"N'eo ket heñvel ment an daolenn barzhañ gwarezet\n"
"Kenderc'hel memestra ?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Ho evezh"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1686,126 +1529,133 @@ msgstr ""
"Lakait ur bladennig el lenner\n"
"Kollet e vo holl roadoù ar bladennig-se"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "O klask assevel an daolenn barzhañ"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Diskouez titouroù"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:535
-#: ../../diskdrake/interactive.pm_.c:562 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Poent marc'hañ"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
#, fuzzy
msgid "Options"
msgstr "Parzhadur"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:629
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Adventañ"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:682
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Dilec'hiañ"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Furmadiñ"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Marc'hañ"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Ouzhpennañ da RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Ouzhpennañ da LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Divarc'hañ"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Lemel diwar RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Lemel diwar LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Kemmañ RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Implij da saveteiñ"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Krouiñ ur parzhadur nevez"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Rann kregiñ : "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Ment e Mo : "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:782
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Seurt ar reizhiad restroù : "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1042
-#: ../../diskdrake/interactive.pm_.c:1116
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Poent marc'hañ : "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Dibarzh : "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "O furmadiñ ar restr saveteiñ %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Kemmañ seurt ar parzhadur"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:533
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Pelec'h e mennit marc'hañ ar restr saveteiñ %s ?"
-#: ../../diskdrake/interactive.pm_.c:534 ../../diskdrake/interactive.pm_.c:561
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Pelec'h e mennit marc'hañ an drobarzhell %s ?"
-#: ../../diskdrake/interactive.pm_.c:540
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1813,128 +1663,135 @@ msgstr ""
"N'hellan ket dizober ar poent marc'hañ dre m'eo implijet ar parzhadur-se\n"
"evit saveteiñ. Lamit ar saveteiñ da gentañ"
-#: ../../diskdrake/interactive.pm_.c:585
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "O jediñ bevennoù ar reizhiad restroù FAT"
-#: ../../diskdrake/interactive.pm_.c:585 ../../diskdrake/interactive.pm_.c:644
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Oc'h adventañ"
-#: ../../diskdrake/interactive.pm_.c:617
+#: ../../diskdrake/interactive.pm_.c:639
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Mat e vije gwareziñ holl roadoù ar parzhadur-se"
-#: ../../diskdrake/interactive.pm_.c:624
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Goude adventañ ar parzhadur %s e vo kollet holl roadoù ar parzhadur-se"
-#: ../../diskdrake/interactive.pm_.c:629
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Dibabit ar ment nevez"
-#: ../../diskdrake/interactive.pm_.c:630
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Ment nevez e Mo : "
-#: ../../diskdrake/interactive.pm_.c:683
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
-#: ../../diskdrake/interactive.pm_.c:684
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Rann"
-#: ../../diskdrake/interactive.pm_.c:685
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Da beseurt rann e mennit dilec'hiañ ?"
-#: ../../diskdrake/interactive.pm_.c:688
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "O tilec'hiañ"
-#: ../../diskdrake/interactive.pm_.c:688
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "O tilec'hiañ ur parzhadur..."
-#: ../../diskdrake/interactive.pm_.c:705
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Dibabit da be RAID ouzhpennañ"
-#: ../../diskdrake/interactive.pm_.c:706 ../../diskdrake/interactive.pm_.c:724
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nevez"
-#: ../../diskdrake/interactive.pm_.c:722
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Dibabit da be LVM ouzhpennañ"
-#: ../../diskdrake/interactive.pm_.c:727
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Anv LVM?"
-#: ../../diskdrake/interactive.pm_.c:767
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "N'heller ket implijout ar parzhadur-mañ evit saveteiñ"
-#: ../../diskdrake/interactive.pm_.c:779
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Saveteiñ"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Anv ar restr saveteiñ : "
-#: ../../diskdrake/interactive.pm_.c:785
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Anv gwirion"
-#: ../../diskdrake/interactive.pm_.c:788
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Restr implijet gant ur saveteiñ all endeo, dibabit unan all"
-#: ../../diskdrake/interactive.pm_.c:789
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Ar restr a zo endeo. E implijout ?"
-#: ../../diskdrake/interactive.pm_.c:812
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Dibarzhoù marc'hañ"
-#: ../../diskdrake/interactive.pm_.c:819
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "A bep sort"
-#: ../../diskdrake/interactive.pm_.c:882 ../../standalone/drakfloppy_.c:104
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "trobarzhell"
-#: ../../diskdrake/interactive.pm_.c:883
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "live"
-#: ../../diskdrake/interactive.pm_.c:884
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "ment diaoz"
-#: ../../diskdrake/interactive.pm_.c:899
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Bezit war evezh : arvarus eo an obererezh-mañ."
-#: ../../diskdrake/interactive.pm_.c:914
+#: ../../diskdrake/interactive.pm_.c:937
#, fuzzy
msgid "What type of partitioning?"
msgstr "Peseurt moullerez hoc'h eus ?"
-#: ../../diskdrake/interactive.pm_.c:932
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr ""
+"Bremanaet e tle bezañ ar pabak-mañ\n"
+"Ha sur oc'h e mennit e ziuzañ ?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1946,7 +1803,7 @@ msgstr ""
"Pe e implijit LILO ha ne daio ket en-dro, pe ne rit ket ha n'hoc'h eus ket "
"ezhomm a /boot"
-#: ../../diskdrake/interactive.pm_.c:936
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1960,145 +1817,145 @@ msgstr ""
"Ma vennit implijout ar merour loc'hañ LILO, taolit pled da ouzhpennañ ur "
"parzhadur /boot"
-#: ../../diskdrake/interactive.pm_.c:942
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:962
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "War-nes bezañ skrivet war bladenn eo taolenn barzhañ an ardivink %s !"
-#: ../../diskdrake/interactive.pm_.c:966
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Ret e vo deoc'h adloc'hañ a-raok ma talvezo ar c'hemm"
-#: ../../diskdrake/interactive.pm_.c:977
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Goude furmadiñ ar parzhadur %s, holl roadoù ar parzhadur-se a vo kollet"
-#: ../../diskdrake/interactive.pm_.c:979
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "O furmadiñ"
-#: ../../diskdrake/interactive.pm_.c:980
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "O furmadiñ ar restr saveteiñ %s"
-#: ../../diskdrake/interactive.pm_.c:981
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "O furmadiñ ar parzhadur %s"
-#: ../../diskdrake/interactive.pm_.c:992
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "mkraid sac'het"
-#: ../../diskdrake/interactive.pm_.c:992
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "Krouiñ ur parzhadur nevez"
-#: ../../diskdrake/interactive.pm_.c:993
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "Krouiñ ur parzhadur nevez"
-#: ../../diskdrake/interactive.pm_.c:1008
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Adskrivañ %s"
-#: ../../diskdrake/interactive.pm_.c:1012
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Spisterioù"
-#: ../../diskdrake/interactive.pm_.c:1022
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1043
-#: ../../diskdrake/interactive.pm_.c:1102
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Trobarzhell : "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lizher ar bladenn DOS : %s (diwar varteze hepken)\n"
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1056
-#: ../../diskdrake/interactive.pm_.c:1120
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Seurt : "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Anv: "
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "O kregiñ : rann %s\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Ment: %s"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s rann"
-#: ../../diskdrake/interactive.pm_.c:1065
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Kranenn %d da granenn %d\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Furmadet\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Ket furmadet\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Marc'het\n"
-#: ../../diskdrake/interactive.pm_.c:1069
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1071
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Restr(où) saveteiñ : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1072
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2106,27 +1963,27 @@ msgstr ""
"Parzhadur loc'het dre ziouer\n"
" (evit loc'hañ MS-DOS, ket evit lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1074
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Live %s\n"
-#: ../../diskdrake/interactive.pm_.c:1075
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Ment diaoz %s\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Pladennoù RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Anv ar restr saveteiñ : %s"
-#: ../../diskdrake/interactive.pm_.c:1081
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2134,7 +1991,7 @@ msgid ""
"probably leave it alone.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1084
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2142,64 +1999,64 @@ msgid ""
"dual-booting your system.\n"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1103
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Ment: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1104
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Mentoniezh : %s kranenn, %s penn, %s rann\n"
-#: ../../diskdrake/interactive.pm_.c:1105
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Titouroù: "
-#: ../../diskdrake/interactive.pm_.c:1106
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Pladennoù LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1107
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Seurt taolenn barzhañ : %s\n"
-#: ../../diskdrake/interactive.pm_.c:1108
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "war bus %d Nn %d\n"
-#: ../../diskdrake/interactive.pm_.c:1122
+#: ../../diskdrake/interactive.pm_.c:1157
#, fuzzy, c-format
msgid "Options: %s"
msgstr "Parzhadur"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Seurt ar reizhiad restroù : "
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1142
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutañ)"
-#: ../../diskdrake/interactive.pm_.c:1143
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "An tremegerioù ne glot ket"
-#: ../../diskdrake/interactive.pm_.c:1146
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1147
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2214,33 +2071,63 @@ msgstr "Kemmañ seurt ar parzhadur"
msgid "Please click on a medium"
msgstr "Klikit war ur parzhadur mar plij"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Dilesadur"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "dedennus"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Anv arveriad"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Anv arveriad"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Domani NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "Servijer DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "furmadiñ er seurt %s eus %s a zo sac'het"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "N'ouzon ket penaos furmadiñ %s er seurt %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "fazi en ur zivarc'hañ %s : %s"
@@ -2257,57 +2144,57 @@ msgstr "gant /usr"
msgid "server"
msgstr "servijer"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr ""
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Poentoù marc'hañ a rank kregiñ gant /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Bez' ez eus ur parzhadur e boent marc'hañ %s endeo\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:486
+#: ../../fsedit.pm_.c:500
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr ""
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fazi en ur zigeriñ %s evit skrivañ : %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
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"
@@ -2316,10 +2203,262 @@ msgstr ""
"krouiñ reizhiadoù restroù nevez warni. Gwiriit abeg ar gudenn-mañ en ho "
"ardivinkaj mar plij "
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "N'hoc'h eus parzhadur ebet !"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Dilesadur"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Rummel"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memor kartenn (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "O furmadiñ"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Kemmañ seurt ar parzhadur"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Kuitaat"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "Skoazell"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "Marc'hañ"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Logodenn"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memor kartenn (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Nullañ"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Logodenn"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+#, fuzzy
+msgid "Description"
+msgstr "Spisait dibarzhoù"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Dilesadur"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Diuzit ar restr"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Trobarzhell an dreuzell"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 nozelenn"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Dinoiñ ar bladenn galet"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Gwelet titouroù periantel"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Diskouez titouroù"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Kefluniañ al logodenn"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "Poent marc'hañ doubl %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Gortozit mar plij"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d eilenn"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Embrouiñ"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2333,7 +2472,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2404,9 +2543,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2597,7 +2735,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2609,9 +2747,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2657,21 +2794,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2687,9 +2823,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
#: ../../help.pm_.c:347
@@ -2710,9 +2846,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -2823,38 +2958,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -2929,11 +3058,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -2957,7 +3086,7 @@ msgid ""
"choose this unless you know what you are doing."
msgstr ""
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -2972,7 +3101,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -2987,7 +3116,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3003,7 +3132,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
#, fuzzy
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
@@ -3012,23 +3141,23 @@ msgstr ""
"Diuzit ar porzh a zere mar plij. Da skouer, porzh COM1 dindan MS Windows\n"
"a vez anvet ttyS0 gant Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3050,7 +3179,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3072,7 +3201,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3080,7 +3209,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3101,7 +3230,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
#, fuzzy
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
@@ -3127,7 +3256,7 @@ msgstr ""
"Hogen\n"
"neuze e vo ret deoc'h kaout ur bladennig loc'hañ evit loc'hañ anezho."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
#, fuzzy
msgid ""
"You must indicate where you wish to place the information required to boot\n"
@@ -3143,29 +3272,28 @@ msgstr ""
"Nemet ma ouifec'h resis ar pezh a rit, dibabit \"Rann gentañ\n"
"ar bladenn (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3174,7 +3302,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3199,11 +3327,11 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3213,9 +3341,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3227,7 +3354,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3253,7 +3380,7 @@ msgid ""
"selections."
msgstr ""
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3280,18 +3407,17 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3299,12 +3425,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3320,14 +3445,14 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3338,7 +3463,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3346,12 +3471,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3366,26 +3491,26 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "N'hellañ ket implijout ar skignañ hep domani NIS"
-#: ../../install_any.pm_.c:794
+#: ../../install_any.pm_.c:837
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_any.pm_.c:798
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:810
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:832 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Fazi en ur lenn ar restr %s"
@@ -3421,81 +3546,81 @@ msgstr ""
"\n"
"Kenderc'hel evelato ?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Ret eo deoc'h kaout ur parzhadur disloañ"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
#, fuzzy
msgid "Use free space"
msgstr "Implij da saveteiñ"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr ""
-#: ../../install_interactive.pm_.c:100
+#: ../../install_interactive.pm_.c:101
#, fuzzy
msgid "Use existing partitions"
msgstr "O furmadiñ parzhadurioù"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
#, fuzzy
msgid "There is no existing partition to use"
msgstr "O klask assevel an daolenn barzhañ"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
#, fuzzy
msgid "Use the Windows partition for loopback"
msgstr "Implij da saveteiñ"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Pe barzhadur a vennit implijout evit lakaat Linux4Win ?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Dibabit ar mentoù"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Ment ar parzhadur gwrizienn e Mo : "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Ment ar parzhadur disloañ e Mo : "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr ""
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
#, fuzzy
msgid "Which partition do you want to resize?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../install_interactive.pm_.c:130
+#: ../../install_interactive.pm_.c:131
#, fuzzy
msgid "Resizing Windows partition"
msgstr "O jediñ bevennoù ar reizhiad restroù FAT"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-#: ../../install_interactive.pm_.c:136
+#: ../../install_interactive.pm_.c:137
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3516,54 +3641,54 @@ msgstr ""
"ar\n"
"parzhadur-se, ha gwareziñ ho roadoù. Pa vezit sur, gwaskit \"Mat eo\""
-#: ../../install_interactive.pm_.c:147
+#: ../../install_interactive.pm_.c:148
#, fuzzy
msgid "Which size do you want to keep for Windows on"
msgstr "Da beseurt rann e mennit dilec'hiañ ?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "parzhadur %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, fuzzy, c-format
msgid "FAT resizing failed: %s"
msgstr "Adventañ ent emgefreek sac'het"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Chetan an holl planedenn"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Chetan Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, fuzzy, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Goude adventañ ar parzhadur %s e vo kollet holl roadoù ar parzhadur-se"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
#, fuzzy
msgid "Custom disk partitioning"
msgstr "O furmadiñ parzhadurioù"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Implijit fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, fuzzy, c-format
msgid ""
"You can now partition %s.\n"
@@ -3572,12 +3697,12 @@ msgstr ""
"Gallout a rit bremañ parzhañ ho pladenn galet %s\n"
"Pa 'z eo graet, na zisoñjit ket enrollañ dre implijout `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "N'hoc'h eus parzhadur windows ebet !"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
#, fuzzy
msgid "I can't find any room for installing"
msgstr "N'hellan ouzpennañ parzhadur ebet ken"
@@ -3586,16 +3711,16 @@ msgstr "N'hellan ouzpennañ parzhadur ebet ken"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, fuzzy, c-format
msgid "Partitioning failed: %s"
msgstr "Seurt taolenn barzhañ : %s\n"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "O lañsañ ar rouedad"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "O tizenaouiñ ar rouedad"
@@ -3607,12 +3732,12 @@ msgstr ""
"Degouezhet ez eus ur fazi, hogen n'ouzon ket e verañ naet.\n"
"Kendalc'hit war ho mar."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Poent marc'hañ doubl %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -3620,12 +3745,12 @@ msgid ""
"\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Degemer e %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Lenner pladennig hegerz ebet"
@@ -3635,7 +3760,7 @@ msgstr "Lenner pladennig hegerz ebet"
msgid "Entering step `%s'\n"
msgstr "O kregiñ gant al lankad `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
@@ -3643,127 +3768,81 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Renkad staliañ"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Dibabit unan eus ar renkadoù staliañ a-heul mar plij :"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ment hollek ar strolladoù hoc'h eus diuzet a zo war-dro %d Mo.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ma vennit staliañ nebeutoc'h eget ar ment-se,\n"
-"diuzit an dregantad a bakadoù a vennit staliañ.\n"
-"\n"
-"Un dregantad izel a stalio hepken ar pakadoù pouezusañ;\n"
-"un dregantad a 100%% a stalio an holl bakadoù diuzet."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"N'eus egor war ho pladenn nemet evit %d%% eus ar pakadoù-se.\n"
-"\n"
-"Ma vennit staliañ nebeutoc'h eget se,\n"
-"diuzit an dregantad a bakadoù a vennit staliañ.\n"
-"Un dregantad izel a stalio hepken ar pakadoù pouezusañ;\n"
-"un dregantad a %d%% a stalio kement a bakadoù ma 'z eus tu."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Tu vo deoc'h o dibab spisoc'h el lankad a zeu."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Dregantad a bakadoù da staliañ"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Diuzadenn strollad pakadoù"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Diuz pakadoù unan hag unan"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:615
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ment hollek : %d / %d Mo"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Pakad siek"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Anv : %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Stumm : %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Ment : %d Ko\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Talvoudegezh : %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
#, fuzzy
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "N'hellit ket andiuz ar pakad-mañ. Staliet eo endo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
#, fuzzy
msgid "The following packages are going to be installed"
msgstr "Ar pakadoù a-heul a zo war-nes bezañ distaliet"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
#, fuzzy
msgid "The following packages are going to be removed"
msgstr "Ar pakadoù a-heul a zo war-nes bezañ staliet/lamet"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "N'hellit ket diuz/andiuz ar pakad-mañ"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Hemañ a zo ur pakad ret, n'hell ket bezañ andiuzet"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "N'hellit ket andiuz ar pakad-mañ. Staliet eo endo"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
@@ -3771,77 +3850,78 @@ msgstr ""
"Bremanaet e tle bezañ ar pabak-mañ\n"
"Ha sur oc'h e mennit e ziuzañ ?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "N'hellit ket andiuz ar pakad-mañ. Ret eo dezhañ bezañ bremanaet"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Staliañ"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Enrollañ war bladennig"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Diuz pakadoù unan hag unan"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Distaliañ"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:525
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Dibabit ar pakadoù a vennit staliañ"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "O staliañ"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "O vrasjediñ"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Amzer a chom"
-#: ../../install_steps_gtk.pm_.c:528
+#: ../../install_steps_gtk.pm_.c:474
msgid "Please wait, preparing installation..."
msgstr "Gortozit mar plij, o prientiñ ar staliadur"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d pakad"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "O staliañ ar pakad %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:781
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Aotren"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:781
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#, fuzzy
msgid "Refuse"
msgstr "Adventañ"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:782
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3856,17 +3936,17 @@ msgstr ""
"eo da c'houde.\n"
"Ma n'emañ ket ganeoc'h gwaskit Nullañ evit chom hep staliañ ar Cd-Rom-se."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:794
-#: ../../install_steps_interactive.pm_.c:798
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Kenderc'hel evelato ?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:794
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Ur fazi a zo bet en ur rummañ pakadoù :"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:798
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Ur fazi a zo bet en ur staliañ ar pakadoù :"
@@ -3911,11 +3991,11 @@ msgstr "Ur fazi a zo bet"
msgid "Do you really want to leave the installation?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4036,106 +4116,110 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1017
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Stokellaoueg"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
#, fuzzy
msgid "Here is the full list of keyboards available"
msgstr "stokellaoueg"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Pe renkad staliañ a fell deoc'h ?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Staliañ/Bremanaat"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Hag ur staliadur pe ur bremanadur eo ?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Erbedet"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Mailh"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Bremanaat"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Bremanaat pakadoù hep ken"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Porzh al logodenn"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outañ, mar plij."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "O kefluniañ kartennoù PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Kefluniañ IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
+#: ../../install_steps_interactive.pm_.c:337
msgid "No partition available"
msgstr "parzhadur hegerz ebet"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Dibabit at poentoù marc'hañ"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, fuzzy, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4148,7 +4232,7 @@ msgstr ""
"N'hellañ ket lenn ho taolenn barzhañ, re vrein eo evidon :(\n"
"Klask a rin kenderc'hel en ur ziverkañ ar parzhadurioù siek"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4156,120 +4240,137 @@ msgstr ""
"Ne c'hellas ket DiskDrake lenn ent reizh an daolenn barzhañ.\n"
"Kendalc'hit war ho mar !"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "Parzhadur gwrizienn kavet ebet"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Parzhadur gwrizienn"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Pehini eo parzhadur gwrizienn (/) ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Ret eo deoc'h adloc'hañ evit ma talvezo kemmoù an daolenn barzhañ"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Dibabit ar parzhadur a vennit furmadiñ"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Gwiriañ ar bloc'hoù siek ?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "O furmadiñ parzhadurioù"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "O krouiñ hag o furmadiñ ar restr saveteiñ %s"
-#: ../../install_steps_interactive.pm_.c:467
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ket a-walc'h a zisloañ evit peurstaliañ, kreskit anezhañ mar plij"
-#: ../../install_steps_interactive.pm_.c:473
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "O klask ar pakadoù hegerz"
+
+#: ../../install_steps_interactive.pm_.c:491
msgid "Looking for available packages..."
msgstr "O klask ar pakadoù hegerz"
-#: ../../install_steps_interactive.pm_.c:479
+#: ../../install_steps_interactive.pm_.c:495
msgid "Finding packages to upgrade..."
msgstr "O kavout pakadoù da vremanaat"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "N'hellit ket andiuz ar pakad-mañ. Staliet eo endo"
+
+#: ../../install_steps_interactive.pm_.c:516
#, fuzzy, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr "Ho reizhiad n'eus ket wa-walc'h a egor evit staliañ pe vremanaat"
-#: ../../install_steps_interactive.pm_.c:538
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:541
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Assevel adalek ar pladennig"
-#: ../../install_steps_interactive.pm_.c:543
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Assevelañ adalek ar pladennig"
-#: ../../install_steps_interactive.pm_.c:543
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Diuzadenn pakadoù"
-#: ../../install_steps_interactive.pm_.c:548
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:560
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Enrollañ war bladennig"
-#: ../../install_steps_interactive.pm_.c:628
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Dibabit pakadoù da staliañ"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Gant X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:732
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4279,16 +4380,16 @@ msgstr ""
"Ma n'hoc'h eus hini eus ar CDoù-se, gwaskit Nullañ.\n"
"Ma fazi deoc'h lod eus ar CDoù, andiuzit anezho ha gwaskit Mat eo."
-#: ../../install_steps_interactive.pm_.c:737
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom skridennet \"%s\""
-#: ../../install_steps_interactive.pm_.c:757
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "O prientiñ ar staliadur"
-#: ../../install_steps_interactive.pm_.c:766
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4297,21 +4398,21 @@ msgstr ""
"O staliañ ar pakad %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Kefluniadur goude staliañ"
-#: ../../install_steps_interactive.pm_.c:818
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../install_steps_interactive.pm_.c:844
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4383,7 +4484,7 @@ msgstr ""
"Altadena California 91001\n"
"SUA"
-#: ../../install_steps_interactive.pm_.c:883
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4395,153 +4496,182 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:898
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "O taremprediñ ar melezour evit kaout roll ar pakadoù hegerz"
-#: ../../install_steps_interactive.pm_.c:903
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Dibabit ur melezour da dapout ar pakadoù diwarnañ"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:932
msgid "Contacting the mirror to get the list of available packages..."
msgstr "O taremprediñ ar melezour evit kaout roll ar pakadoù hegerz"
-#: ../../install_steps_interactive.pm_.c:939
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Pe seurt a vo ho takad-eur ?"
-#: ../../install_steps_interactive.pm_.c:944
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ha war GMT eo lakaet ho eurier periantel ?"
-#: ../../install_steps_interactive.pm_.c:945
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:952
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "Servijer NTP"
-#: ../../install_steps_interactive.pm_.c:986
-#: ../../install_steps_interactive.pm_.c:994
+#: ../../install_steps_interactive.pm_.c:1006
+#: ../../install_steps_interactive.pm_.c:1014
#, fuzzy
msgid "Remote CUPS server"
msgstr "Steud a-bell"
-#: ../../install_steps_interactive.pm_.c:987
+#: ../../install_steps_interactive.pm_.c:1007
#, fuzzy
msgid "No printer"
msgstr "Moullerez lec'hel"
-#: ../../install_steps_interactive.pm_.c:1004
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Hag un all hoc'h eus ?"
-#: ../../install_steps_interactive.pm_.c:1006
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1008
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1013 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Evit diverriñ"
-#: ../../install_steps_interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Logodenn"
-#: ../../install_steps_interactive.pm_.c:1018
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Takad-eur"
-#: ../../install_steps_interactive.pm_.c:1019 ../../printerdrake.pm_.c:2279
-#: ../../printerdrake.pm_.c:2357
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Moullerez"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Kartenn ISDN"
-#: ../../install_steps_interactive.pm_.c:1024
-#: ../../install_steps_interactive.pm_.c:1026
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Kartenn son"
-#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Kartenn pellwel"
-#: ../../install_steps_interactive.pm_.c:1066
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1067
-#: ../../install_steps_interactive.pm_.c:1090
-#: ../../install_steps_interactive.pm_.c:1103
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1068
#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Restroù lec'hel"
-#: ../../install_steps_interactive.pm_.c:1077
-#: ../../install_steps_interactive.pm_.c:1078 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Termeniñ tremenger root"
-#: ../../install_steps_interactive.pm_.c:1079
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Tremenger ebet"
-#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutañ)"
-#: ../../install_steps_interactive.pm_.c:1090 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1098
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Dilesadur"
-#: ../../install_steps_interactive.pm_.c:1099
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "Servijer LDAP"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Dilesadur NIS"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Domani NIS"
-#: ../../install_steps_interactive.pm_.c:1108
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Servijer NIS"
-#: ../../install_steps_interactive.pm_.c:1143
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Dilesadur"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Titouroù"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Servijer NTP"
+
+#: ../../install_steps_interactive.pm_.c:1142
+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"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4571,19 +4701,19 @@ msgstr ""
"evit\n"
"ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:1159
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Lenner pladennig kentañ"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Eil lenner pladennig"
-#: ../../install_steps_interactive.pm_.c:1161 ../../printerdrake.pm_.c:1851
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Tremen e-biou"
-#: ../../install_steps_interactive.pm_.c:1166
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4611,7 +4741,7 @@ msgstr ""
"ho reizhiad ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1172
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -4620,29 +4750,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1180
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Ho tigarez, lenner pladennig hegerz ebet"
-#: ../../install_steps_interactive.pm_.c:1184
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Dibabit al lenner pladennig a vennit implijout evit ober ar bladenn loc'hañ"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:1191
+#: ../../install_steps_interactive.pm_.c:1224
msgid "Creating bootdisk..."
msgstr "O krouiñ ar bladenn loc'hañ"
-#: ../../install_steps_interactive.pm_.c:1198
+#: ../../install_steps_interactive.pm_.c:1231
msgid "Preparing bootloader..."
msgstr "O prientiñ ar c'harger loc'hañ"
-#: ../../install_steps_interactive.pm_.c:1209
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4650,11 +4780,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Mennout a rit implijout aboot?"
-#: ../../install_steps_interactive.pm_.c:1218
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4662,16 +4792,16 @@ msgstr ""
"Fazi en ur staliañ aboot,\n"
"klask rediañ ar staliadur zoken ma tistruj ar parzhadur kentañ ?"
-#: ../../install_steps_interactive.pm_.c:1225
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Staliañ ar c'harger loc'hañ"
-#: ../../install_steps_interactive.pm_.c:1231
+#: ../../install_steps_interactive.pm_.c:1264
#, fuzzy
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Staliadur LILO a zo sac'het. Degouezhet eo ar fazi a heul :"
-#: ../../install_steps_interactive.pm_.c:1239
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4682,17 +4812,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1283
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../install_steps_interactive.pm_.c:1287
+#: ../../install_steps_interactive.pm_.c:1310
msgid "Creating auto install floppy..."
msgstr "O krouiñ ur bladennig staliañ emgefreek"
-#: ../../install_steps_interactive.pm_.c:1298
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4702,7 +4832,8 @@ msgstr ""
"\n"
"Mennout a rit kuitaat da vat bremañ ?"
-#: ../../install_steps_interactive.pm_.c:1309
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4713,7 +4844,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -4727,18 +4858,22 @@ msgstr ""
"sellit ouzh ar meneger fazioù hegerz e \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Titouroù war gefluniañ ho reizhiad a zo hegerz e rannbennad Goude\n"
"Staliañ Sturier ofisiel an Arveriad Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
#, fuzzy
msgid "Generate auto install floppy"
msgstr "O krouiñ ur bladennig staliañ emgefreek"
-#: ../../install_steps_interactive.pm_.c:1328
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4747,16 +4882,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1333
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Emgefreek"
-#: ../../install_steps_interactive.pm_.c:1333
+#: ../../install_steps_interactive.pm_.c:1357
#, fuzzy
msgid "Replay"
msgstr "Adkargañ"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1360
#, fuzzy
msgid "Save packages selection"
msgstr "Diuz pakadoù unan hag unan"
@@ -4784,411 +4919,407 @@ msgstr ""
msgid "Choose a file"
msgstr "Dibabit ur restr"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Barek"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
#, fuzzy
msgid "Basic"
msgstr "Diazez"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Gortozit mar plij"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Dibab fall, klaskit adarre\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Nozel `%s': %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
msgid "Do you want to click on this button?"
msgstr "Mennout a rit implijout SILO ?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
msgid " enter `void' for void entry"
msgstr ""
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Ho tibab ? (%s dre ziouer)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:197 ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Tchek (QWERTZ)"
-#: ../../keyboard.pm_.c:198 ../../keyboard.pm_.c:230
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Alaman"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:200 ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Spagnol"
-#: ../../keyboard.pm_.c:201 ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finnek"
-#: ../../keyboard.pm_.c:202 ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Gall"
-#: ../../keyboard.pm_.c:203 ../../keyboard.pm_.c:264
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norvegek"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polonek"
-#: ../../keyboard.pm_.c:205 ../../keyboard.pm_.c:272
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rusiek"
-#: ../../keyboard.pm_.c:207 ../../keyboard.pm_.c:274
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Svedek"
-#: ../../keyboard.pm_.c:208 ../../keyboard.pm_.c:289
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Stokellaoueg RU"
-#: ../../keyboard.pm_.c:209 ../../keyboard.pm_.c:290
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Stokellaoueg SUA"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armeniek (kozh)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armeniek (skriverez)"
-#: ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armeniek (soniadel)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjanek (latin)"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgian"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armeniek (soniadel)"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulgarek (BDS)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasilek (ABNT-2)"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:193
#, fuzzy
msgid "Belarusian"
msgstr "Bulgarek"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Suis (reizhadur alaman)"
-#: ../../keyboard.pm_.c:227
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Suis (reizhadur gall)"
-#: ../../keyboard.pm_.c:229
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Tchek (QWERTY)"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Alaman (stokell marv ebet)"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danek"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:234
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norvegek)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Svedek)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoniek"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Jorjiek (reizhadur \"Rusiek\")"
-#: ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Jorjiek (reizhadur \"Latin\")"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Gresian"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hungarian"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Kroatek"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israelian"
-#: ../../keyboard.pm_.c:246
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israelian (soniadel)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:215
#, fuzzy
msgid "Iranian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandek"
-#: ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italian"
-#: ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr ""
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:222
#, fuzzy
msgid "Korean keyboard"
msgstr "Reizhadur Stokellaoueg RU"
-#: ../../keyboard.pm_.c:255
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Amerikan Latin"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Lituaniek AZERTY (kozh)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Lituaniek AZERTY (nevez)"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituaniek QUERTY \"linenn sifroù\""
-#: ../../keyboard.pm_.c:260
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituaniek QUERTY \"soniadel\""
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Titouroù"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonia"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Hollandek"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polonek (reizhadur qwerty)"
-#: ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polonek (reizhadur qwerty)"
-#: ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalek"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadian (Kebek)"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:271
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:273
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:275
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovek"
-#: ../../keyboard.pm_.c:276
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovakek (QWERTZ)"
-#: ../../keyboard.pm_.c:277
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovakek (QWERTY)"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Yougoslaviek (reizhadur latin)"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Taolenn"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Stokellaoueg Thai"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Stokellaoueg Thai"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkek (hengounel doare \"F\")"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkek (arnevez doare \"Q\")"
-#: ../../keyboard.pm_.c:288
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:291
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Stokellaoueg SUA (etrevroadel)"
-#: ../../keyboard.pm_.c:292
+#: ../../keyboard.pm_.c:260
#, fuzzy
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Lituaniek QUERTY \"linenn sifroù\""
-#: ../../keyboard.pm_.c:293
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Yougoslaviek (latin)"
-#: ../../keyboard.pm_.c:301
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:302
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:303
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:304
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:305
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:306
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:307
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:308
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:309
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5201,7 +5332,31 @@ msgstr "Marc'hañ kelc'hiek %s\n"
msgid "Remove the logical volumes first\n"
msgstr ""
-#: ../../modules.pm_.c:832
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Niverenn bellgomz"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Furmadiñ parzhadurioù"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5242,10 +5397,6 @@ msgstr "1 nozelenn"
msgid "Generic 2 Button Mouse"
msgstr "Logodenn rummel 2 nozelenn"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Rummel"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Rodel"
@@ -5310,53 +5461,53 @@ msgstr "ebet"
msgid "No mouse"
msgstr "Logodenn ebet"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
#, fuzzy
msgid "Please test the mouse"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
#, fuzzy
msgid "To activate the mouse,"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "FIÑV HO RODELL !"
-#: ../../my_gtk.pm_.c:666
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
-#: ../../my_gtk.pm_.c:701
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Disoc'h"
-#: ../../my_gtk.pm_.c:701 ../../printerdrake.pm_.c:1590
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "A heul ->"
-#: ../../my_gtk.pm_.c:702 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Diaraog"
-#: ../../my_gtk.pm_.c:1034
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Ha reizh eo ?"
-#: ../../my_gtk.pm_.c:1098 ../../services.pm_.c:222
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
msgid "Info"
msgstr "Titouroù"
-#: ../../my_gtk.pm_.c:1119
+#: ../../my_gtk.pm_.c:1141
msgid "Expand Tree"
msgstr "Astenn ar wezenn"
-#: ../../my_gtk.pm_.c:1120
+#: ../../my_gtk.pm_.c:1142
msgid "Collapse Tree"
msgstr "Plegañ ar wezenn"
-#: ../../my_gtk.pm_.c:1121
+#: ../../my_gtk.pm_.c:1143
msgid "Toggle between flat and group sorted"
msgstr "Gwintañ etre kompez ha rummet dre strollad"
@@ -5401,7 +5552,7 @@ msgid ""
"I cannot set up this connection type."
msgstr ""
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:248
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
#, fuzzy
msgid "Choose the network interface"
msgstr "Dibabit ar ment nevez"
@@ -5438,10 +5589,10 @@ msgid "Host name"
msgstr "Anv an ostiz"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:179
-#: ../../network/netconnect.pm_.c:206 ../../network/netconnect.pm_.c:229
-#: ../../network/netconnect.pm_.c:237
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "Kefluniadur ar rouedad"
@@ -5577,103 +5728,103 @@ msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
msgid "Dialup options"
msgstr "Dibarzhoù sifrennañ"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Anv ar gevreadenn"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
#, fuzzy
msgid "Phone number"
msgstr "Niverenn bellgomz"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Anv ereañ"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Diazezet war ur skrid"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Diazezet war un dermenell"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Anv ar domani"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Servijer DNS kentañ (da zilenn)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Eil servijer DNS (da zilenn)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Kefluniañ ur rouedad"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr "Anv ar gevreadenn"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Connect"
msgstr "Anv ar gevreadenn"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
#, fuzzy
msgid "Disconnect"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Kefluniañ ur rouedad"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
#, fuzzy
msgid "Internet connection & configuration"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Kefluniañ ur rouedad"
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -5685,12 +5836,12 @@ msgid ""
"Press OK to continue."
msgstr "Kefluniañ ur rouedad"
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:256
-#: ../../network/netconnect.pm_.c:276 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Kefluniadur ar rouedad"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -5698,7 +5849,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -5706,100 +5857,106 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:170
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Dibabit ar ment nevez"
-#: ../../network/netconnect.pm_.c:172
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:179 ../../printerdrake.pm_.c:145
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Mod mailh"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "O tinoiñ trobarzhelloù..."
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "Normal modem connection"
msgstr "Kefluniañ ur rouedad"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Poent marc'hañ doubl %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, fuzzy
msgid "ISDN connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "kavoutet %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "kavoutet war %s"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Cable connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
#, fuzzy
msgid "LAN connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:194 ../../network/netconnect.pm_.c:203
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "kartenn(où) ethernet kavoutet"
-#: ../../network/netconnect.pm_.c:206
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Dibabit ar benveg a vennit staliañ"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:231
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Lugerezh ar voullerez"
-#: ../../network/netconnect.pm_.c:237
+#: ../../network/netconnect.pm_.c:236
#, fuzzy
msgid "Do you want to start the connection at boot?"
msgstr "Mennout a rit implijout aboot ?"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:250
#, fuzzy
msgid "Network configuration"
msgstr "Kefluniadur ar rouedad"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:256
+#: ../../network/netconnect.pm_.c:255
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -5807,20 +5964,20 @@ msgid ""
"%s"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:271
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -5855,12 +6012,12 @@ msgstr "O kefluniañ an drobarzhell rouedad %s"
msgid " (driver %s)"
msgstr "Servijer XFree86 : %s\n"
-#: ../../network/network.pm_.c:311 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Chomlec'h IP"
-#: ../../network/network.pm_.c:312 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Maskl rouedad"
@@ -5877,7 +6034,7 @@ msgstr "IP emgefreek"
msgid "Start at boot"
msgstr "Krouiñ ur bladennig loc'hañ"
-#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:714
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "Er furmad 1.2.3.4 e tlefe bezañ ar chomlec'h IP"
@@ -5941,7 +6098,7 @@ msgstr "Kefluniañ ar proksioù"
msgid "Do you want to try to connect to the Internet now?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../network/tools.pm_.c:46 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
#, fuzzy
msgid "Testing your connection..."
msgstr "Kefluniañ ur rouedad"
@@ -5971,44 +6128,44 @@ msgstr "Kefluniañ ar proksioù"
msgid "Please fill or check the field below"
msgstr ""
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ kartenn"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memor kartenn (DMA)"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO kartenn"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 kartenn"
-#: ../../network/tools.pm_.c:89 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 kartenn"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr ""
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
#, fuzzy
msgid "Provider phone number"
msgstr "Niverenn bellgomz"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Dibarzhoù ar voullerez (da zilenn)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Dibarzhoù ar voullerez (da zilenn)"
@@ -6017,27 +6174,28 @@ msgstr "Dibarzhoù ar voullerez (da zilenn)"
msgid "Choose your country"
msgstr "Dibabit ho stokellaoueg"
-#: ../../network/tools.pm_.c:96 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
#, fuzzy
msgid "Dialing mode"
msgstr "Anv domani"
-#: ../../network/tools.pm_.c:97 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Anv ar gevreadenn"
-#: ../../network/tools.pm_.c:98 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Anv ar gevreadenn"
-#: ../../network/tools.pm_.c:99 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
#, fuzzy
msgid "Account Login (user name)"
msgstr "Poent marc'hañ"
-#: ../../network/tools.pm_.c:100 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
#, fuzzy
msgid "Account Password"
msgstr "Tremenger"
@@ -6046,15 +6204,15 @@ msgstr "Tremenger"
msgid "United Kingdom"
msgstr ""
-#: ../../partition_table.pm_.c:600
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "marc'hañ sac'het : "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -6064,214 +6222,214 @@ msgstr ""
"Fiñval ar parzhadurioù kentañ derez evit ma vo an toull stok ouzh ar "
"parzhadurioù astennet eo an diskoulm"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Assevel adalek ar restr %s sac'het %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Restr gwareziñ siek"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Fazi en ur skrivañ er restr %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
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 trash"
msgstr ""
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "a rankfec'h kaout"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "a-bouez"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "brav-tre"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "brav"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "marteze"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Moullerez lec'hel"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
#, fuzzy
msgid "Remote printer"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Steud a-bell"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:736
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "lpd a-bell"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
#, fuzzy
msgid "Network printer (TCP/Socket)"
msgstr "Dibarzhoù ar voullerez NetWare"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Servijer moullañ"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:740
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Trobarzhell ar voullerez"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2733
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Moullerezioù lec'hel"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Moullerezio* a-bell"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", Mouluriez USB \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "Fazi en ur skrivañ er restr %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1138
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(mollad %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP ar servijer SMB"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2394
-#: ../../printerdrake.pm_.c:2405 ../../printerdrake.pm_.c:2621
-#: ../../printerdrake.pm_.c:2673 ../../printerdrake.pm_.c:2700
-#: ../../printerdrake.pm_.c:2870 ../../printerdrake.pm_.c:2872
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Dre ziouer)"
@@ -6290,12 +6448,12 @@ msgid ""
"printers will be automatically detected."
msgstr ""
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2457
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Kefluniadur"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2458
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Steud a-bell"
@@ -6326,7 +6484,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "Er furmad 1.2.3.4 e tlefe bezañ ar chomlec'h IP"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:864
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr ""
@@ -6335,7 +6493,7 @@ msgstr ""
msgid "CUPS server IP"
msgstr "IP ar servijer SMB"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:857
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
#, fuzzy
msgid "Port"
msgstr "Paour"
@@ -6345,17 +6503,13 @@ msgstr "Paour"
msgid "Automatic CUPS configuration"
msgstr "Kefluniadur goude staliañ"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Amprouiñ ar porzhioù"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2440
-#: ../../printerdrake.pm_.c:2559
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6368,13 +6522,13 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -6392,12 +6546,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -6411,11 +6565,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -6425,35 +6579,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Dilesadur"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Amprouiñ ar porzhioù"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "Poent marc'hañ doubl %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "Moullerez USB \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -6461,42 +6619,42 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Trobarzhell ar voullerez"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
msgstr "N'ev ket Moullerez lec'hel!\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -6504,7 +6662,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -6512,72 +6670,81 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Trobarzhell ar voullerez"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Kefluniañ ar proksioù"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
-"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart P100 or 1315 or an "
-"HP LaserJet 2200?"
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:484
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "O staliañ ar pakad %s"
-#: ../../printerdrake.pm_.c:489
+#: ../../printerdrake.pm_.c:485
msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:507
+#: ../../printerdrake.pm_.c:504
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing SANE packages..."
msgstr "O staliañ ar pakad %s"
-#: ../../printerdrake.pm_.c:519
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "O staliañ pakadoù..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:536
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
msgid "Making printer port available for CUPS..."
msgstr ""
-#: ../../printerdrake.pm_.c:546 ../../printerdrake.pm_.c:1020
-#: ../../printerdrake.pm_.c:1134
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
msgid "Reading printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -6587,31 +6754,31 @@ msgstr ""
"pourvezañ anv ostiz ar servijer moullañ hag anv as steud\n"
"war ar servijer-se ma zlefe bezañ kaset an dleadoù moullañ."
-#: ../../printerdrake.pm_.c:628
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Anv an ostiz a-bell"
-#: ../../printerdrake.pm_.c:629
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:632
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Anv an ostiz a-bell"
-#: ../../printerdrake.pm_.c:636
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Anv an ostiz a-bell"
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Dibarzhoù moullañ SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -6625,35 +6792,35 @@ msgstr ""
"kement hag anv rannet ar voullerez a glaskit tizhout ha ne vern pe\n"
"ditour a anv arveriad, tremenger ha strollad labour en implij."
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Anv ar servijer SMB"
-#: ../../printerdrake.pm_.c:707
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP ar servijer SMB"
-#: ../../printerdrake.pm_.c:708
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Anv rannet"
-#: ../../printerdrake.pm_.c:711
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Strollad labour"
-#: ../../printerdrake.pm_.c:718
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:722
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:727
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:728
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -6677,7 +6844,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:738
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -6686,7 +6853,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:741
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -6694,11 +6861,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Dibarzhoù ar voullerez NetWare"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -6711,28 +6878,28 @@ msgstr ""
"anv ostiz TCP/IP !) kement hag anv ar steud moullañ evit ar voullerez\n"
"a glaskit tizhout ha ne vern pe anv arveriad ha tremenger en implij."
-#: ../../printerdrake.pm_.c:805
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Servijer moullañ"
-#: ../../printerdrake.pm_.c:806
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Anv ar steud moullañ"
-#: ../../printerdrake.pm_.c:811
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:815
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Dibarzhoù ar voullerez NetWare"
-#: ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -6740,61 +6907,56 @@ msgid ""
"hardware."
msgstr ""
-#: ../../printerdrake.pm_.c:856
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Anv ar voullerez"
-#: ../../printerdrake.pm_.c:860
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Dibarzhoù ar voullerez"
-#: ../../printerdrake.pm_.c:889 ../../printerdrake.pm_.c:891
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
#, fuzzy
msgid "Printer Device URI"
msgstr "Trobarzhell ar voullerez"
-#: ../../printerdrake.pm_.c:890
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:905
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1006
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Anv ar moullerez"
-#: ../../printerdrake.pm_.c:1008
-#, fuzzy
-msgid "Description"
-msgstr "Spisait dibarzhoù"
-
-#: ../../printerdrake.pm_.c:1009
+#: ../../printerdrake.pm_.c:1031
#, fuzzy
msgid "Location"
msgstr "Titouroù"
-#: ../../printerdrake.pm_.c:1023
+#: ../../printerdrake.pm_.c:1045
msgid "Preparing printer database..."
msgstr ""
-#: ../../printerdrake.pm_.c:1114
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:1115
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -6809,28 +6971,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1120 ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Ha reizh eo ?"
-#: ../../printerdrake.pm_.c:1121 ../../printerdrake.pm_.c:1122
-#: ../../printerdrake.pm_.c:1125
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:1142
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Peseurt moullerez hoc'h eus ?"
-#: ../../printerdrake.pm_.c:1143
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -6839,18 +7001,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1146
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1222
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Kefluniañ ar modem"
-#: ../../printerdrake.pm_.c:1223
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -6860,12 +7022,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1266 ../../printerdrake.pm_.c:1293
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Kefluniañ ar proksioù"
-#: ../../printerdrake.pm_.c:1267
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -6873,7 +7035,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1294
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -6886,7 +7048,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1510
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -6896,34 +7058,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1519
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1523
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1528
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1567
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Ha mennout a rit amprouiñ moullañ skrid ?"
-#: ../../printerdrake.pm_.c:1584
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Amprouiñ ar porzhioù"
-#: ../../printerdrake.pm_.c:1585
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -6931,45 +7093,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1589
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "Ya, moullit an div bajenn arnod"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Moullerez"
-#: ../../printerdrake.pm_.c:1592
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Diorren"
-#: ../../printerdrake.pm_.c:1595
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "O voullañ pajenn(où) skrid..."
-#: ../../printerdrake.pm_.c:1600
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "O voullañ pajenn(où) skrid..."
-#: ../../printerdrake.pm_.c:1604
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "O voullañ pajenn(où) skrid..."
-#: ../../printerdrake.pm_.c:1612 ../../printerdrake.pm_.c:1749
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "O voullañ pajenn(où) skrid..."
-#: ../../printerdrake.pm_.c:1637
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6985,7 +7147,7 @@ msgstr ""
"\n"
"Ha mont a ra en-dro reizh ?"
-#: ../../printerdrake.pm_.c:1641
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -6995,16 +7157,16 @@ msgstr ""
"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
"Ha mont a ra en-dro reizh ?"
-#: ../../printerdrake.pm_.c:1648
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1669 ../../printerdrake.pm_.c:2735
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7013,15 +7175,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1689
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:1708
-#: ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7030,49 +7192,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1695 ../../printerdrake.pm_.c:1734
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1698
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1705 ../../printerdrake.pm_.c:1715
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1710 ../../printerdrake.pm_.c:1720
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1727
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7082,7 +7244,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1731
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7091,31 +7253,42 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1740 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:1747 ../../printerdrake.pm_.c:1748
-#: ../../printerdrake.pm_.c:2719 ../../standalone/drakbackup_.c:743
-#: ../../standalone/drakbackup_.c:2448 ../../standalone/drakfont_.c:580
-#: ../../standalone/drakfont_.c:792
-#, fuzzy
-msgid "Close"
-msgstr "Logodenn USB"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "O tizenaouiñ ar rouedad"
-#: ../../printerdrake.pm_.c:1743 ../../printerdrake.pm_.c:1755
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "O tizenaouiñ ar rouedad"
-#: ../../printerdrake.pm_.c:1744 ../../printerdrake.pm_.c:1756
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "O tizenaouiñ ar rouedad"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "O tizenaouiñ ar rouedad"
-#: ../../printerdrake.pm_.c:1746
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+#, fuzzy
+msgid "Close"
+msgstr "Logodenn USB"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Dibarzhoù ar voullerez"
-#: ../../printerdrake.pm_.c:1768
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7123,37 +7296,37 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1775
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1797 ../../printerdrake.pm_.c:2224
-#: ../../printerdrake.pm_.c:2488
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
msgid "Reading printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1817 ../../printerdrake.pm_.c:1845
-#: ../../printerdrake.pm_.c:1880
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Kefluniañ ar proksioù"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7163,51 +7336,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1821
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1823
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1827
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1828
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1832
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1833 ../../printerdrake.pm_.c:1850
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1846
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7215,61 +7388,61 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1854
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
-#: ../../printerdrake.pm_.c:1859
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:1870
+#: ../../printerdrake.pm_.c:1915
#, c-format
msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1881
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1935
msgid "Refreshing printer data..."
msgstr ""
-#: ../../printerdrake.pm_.c:1898 ../../printerdrake.pm_.c:1969
-#: ../../printerdrake.pm_.c:1981
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Kefluniañ ar voullerez"
-#: ../../printerdrake.pm_.c:1899
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
msgid "Starting network..."
msgstr "Kefluniañ ur rouedad"
-#: ../../printerdrake.pm_.c:1933 ../../printerdrake.pm_.c:1937
-#: ../../printerdrake.pm_.c:1939
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Kefluniañ ur rouedad"
-#: ../../printerdrake.pm_.c:1934
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "Skramm ket kefluniet"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7277,12 +7450,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1938
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "Kefluniañ ar rouedad"
-#: ../../printerdrake.pm_.c:1971
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7292,34 +7465,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1972
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
msgid "Restarting printing system..."
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2020
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Uhel"
-#: ../../printerdrake.pm_.c:2020
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Ankeniet"
-#: ../../printerdrake.pm_.c:2021
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2022
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -7334,11 +7507,11 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2054
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr ""
-#: ../../printerdrake.pm_.c:2055
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -7352,69 +7525,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2078 ../../printerdrake.pm_.c:2116
-#: ../../printerdrake.pm_.c:2146 ../../printerdrake.pm_.c:2179
-#: ../../printerdrake.pm_.c:2284
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2120
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2150
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2208
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Diuzit lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:2209
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../printerdrake.pm_.c:2242
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Kefluniañ ar voullerez"
-#: ../../printerdrake.pm_.c:2255
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
msgid "Installing Foomatic..."
msgstr "O staliañ ar pakad %s"
-#: ../../printerdrake.pm_.c:2312 ../../printerdrake.pm_.c:2351
-#: ../../printerdrake.pm_.c:2736 ../../printerdrake.pm_.c:2806
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Dibarzhoù ar voullerez"
-#: ../../printerdrake.pm_.c:2321
+#: ../../printerdrake.pm_.c:2389
msgid "Preparing PrinterDrake..."
msgstr ""
-#: ../../printerdrake.pm_.c:2338 ../../printerdrake.pm_.c:2893
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Kefluniañ ar voullerez"
-#: ../../printerdrake.pm_.c:2358
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Mennout a rit kefluniañ ur voullerez ?"
-#: ../../printerdrake.pm_.c:2370
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2418
+#: ../../printerdrake.pm_.c:2486
#, fuzzy
msgid "Printerdrake"
msgstr "Moullerez"
-#: ../../printerdrake.pm_.c:2422
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7425,7 +7598,7 @@ msgstr ""
"Setu da heul ar steudadoù moullañ.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: ../../printerdrake.pm_.c:2423
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -7435,138 +7608,142 @@ msgstr ""
"Setu da heul ar steudadoù moullañ.\n"
"Gallout a rit ouzhpennañ lod pe gemmañ a re a zo."
-#: ../../printerdrake.pm_.c:2449
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2467
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Kefluniañ ur rouedad"
-#: ../../printerdrake.pm_.c:2472 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
#, fuzzy
msgid "Normal Mode"
msgstr "Boas"
-#: ../../printerdrake.pm_.c:2628 ../../printerdrake.pm_.c:2678
-#: ../../printerdrake.pm_.c:2887
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Kuitaat"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:2714
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Kefluniañ ar modem"
-#: ../../printerdrake.pm_.c:2716
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:2720
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2780
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2784
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:2728 ../../printerdrake.pm_.c:2799
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2729 ../../printerdrake.pm_.c:2800
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2815
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2824
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2833
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "O voullañ pajenn(où) skrid..."
-#: ../../printerdrake.pm_.c:2743 ../../printerdrake.pm_.c:2835
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:2745 ../../printerdrake.pm_.c:2837
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2789
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:2813
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:2814
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2818 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2822
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2827 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2831
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2839
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Mennout a rit amprouiñ ar c'hefluniadur ?"
-#: ../../printerdrake.pm_.c:2841
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
msgid "Removing printer \"%s\"..."
msgstr "Dibarzhoù ar voullerez lpd a-bell"
@@ -7651,24 +7828,62 @@ msgstr "An tremegerioù ne glot ket"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "N'hellan ket ouzhpennañ ur parzhadur da RAID md%d _furmadet_"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "N'hellan ket skrivañ e %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid sac'het"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid sac'het (raidtools a vank emichañs ?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ket a-walc'h a parzhadurioù evit RAID live %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Ret eo implijout al live-mañ gant evezh. Ober a ra d'ho reizhiad bezañ\n"
+"aesoc'h da implijout, hogen kizidig-tre : arabat e implj evit un ardivink\n"
+"kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziñ dre dremenger."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Gant al live surentez-mañ e teu posupl implijout ar reizhiad-mañ evel ur "
+"servijer.\n"
+"Uhel a-walc'h eo bremañ ar surentez evit implijout ar reizhiad evel ur "
+"servijer\n"
+"o tigemer kevreadennoù a-berzh arvaloù niverus."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Kefluniadur"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Parzhadur"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -7723,7 +7938,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:414
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -7791,7 +8006,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -7868,7 +8083,7 @@ msgstr ""
"dro\n"
"war ardivinkoù anezho servijerien komenadoù a implij ar reizhiad RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:417
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -7969,7 +8184,7 @@ msgstr "dedennus"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:923
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Reizhiad/Diazez"
@@ -8093,6 +8308,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Anv ar gevreadenn"
@@ -8194,6 +8410,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "O staliañ pakadoù..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Adereit ouzh %s evit bevaat ar c'hemmoù mar plij"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8202,6 +8427,159 @@ msgstr ""
"N'hellañ ket lenn ho taolenn barzhañ, re vrein eo evidon :(\n"
"Klask a rin kenderc'hel en ur ziverkañ ar parzhadurioù siek"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Kefluniañ ar proksioù"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Stlennvonioù"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Stlennvonioù"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+#, fuzzy
+msgid "Etherboot Floppy/ISO"
+msgstr "Krouiñ ur bladennig loc'hañ"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Ouzhpennañ un arveriad"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Skoazell"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Dilemel"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Diuzit ar restr"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Ouzhpennañ un arveriad"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Kefluniañ IDE"
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "Kefluniañ X"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Lakait ur bladennig el lenner %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Lenner pladennig hegerz ebet"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Fazi!"
@@ -8255,40 +8633,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:548
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gourc'hemennoù!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Staliañ"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Ouzhpennañ un arveriad"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "O furmadiñ ar restr saveteiñ %s"
-#: ../../standalone/drakbackup_.c:438
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:439
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -8296,7 +8674,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:443
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -8304,700 +8682,767 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:465
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:544 ../../standalone/drakbackup_.c:591
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:592 ../../standalone/drakbackup_.c:656
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:604
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:605
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:655
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:663
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
+#, c-format
+msgid ""
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-" FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:676
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Fazi en ur lenn ar restr %s"
-#: ../../standalone/drakbackup_.c:717 ../../standalone/drakbackup_.c:728
-#: ../../standalone/drakbackup_.c:739 ../../standalone/drakfont_.c:788
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Diuzadenn strollad pakadoù"
-#: ../../standalone/drakbackup_.c:744
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:779
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:780
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:781
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:782
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:783
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:784
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:801
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../standalone/drakbackup_.c:828
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:829 ../../standalone/drakbackup_.c:853
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:851 ../../standalone/drakfont_.c:828
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Lemel ar steudad"
-#: ../../standalone/drakbackup_.c:889
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:928
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Anv arveriad"
-#: ../../standalone/drakbackup_.c:954
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:957
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:962
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Klaskit adarre mar plij"
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Klaskit adarre mar plij"
-#: ../../standalone/drakbackup_.c:978
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Tremenger ebet"
-#: ../../standalone/drakbackup_.c:1042 ../../standalone/drakbackup_.c:2038
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/drakbackup_.c:1049 ../../standalone/drakbackup_.c:2046
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Diuzit lugerezh ar voullerez"
-
-#: ../../standalone/drakbackup_.c:1075 ../../standalone/drakbackup_.c:2879
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1078 ../../standalone/drakbackup_.c:2883
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
#
-#: ../../standalone/drakbackup_.c:1084 ../../standalone/drakbackup_.c:2895
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Klikit war ur parzhadur mar plij"
-#: ../../standalone/drakbackup_.c:1090 ../../standalone/drakbackup_.c:2901
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1096
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../standalone/drakbackup_.c:1102
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1143
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:1146
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1152 ../../standalone/drakbackup_.c:1193
-#: ../../standalone/drakbackup_.c:2003
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1185 ../../standalone/drakbackup_.c:1995
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:1199 ../../standalone/drakbackup_.c:2009
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:1257
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Taolenn"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1585
+msgid "CDROM / DVDROM"
+msgstr "CDROM / DVDROM"
+
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1287 ../../standalone/drakbackup_.c:1291
-#: ../../standalone/drakbackup_.c:1295
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Seurt"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1288 ../../standalone/drakbackup_.c:1292
-#: ../../standalone/drakbackup_.c:1295
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1289 ../../standalone/drakbackup_.c:1293
-#: ../../standalone/drakbackup_.c:1295
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1290 ../../standalone/drakbackup_.c:1294
-#: ../../standalone/drakbackup_.c:1295
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1302
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Anv arveriad"
-#: ../../standalone/drakbackup_.c:1307
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:1317
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Implijout gwelladur ar bladenn galet ?"
-
-#: ../../standalone/drakbackup_.c:1319
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Rouedad/Diaouled"
-
-#: ../../standalone/drakbackup_.c:1323
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1359
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1401
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Petra"
-#: ../../standalone/drakbackup_.c:1406
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Pelec'h"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Pa"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Dibarzhoù ar mollad :"
-#: ../../standalone/drakbackup_.c:1435 ../../standalone/drakbackup_.c:2791
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:1453
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../standalone/drakbackup_.c:1455
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1466
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:1530
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../standalone/drakbackup_.c:1531
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Kefluniañ reizhiadoù restroù"
-#: ../../standalone/drakbackup_.c:1532
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1535
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1617
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1618
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1622
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1624
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1625
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Trobarzhell al logodenn : %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1626
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Parzhadur"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1629
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1631
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1633
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1743
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1745
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1776
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1777
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1876
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:1894
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1912
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1962
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:1964
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:1992
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:2073
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Dibabit seurt ho logodenn, mar plij."
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Diuzit lugerezh ar voullerez"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Assevel adalek ar pladennig"
-#: ../../standalone/drakbackup_.c:2075
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2133
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:2135
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "All"
-#: ../../standalone/drakbackup_.c:2141
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Staliañ ar reizhiad"
-#: ../../standalone/drakbackup_.c:2142
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Adaozañ adalek ar restr"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Adaozañ adalek ar restr"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2149
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2150
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2207
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2215
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Neuziet"
-#: ../../standalone/drakbackup_.c:2256 ../../standalone/drakbackup_.c:2281
-#: ../../standalone/drakbackup_.c:2302 ../../standalone/drakbackup_.c:2323
-#: ../../standalone/drakbackup_.c:2341 ../../standalone/drakbackup_.c:2373
-#: ../../standalone/drakbackup_.c:2389 ../../standalone/drakbackup_.c:2409
-#: ../../standalone/drakbackup_.c:2428 ../../standalone/drakbackup_.c:2450
-#: ../../standalone/drakfont_.c:578
-msgid "Help"
-msgstr "Skoazell"
-
-#: ../../standalone/drakbackup_.c:2259 ../../standalone/drakbackup_.c:2286
-#: ../../standalone/drakbackup_.c:2305 ../../standalone/drakbackup_.c:2326
-#: ../../standalone/drakbackup_.c:2344 ../../standalone/drakbackup_.c:2392
-#: ../../standalone/drakbackup_.c:2412 ../../standalone/drakbackup_.c:2431
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Diaraog"
-#: ../../standalone/drakbackup_.c:2261 ../../standalone/drakbackup_.c:2328
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Enrollañ"
-#: ../../standalone/drakbackup_.c:2307
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:2346 ../../standalone/drakbackup_.c:3023
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Adaozañ adalek ar restr"
-#: ../../standalone/drakbackup_.c:2394 ../../standalone/drakbackup_.c:2414
-#: ../../standalone/drakbackup_.c:2435
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "A heul"
-#: ../../standalone/drakbackup_.c:2468
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2489
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2512
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Dibabit pakadoù da staliañ"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Ar pakadoù a-heul a zo war-nes bezañ distaliet"
-#: ../../standalone/drakbackup_.c:2540
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2563
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:2584
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../standalone/drakbackup_.c:2628
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2649
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2729
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:2731
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Restr gwareziñ siek"
-#: ../../standalone/drakbackup_.c:2735 ../../standalone/drakbackup_.c:2766
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2757
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Enrollañ er restr"
-#: ../../standalone/drakbackup_.c:2831
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/drakbackup_.c:2907
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2913
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
-#: ../../standalone/drakbackup_.c:2979
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/drakbackup_.c:3010
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Kefluniadur"
-#: ../../standalone/drakbackup_.c:3014
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Kefluniadur"
-#: ../../standalone/drakbackup_.c:3018
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Kefluniañ reizhiadoù restroù"
-#: ../../standalone/drakbackup_.c:3043
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3094
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9029,7 +9474,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3124
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9038,7 +9483,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3132
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9079,7 +9524,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3171
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9107,13 +9552,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3197 ../../standalone/drakbackup_.c:3272
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
"Copyright (C) 2001 MandrakeSoft gant DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3199 ../../standalone/drakbackup_.c:3274
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9130,7 +9580,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3213
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9170,7 +9620,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3251
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9181,7 +9631,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9194,7 +9644,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3288
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9238,6 +9688,336 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Staliadur %s a zo sac'het. Degouezhet eo ar fazi a heul :"
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Logodenn"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Dibarzhoù ar voullerez lpd a-bell"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Anv rannet"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+#, fuzzy
+msgid "Windows Migration tool"
+msgstr "Titouroù"
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Moullerez"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Kefluniadur ar rouedad"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "X11/Arloadoù"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Pakad"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Gortozit mar plij"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Dilezel ar staliadur"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Paour"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Gallout a rit dibab yezhoù all hag a vo hegerz goude staliañ"
+
+#: ../../standalone/drakconnect_.c:80
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Kefluniadur ar rouedad"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+#, fuzzy
+msgid "Profile: "
+msgstr "marc'hañ sac'het : "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+#, fuzzy
+msgid "Hostname: "
+msgstr "Anv an ostiz : "
+
+#: ../../standalone/drakconnect_.c:168
+#, fuzzy
+msgid "Internet access"
+msgstr "dedennus"
+
+#: ../../standalone/drakconnect_.c:181
+#, fuzzy
+msgid "Type:"
+msgstr "Seurt : "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Treuzell : "
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+#, fuzzy
+msgid "Interface:"
+msgstr "dedennus"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Kefluniañ servijoù"
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+#, fuzzy
+msgid "LAN configuration"
+msgstr "Kefluniadur"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Driver"
+msgstr "Servijer"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "Interface"
+msgstr "dedennus"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Meuziad Lañsañ"
+
+#: ../../standalone/drakconnect_.c:244
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Kefluniañ ur rouedad"
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Skoazeller..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:302
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Amprouiñ ar c'hefluniadur"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Connected"
+msgstr "Anv ar gevreadenn"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+#, fuzzy
+msgid "Not connected"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "Kefluniadur"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Bevaat"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Bevaat"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakconnect_.c:588
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakconnect_.c:597
+#, fuzzy
+msgid "Connection type: "
+msgstr "Anv ar gevreadenn"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Treuzell"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr ""
+
#: ../../standalone/drakfloppy_.c:64
msgid "usage: drakfloppy\n"
msgstr ""
@@ -9355,104 +10135,104 @@ msgid ""
" %s"
msgstr ""
-#: ../../standalone/drakfont_.c:230
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:232
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:254
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "%s ket kavet"
-#: ../../standalone/drakfont_.c:262 ../../standalone/drakfont_.c:304
-#: ../../standalone/drakfont_.c:353 ../../standalone/drakfont_.c:413
-#: ../../standalone/drakfont_.c:422 ../../standalone/drakfont_.c:448
-#: ../../standalone/drakfont_.c:460 ../../standalone/drakfont_.c:473
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Graet"
-#: ../../standalone/drakfont_.c:266
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:302
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:305
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:328
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:351
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Furmadiñ ar bladennig"
-#: ../../standalone/drakfont_.c:354
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "O prientiñ ar staliadur"
-#: ../../standalone/drakfont_.c:358
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:362
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:369 ../../standalone/drakfont_.c:385
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:373 ../../standalone/drakfont_.c:389
-#: ../../standalone/drakfont_.c:409
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:378 ../../standalone/drakfont_.c:393
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:400
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:404
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:417
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr ""
-#: ../../standalone/drakfont_.c:458 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:470
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "strishaat"
-#: ../../standalone/drakfont_.c:477 ../../standalone/drakfont_.c:761
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -9461,124 +10241,119 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:551
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Furmadiñ parzhadurioù"
-#: ../../standalone/drakfont_.c:566
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:568
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "O tistaliañ ar RPMoù"
-#: ../../standalone/drakfont_.c:571
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Kefluniadur"
-
-#: ../../standalone/drakfont_.c:573
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Poent marc'hañ"
-#: ../../standalone/drakfont_.c:740
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Dibabit ar parzhadur a vennit furmadiñ"
-#: ../../standalone/drakfont_.c:744
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:748
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Burev"
-#: ../../standalone/drakfont_.c:752
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr ""
-#: ../../standalone/drakfont_.c:756
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Moullerez"
-#: ../../standalone/drakfont_.c:793
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:829
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Staliañ ar reizhiad"
-#: ../../standalone/drakfont_.c:859
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:896
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Diuzit ar restr"
-#: ../../standalone/drakfont_.c:898
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Dibarzhoù ar voullerez lpd a-bell"
-#: ../../standalone/drakfont_.c:915 ../../standalone/drakfont_.c:935
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr ""
-#: ../../standalone/drakfont_.c:916
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr ""
-#: ../../standalone/drakfont_.c:917
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:918
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Staliañ"
-#: ../../standalone/drakfont_.c:936
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr ""
-#: ../../standalone/drakfont_.c:937
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Dilezel ar staliadur"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:196
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
#, fuzzy
msgid "Internet Connection Sharing"
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:122
+#: ../../standalone/drakgw_.c:123
msgid "Sorry, we support only 2.4 kernels."
msgstr ""
-#: ../../standalone/drakgw_.c:134
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:135
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -9586,35 +10361,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:140
#, fuzzy
msgid "disable"
msgstr "Taolenn"
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:139 ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
#, fuzzy
msgid "reconfigure"
msgstr "Kefluniañ X"
-#: ../../standalone/drakgw_.c:142
+#: ../../standalone/drakgw_.c:143
#, fuzzy
msgid "Disabling servers..."
msgstr "O tinoiñ trobarzhelloù..."
-#: ../../standalone/drakgw_.c:150
+#: ../../standalone/drakgw_.c:151
#, fuzzy
msgid "Internet connection sharing is now disabled."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:159
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:160
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -9622,21 +10397,21 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:165
#, fuzzy
msgid "enable"
msgstr "Taolenn"
-#: ../../standalone/drakgw_.c:171
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:176
+#: ../../standalone/drakgw_.c:177
#, fuzzy
msgid "Internet connection sharing is now enabled."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:197
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -9646,31 +10421,31 @@ msgid ""
"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:224
+#: ../../standalone/drakgw_.c:225
#, fuzzy, c-format
msgid "Interface %s"
msgstr "dedennus"
-#: ../../standalone/drakgw_.c:232
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr ""
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:239
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr ""
-#: ../../standalone/drakgw_.c:240
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -9680,18 +10455,18 @@ msgid ""
"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:249
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:267
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "Skramm ket kefluniet"
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -9701,17 +10476,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:273
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Kefluniadur goude staliañ"
-#: ../../standalone/drakgw_.c:274
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Kefluniañ ar modem"
-#: ../../standalone/drakgw_.c:276
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -9722,7 +10497,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:288
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -9734,79 +10509,79 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:293
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:294
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP ar servijer SMB"
-#: ../../standalone/drakgw_.c:295
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:302
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:313
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:321
+#: ../../standalone/drakgw_.c:322
#, fuzzy
msgid "Firewalling configuration detected!"
msgstr "o lenn ar c'hefluniadur"
-#: ../../standalone/drakgw_.c:322
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakgw_.c:329
+#: ../../standalone/drakgw_.c:330
#, fuzzy
msgid "Configuring..."
msgstr "Kefluniañ IDE"
-#: ../../standalone/drakgw_.c:330
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:366
+#: ../../standalone/drakgw_.c:367
#, fuzzy, c-format
msgid "Problems installing package %s"
msgstr "O staliañ ar pakad %s"
-#: ../../standalone/drakgw_.c:549
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/drakgw_.c:566
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr ""
-#: ../../standalone/drakgw_.c:567
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr ""
-#: ../../standalone/drakgw_.c:568
+#: ../../standalone/drakgw_.c:570
#, fuzzy
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:573
+#: ../../standalone/drakgw_.c:575
#, fuzzy
msgid "Internet connection sharing configuration"
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:580
+#: ../../standalone/drakgw_.c:582
#, fuzzy, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -9816,231 +10591,6 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/draknet_.c:80
-#, fuzzy, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-#, fuzzy
-msgid "Profile: "
-msgstr "marc'hañ sac'het : "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-#, fuzzy
-msgid "Hostname: "
-msgstr "Anv an ostiz : "
-
-#: ../../standalone/draknet_.c:168
-#, fuzzy
-msgid "Internet access"
-msgstr "dedennus"
-
-#: ../../standalone/draknet_.c:181
-#, fuzzy
-msgid "Type:"
-msgstr "Seurt : "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Treuzell : "
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-#, fuzzy
-msgid "Interface:"
-msgstr "dedennus"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr ""
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-#, fuzzy
-msgid "Configure Internet Access..."
-msgstr "Kefluniañ servijoù"
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-#, fuzzy
-msgid "LAN configuration"
-msgstr "Kefluniadur"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Driver"
-msgstr "Servijer"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "Interface"
-msgstr "dedennus"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Meuziad Lañsañ"
-
-#: ../../standalone/draknet_.c:244
-#, fuzzy
-msgid "Configure Local Area Network..."
-msgstr "Kefluniañ ur rouedad"
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Skoazeller..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr ""
-
-#: ../../standalone/draknet_.c:302
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Amprouiñ ar c'hefluniadur"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Connected"
-msgstr "Anv ar gevreadenn"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-#, fuzzy
-msgid "Not connected"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr ""
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-#, fuzzy
-msgid "LAN Configuration"
-msgstr "Kefluniadur"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr ""
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr ""
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr ""
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr ""
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Bevaat"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Bevaat"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-#, fuzzy
-msgid "Internet connection configuration"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/draknet_.c:588
-#, fuzzy
-msgid "Internet Connection Configuration"
-msgstr "Lugerezh ar voullerez"
-
-#: ../../standalone/draknet_.c:597
-#, fuzzy
-msgid "Connection type: "
-msgstr "Anv ar gevreadenn"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr ""
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Treuzell"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr ""
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr ""
-
-#: ../../standalone/draksec_.c:51
-msgid "Setting security level"
-msgstr "O termeniñ al live surentez"
-
-#: ../../standalone/draksec_.c:57
-#, fuzzy
-msgid "Setting security user"
-msgstr "O termeniñ al live surentez"
-
#: ../../standalone/drakxconf_.c:47
#, fuzzy
msgid "Control Center"
@@ -10128,50 +10678,50 @@ msgstr ""
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:113
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:115
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:116
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:120
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:128
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:131
+#: ../../standalone/drakxtv_.c:130
#, fuzzy
msgid "There was an error while scanning for TV channels"
msgstr "Ur fazi a zo bet en ur staliañ ar pakadoù :"
-#: ../../standalone/drakxtv_.c:132
+#: ../../standalone/drakxtv_.c:131
msgid "XawTV isn't installed!"
msgstr ""
-#: ../../standalone/drakxtv_.c:135
+#: ../../standalone/drakxtv_.c:134
msgid "Have a nice day!"
msgstr ""
-#: ../../standalone/drakxtv_.c:136
+#: ../../standalone/drakxtv_.c:135
msgid "Now, you can run xawtv (under X Window!) !\n"
msgstr ""
-#: ../../standalone/drakxtv_.c:148
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:149
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10220,7 +10770,7 @@ msgstr ""
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:516
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr ""
@@ -10271,10 +10821,6 @@ msgstr "Parzhadur"
msgid "/Options/Test"
msgstr "Parzhadur"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr ""
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr ""
@@ -10350,76 +10896,99 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "O prientiñ ar staliadur"
-#: ../../standalone/logdrake_.c:407
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Kefluniañ ar proksioù"
-#: ../../standalone/logdrake_.c:408
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:416
-msgid "proftpd"
-msgstr "proftpd"
+#: ../../standalone/logdrake_.c:417
+msgid "Apache World Wide Web Server"
+msgstr ""
+
+#: ../../standalone/logdrake_.c:418
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Anv ar domani"
#: ../../standalone/logdrake_.c:419
-msgid "sshd"
-msgstr "sshd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Servijer NIS"
#: ../../standalone/logdrake_.c:420
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Stlennvonioù"
#: ../../standalone/logdrake_.c:421
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Samba Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "Servijer NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "trobarzhell"
#: ../../standalone/logdrake_.c:424
#, fuzzy
+msgid "Xinetd Service"
+msgstr "Servijer moullañ"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "dedennus"
-#: ../../standalone/logdrake_.c:425
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:435
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "O furmadiñ"
-#: ../../standalone/logdrake_.c:436
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:449
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Kefluniañ ar proksioù"
-#: ../../standalone/logdrake_.c:450
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:493
+#: ../../standalone/logdrake_.c:503
#, fuzzy
msgid "Save as.."
msgstr "Meuziad Lañsañ"
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "serial_usb kavet ebet\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Kendarvan an trede nozelenn ?"
@@ -10476,6 +11045,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
#, fuzzy
msgid "Firewalling Configuration"
@@ -10982,120 +11563,207 @@ msgstr "Liesvedia"
msgid "Scientific Workstation"
msgstr "Titouroù"
-#~ msgid "Complete (%dMB)"
-#~ msgstr "Boas (%dMo)"
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Anavezoud kartenn c'hrafek : %s\n"
-#~ msgid "Minimum (%dMB)"
-#~ msgstr "Bihanañ (%d Mo)"
+#~ msgid "Choose options for server"
+#~ msgstr "Dibabit dibarzhoù ar servijer"
-#~ msgid "Recommended (%dMB)"
-#~ msgstr "Erbedet (%dMo)"
+#~ msgid "Monitor not configured"
+#~ msgstr "Skramm ket kefluniet"
-#~ msgid "CDROM / DVDROM"
-#~ msgstr "CDROM / DVDROM"
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Kartenn c'hrafek ket kefluniet c'hoazh"
-#, fuzzy
-#~ msgid "Utilities"
-#~ msgstr "Mavegoù/Skrid"
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Spisterioù ket dibabet c'hoazh"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Marc'hañ"
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "klaskit kemmañ arventennoù 'zo"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgid "An error occurred:"
+#~ msgstr "C'hoarvezet eo ur fazi :"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Kuitaat e %d eilenn"
-#~ msgid "None"
-#~ msgstr "Ebet"
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Ha reizh eo ar c'hefluniadur ?"
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Dibabit ar ment nevez"
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "C'hoarvezet eo ur fazi, klaskit kemmañ arventennoù 'zo"
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Dibarzhoù ar voullerez lpd a-bell"
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Servijer XFree86 : %s"
-#~ msgid "You may now provide options to module %s."
-#~ msgstr "Bremañ e c'hellit pourvezañ e zibarzhoù d'ar mollad %s"
+#~ msgid "Show all"
+#~ msgstr "Diskouez pep tra"
-#~ msgid "mount failed"
-#~ msgstr "marc'hañ sac'het"
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "O prientiñ kefluniadur X-Window"
-#~ msgid "Low"
-#~ msgstr "Izel"
+#~ msgid "What do you want to do?"
+#~ msgstr "Petra a vennit ober ? "
-#~ msgid "Medium"
-#~ msgstr "Etre"
+#~ msgid "Change Monitor"
+#~ msgstr "Kemmañ ar skramm"
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Nebeut a wellaenoù evit al live surentez-mañ, an hini pouezusañ eo bezañ\n"
-#~ "muioc'h a evezhiadennoù hag a wiriadennoù surentez."
+#~ msgid "Change Graphics card"
+#~ msgstr "Kemmañ ar gartenn c'hrafek"
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Liesvedia"
+#~ msgid "Change Server options"
+#~ msgstr "Kemmañ dibarzhoù ar servijer"
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Mailh"
+#~ msgid "Change Resolution"
+#~ msgstr "Kemmañ ar spister"
+
+#~ msgid "Show information"
+#~ msgstr "Diskouez titouroù"
+
+#~ msgid "Test again"
+#~ msgstr "Amprouiñ adarre"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "O termeniñ al live surentez"
+
+#~ msgid "Graphics card"
+#~ msgstr "Kartenn c'hrafek"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Diuzit ur gartenn c'hrafek"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Dibabit ur sturier X"
+
+#~ msgid "X driver"
+#~ msgstr "Sturier X"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA standard, 640x480 da 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Gour-VGA, 800x600 da 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Kenglotus 8514, 1024x768 da 87 Hz pebeilet (800x600 ebet)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Gour-VGA, 1024x768 da 87 Hz pebeilet, 800x600 da 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Gour-VGA astennet, 800x600 da 60 Hz, 640x480 da 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "G-VGA nann-pebeilet, 1024x768 da 60 Hz, 800x600 da 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "G-VGA talm uhel, 1024x768 da 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Lies-talm a c'hell ober 1280x1024 da 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Lies-talm a c'hell ober 1280x1024 da 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Lies-talm a c'hell ober 1280x1024 da 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Skramm a c'hell ober 1600x1200 da 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Skramm a c'hell ober 1600x1200 da 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Ment hollek ar strolladoù hoc'h eus diuzet a zo war-dro %d Mo.\n"
-#, fuzzy
#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
-#~ "Bremañ e c'hellit diuz ho takad-eur diouzh al lec'h ma chomit ennañ.\n"
+#~ "Ma vennit staliañ nebeutoc'h eget ar ment-se,\n"
+#~ "diuzit an dregantad a bakadoù a vennit staliañ.\n"
+#~ "\n"
+#~ "Un dregantad izel a stalio hepken ar pakadoù pouezusañ;\n"
+#~ "un dregantad a 100%% a stalio an holl bakadoù diuzet."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "N'eus egor war ho pladenn nemet evit %d%% eus ar pakadoù-se.\n"
#~ "\n"
-#~ "Linux a vera an eur e GMT pe \"Greenwich Mean Time\" hag e amdreiñ a ra\n"
-#~ "en eur lec'hel hervez an takad-eur hoc'h eus diuzet."
+#~ "Ma vennit staliañ nebeutoc'h eget se,\n"
+#~ "diuzit an dregantad a bakadoù a vennit staliañ.\n"
+#~ "Un dregantad izel a stalio hepken ar pakadoù pouezusañ;\n"
+#~ "un dregantad a %d%% a stalio kement a bakadoù ma 'z eus tu."
-#, fuzzy
-#~ msgid "Connect to Internet"
-#~ msgstr "Anv ar gevreadenn"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Tu vo deoc'h o dibab spisoc'h el lankad a zeu."
-#, fuzzy
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Anv ar gevreadenn"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Dregantad a bakadoù da staliañ"
-#, fuzzy
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Kefluniañ ur rouedad"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Dibabit al live surentez"
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "Da beseurt pladenn e mennit dilec'hiañ ?"
+#~ msgid "Complete (%dMB)"
+#~ msgstr "Boas (%dMo)"
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Dibabit ar pakadoù a vennit staliañ, mar plij."
+#~ msgid "Minimum (%dMB)"
+#~ msgstr "Bihanañ (%d Mo)"
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Titouroù"
+#~ msgid "Recommended (%dMB)"
+#~ msgstr "Erbedet (%dMo)"
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Titouroù"
+#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
+#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#, fuzzy
-#~ msgid "user"
-#~ msgstr "Anv arveriad"
+#~ msgid "None"
+#~ msgstr "Ebet"
+
+#~ msgid "You may now provide options to module %s."
+#~ msgstr "Bremañ e c'hellit pourvezañ e zibarzhoù d'ar mollad %s"
+
+#~ msgid "mount failed"
+#~ msgstr "marc'hañ sac'het"
+
+#~ msgid "Low"
+#~ msgstr "Izel"
+
+#~ msgid "Medium"
+#~ msgstr "Etre"
-#, fuzzy
#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
+#~ "Few improvements for this security level, the main one is that there are\n"
+#~ "more security warnings and checks."
#~ msgstr ""
-#~ "Ur servijer evit ar Gwiad Bedel eo Apache. Implijet e vez evit servijañ\n"
-#~ "restroù HTML ha CGI."
+#~ "Nebeut a wellaenoù evit al live surentez-mañ, an hini pouezusañ eo bezañ\n"
+#~ "muioc'h a evezhiadennoù hag a wiriadennoù surentez."
#~ msgid ""
#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
@@ -11104,12 +11772,6 @@ msgstr "Titouroù"
#~ "named (BIND) a zo ur Servijer Anvioù Domani (DNS) a zo implijet evit\n"
#~ "amdreiñ anvioù ostiz e chomlec'hioù IP."
-#, fuzzy
-#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
-#~ "\n"
-#~ msgstr "Dibabit seurt ho logodenn, mar plij."
-
#~ msgid "Active"
#~ msgstr "Bevaat"
@@ -11188,143 +11850,6 @@ msgstr "Titouroù"
#~ " Hogen mar plij, NA ZIBABIT KET SE NEMET MA OUZIT PEZH EMAOC'H OC'H "
#~ "OBER !"
-#, fuzzy
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "\t* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ "\t at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ "\t will then have a complete collection of software installed in order "
-#~ "to compile, debug and format source code,\n"
-#~ "\t or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "\t* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ "\t SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ "\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "An dibaboù liessek evit implij ho ardivink (en ur c'houlakaat neuze hoc'h "
-#~ "eus\n"
-#~ "dibabet pe \"Neuziet\" pe \"Mailh\" da renkad staliañ) a zo evel a-"
-#~ "heul :\n"
-#~ "\n"
-#~ " - Boas : dibabit se ma 'z oc'h mennet da implijout ho ardivink dreist-"
-#~ "holl\n"
-#~ " evit un implij pemdeziek (labour burev, aozerezh grafikoù hag all). "
-#~ "Na\n"
-#~ " c'hortozit ket e vije staliaet nep kempuner, maveg diorren h.a.\n"
-#~ "\n"
-#~ " - Diorren : evel m'hen diskouez an anv. Dibabit se ma 'z oc'h mennet "
-#~ "da\n"
-#~ " implijout ho ardivink dreist-holl evit diorren meziantoù. Neuze ho po "
-#~ "un\n"
-#~ " heuliad klok a meziantoù staliet a-benn kempunañ, dizraenañ ha "
-#~ "furmadiñ\n"
-#~ " kod tarzh, pe grouiñ pakadoù meziantel.\n"
-#~ "\n"
-#~ " - Servijer : dibabit se m'eo gouestlet an ardivink a stalhit Mandrake "
-#~ "Linux\n"
-#~ " warnañ da vezañ impliet evel servijer. ur servijer restroù (NFS pe "
-#~ "SMB),\n"
-#~ " ur servijer moullañ (moullañ diouzh komenad Unix lp (line printer) pe "
-#~ "zoare\n"
-#~ " Windows SMB), ur servijer dilesadur (NIS), ur servijer stlennvon hag "
-#~ "all.\n"
-#~ " Da heul, na c'hortozit staliadur tamm kinkladur ebet (KDE, "
-#~ "GNOME...).\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Gallout a rit bremañ diuz ar strollad pakadoù a vennit\n"
-#~ "staliañ pe vremanaat.\n"
-#~ "\n"
-#~ "DrakX a glasko neuze hag-eñ hoc'h eus egor a-walc'h evit staliañ an holl "
-#~ "anezho.\n"
-#~ "Ma n'hoc'h eus ket, e kemenno deoc'h. Ma vennit kenderc'hel evelato, e "
-#~ "seveno staliadur\n"
-#~ "an holl strolladoù diuzet hogen e laosko pakadoù 'zo dezho nebeutoc'h a\n"
-#~ "dalvoudegezh. E traoñ ar roll e c'hellit diuz an dibarzh\n"
-#~ "\"Diuz pakadoù unan hag unan\" ; en degouezh-se e vo ret deoc'h furchal\n"
-#~ "a-dreuz tremen 1000 pakad..."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Gallout a rit bremañ skrivañ dibarzhoù sifrennañ. Ma n'oc'h ket sur "
-#~ "petra\n"
-#~ "skrivañ, an titouroù reizh ho po digant ho PMG."
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Skrivit :\n"
-#~ "\n"
-#~ " - Chomlec'h IP : m'eo dianav deoc'h, goulennit digant merour ho "
-#~ "rouedad.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Rouedmaskl : \"255.255.255.0\" a zo peurvuiañ un dibab mat. M'hoc'h "
-#~ "eus\n"
-#~ "douetañs, goulennit digant merour ho rouedad.\n"
-#~ "\n"
-#~ "\n"
-#~ " - IP emgefreek : Ma ra ho rouedad gant ar c'homenad bootp pe dhcp, "
-#~ "diuzit \n"
-#~ "an dibarzh-se. Ma vez diuzet, n'eus ezhomm talvoud ebet er \"Chomlec'h IP"
-#~ "\".\n"
-#~ "M'hoc'h eus douetañs, goulennit digant merour ho rouedad.\n"
-
-#, fuzzy
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Ma implij ho rouedad NIS, diuzit \"Implijout NIS\". Ma ne ouzit ket, "
-#~ "goulennit\n"
-#~ "digant merour ho rouedad."
-
#~ msgid ""
#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
#~ "correct information can be obtained from your ISP."
@@ -11341,26 +11866,6 @@ msgstr "Titouroù"
#~ "hag\n"
#~ "e rankit implijout proksioù, goulennit digant merour ho rouedad pe ho PMG."
-#, fuzzy
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Staliañ pakadoù rinegouriezh a c'hellit m'eo bet kefluniet reizh ho\n"
-#~ "kevreadenn ouzh ar Genrouedad. Dibabit da gentañ ur melezour a vennit "
-#~ "ezkargañ\n"
-#~ "pakadoù diwarnañ ha da c'houde diuzit ar pakadoù da staliañ.\n"
-#~ "\n"
-#~ "Taolit evezh e rankit diuz ar melezour hag ar rinegouriezh hervez al\n"
-#~ "lezennoù o ren du-se."
-
#~ msgid ""
#~ "You may now create one or more \"regular\" user account(s), as\n"
#~ "opposed to the \"privileged\" user account, root. You can create\n"
@@ -11406,92 +11911,6 @@ msgstr "Titouroù"
#~ "gont arveriad ho po krouet amañ, hag ereañ evel root evit kefridioù a\n"
#~ "vererezh ha trezerc'hel hepken."
-#, fuzzy
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "Setu dibaboù pennañ LILO ha grub :\n"
-#~ " - Trobarzhell loc'hañ : a dermen anv an drobarzhell (da sk. parzhadur\n"
-#~ "ur bladenn galet) a zo enni ar rann loc'hañ. Nemet ma ouifec'h a-zevri\n"
-#~ "ez eo disheñvel, dibabit \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Gedvezh a-raok loc'hañ ar skeudenn dre ziouer : a spisa an niver a\n"
-#~ "zekvet eilennoù a rankfe gortoz ar c'harger loc'hañ kent loc'hañ ar "
-#~ "skeudenn\n"
-#~ "gentañ. Talvoudus eo war reizhiadoù a loc'h diouzhtu adalek ar bladenn "
-#~ "galet\n"
-#~ "goude bezañ enaouet ar stokellaoueg. Ne gortoz ket ar c'harger loc'hañ "
-#~ "m'eo\n"
-#~ "disoñjet \"gedvezh\" pe dermenet da mann.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mod video : a spisa ar mod skrid VGA a rankfe bezañ diuzet pa "
-#~ "loc'her.\n"
-#~ "An talvoudoù a heul a zo hegerz :\n"
-#~ " * boas : a ziuz ar mod skrid 80x25 boas.\n"
-#~ " * <niver> : a implij ar mod skrid a zegouezh."
-
-#, fuzzy
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Bremañ eo poent kefluniañ ar reizhiad X Window, a zo kraonienn\n"
-#~ "EGA (Etrefas Grafikel Arveriad) Linux. Evit ar c'hefridi-se, ret eo\n"
-#~ "deoc'h kefluniañ ho kartenn grafek hag ho skramm. Emgefreek eo ar bras\n"
-#~ "eus al lankadoù-se, evelato, neuze gwiriañ pezh a zo bet graet hag\n"
-#~ "asantiñ d'ar c'hefluniadur a zlefe bezañ ho labour :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Pa 'z eo graet ar c'hefluniañ, lañset e vo X (nemet ma c'houlennit\n"
-#~ "digant DrakX chom hep hen ober) e seurt ma c'hellit gwiriañ ha\n"
-#~ "sellet ha plijet oc'h gant an dibarzhoù. Ma n'oc'h ket, e c'hellit\n"
-#~ "mont war gil hag o c'hemmañ, ken lies gwech ha ma karot."
-
#~ msgid ""
#~ "If something is wrong in X configuration, use these options to correctly\n"
#~ "configure the X Window System."
@@ -11630,9 +12049,6 @@ msgstr "Titouroù"
#~ msgid "Configure LILO/GRUB"
#~ msgstr "Kefluniañ LILO/GRUB"
-#~ msgid "Create a boot floppy"
-#~ msgstr "Krouiñ ur bladennig loc'hañ"
-
#~ msgid "Choice"
#~ msgstr "Dibab"
@@ -11693,9 +12109,6 @@ msgstr "Titouroù"
#~ msgid "Use MD5 passwords"
#~ msgstr "Implijout tremegerioù MD5"
-#~ msgid "Package"
-#~ msgstr "Pakad"
-
#~ msgid "Tree"
#~ msgstr "Gwezenn"
@@ -12235,9 +12648,6 @@ msgstr "Titouroù"
#~ msgid "X11/Amusements"
#~ msgstr "X11/Dudi"
-#~ msgid "X11/Applications"
-#~ msgstr "X11/Arloadoù"
-
#~ msgid "X11/Applications/Internet"
#~ msgstr "X11/Arloadoù/Kenrouedad"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index c406f3c6f..4ee25be49 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -1,37 +1,67 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR Free Software Foundation, Inc.
-# Vedran Ljubovic <vljubovic@smartnet.ba>, 2001
+# Copyright (C) 2001. Free Software Foundation, Inc.
+# Amila Akagić <bono@lugbih.org>, 06. 2001.
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-02-28 20:49GMT\n"
-"Last-Translator: Vedran Ljubovic <vljubovic@smartnet.ba>\n"
-"Language-Team: Bosnian <prijevodi@lugbih.org>\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-08-21 17:14GMT\n"
+"Last-Translator: Amila Akagić <bono@lugbih.org>\n"
+"Language-Team: Bosnian <lokal-subscribe@lugbih.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 0.9.5\n"
+"X-Generator: KBabel 0.9.1\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfiguriši sve glave odvojeno"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Koristi Xinerama ekstenziju"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfiguriši samo karticu \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB ili više"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Izaberite X server"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Multi-head konfiguracija"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -39,41 +69,44 @@ msgstr ""
"Vaš sistem podržava konfiguraciju više glava.\n"
"Šta želite učiniti?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafička karta"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Izaberite veličinu memorije vaše grafičke karte"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Izaberite grafičku kartu"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "XFree konfiguracija"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Izaberite X server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Koju konfiguraciju XFree želite imati?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Konfiguriši sve glave odvojeno"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Izaberite X drajver"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Koristi Xinerama ekstenziju"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "X drajver"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfiguriši samo karticu \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Koju konfiguraciju XFree želite imati?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s sa 3D hardverskim ubrzanjem"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -82,32 +115,17 @@ msgstr ""
"Vaša kartica može imati podršku za 3D hardversko ubrzanje ali samo sa\n"
"XFree %s. Vašu karticu podržava XFree %s koji može imati bolju podršku za 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vaša kartica može imati podršku za 3D hardversko ubrzanje sa XFree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s sa 3D hardverskim ubrzanjem"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Vaša kartica može imati podršku za 3D hardversko ubrzanje sa XFree %s,\n"
-"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EKSPERIMENTALNIM 3D hardverskim ubrzanjem"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -118,31 +136,58 @@ msgstr ""
"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR.\n"
"Vašu karticu podržava XFree %s koji može imati bolju podršku za 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Vaša kartica može imati podršku za 3D hardversko ubrzanje sa XFree %s,\n"
+"PAŽNJA OVO JE EKSPERIMENTALNA PODRŠKA I MOŽE ZALEDITI VAŠ RAČUNAR."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installation display driver)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "XFree konfiguracija"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Izaberite veličinu memorije vaše grafičke karte"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Izaberite opcije za server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Zadržati izmjene?\n"
+"Trenutna konfiguracija je:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Izaberite monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Ručno izaberi"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Opšti"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Poništi"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -163,510 +208,325 @@ msgstr ""
"raspon izvan mogućnosti vašeg monitora: time možete oštetiti monitor.\n"
" Ako niste sigurni, izaberite najmanju opciju."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Brzina horizontalnog osvježavanja"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Brzina vertiaklnog osvježavanja"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor nije konfigurisan"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafička karta još uvijek nije konfigurisana"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Rezolucije još nisu odabrane"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Želite li testirati konfiguraciju?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Upozorenje: testiranje ove grafičke karte može zalediti računar"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Testiranje konfiguracije"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 boja (8 bita)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"probajte izmjeniti neke parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 hiljada boja (15 bita)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Došlo je do greške"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 hiljada boja (16 bita)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Napuštam za %d sekundi"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miliona boja (24 bita)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Da li je ovo ispravna vrijednost?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 milijarde boja (32 bita)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Došlo je do greške, probajte izmjeniti neke parametre"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rezolucije"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rezolucija"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Izaberite rezoluciju i dubinu boja"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafička karta: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Još"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Odustani"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Ekspertni mod"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Prikaži sve"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Želite li testirati konfiguraciju?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rezolucije"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Testiranje konfiguracije"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Raspored tastature: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tip miša: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Uređaj miša: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor HorizSync: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor VertRefresh: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafička karta: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikacija grafičke karte: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Grafička memorija: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Dubina boja: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rezolucija: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 drajver: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Pripremam X-Window konfiguraciju"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Šta želite učiniti?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Izmjena Monitora"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Izmjena Grafičke kartice"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Izmjena Server opcija"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Izmjena Rezolucije"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Prikaži informacije"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Testiraj ponovo"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Izlaz"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Zadržati izmjene?\n"
-"Trenutna konfiguracija je:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X u startanju"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Mogu podesiti vaš računar da automatski pokrene X nakon boota.\n"
"Želite li da se X pokrene kada bootate?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Molimo izvršite logout i zatim koristitite Ctrl-Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 boja (8 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 hiljada boja (15 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 hiljada boja (16 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miliona boja (24 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 milijarde boja (32 bita)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB ili više"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Standardna VGA, 640x480 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Kompatibilna, 1024x768 na 87 Hz sa preplitanjem (bez 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 na 87 Hz sa preplitanjem, 800x600 na 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Non-Interlaced SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "High Frequency SVGA, 1024x768 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-frequency koja može postići 1280x1024 na 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-frequency koja može postići 1280x1024 na 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-frequency koja može postići 1280x1024 na 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor koji može postići 1600x1200 na 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor koji može postići 1600x1200 na 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Prvi sektor boot particije"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Prvi sektor diska (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "SILO instalacija"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Gdje želite smjestiti bootloader?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "LILO/grub instalacija"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO sa tekstualnim menijem"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO sa grafičkim menijem"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Bootanje iz DOS/Windowsa (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Glavne opcije bootloadera"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Bootloader koji ćete koristiti"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Bootloader instalacija"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Boot uređaj"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne radi na starim BIOSima)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompaktno"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompaktno"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Video mod"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Čekanje prije bootanja default preslike"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Šifra"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Šifra (ponovo)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Ograniči opcije komandne linije"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "ograniči"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Čisti /tmp prilikom svakog boota"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precizna veličina RAMa ako je potrebno (pronađeno %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Omogući više profila"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Navedite veličinu rama u MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Opcija ``Ograniči opcije komandne linije'' je beskorisna bez šifre"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Molimo pokušajte ponovo"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Šifre se ne poklapaju"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Init Poruka"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Otvori čekanje firmware-a"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Kernel Boot Timeout"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Omogući boot sa CDa?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Omogući boot sa OFa?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Default OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -675,83 +535,83 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Navedene su razne stavke.\n"
"Možete dodati nove ili promjeniti postojeće."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Gotovo"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Izmjeni"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu stavke želite dodati?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Ostali OSi (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Ostali OSi (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Ostali OSi (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Preslika"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Čitaj-piši"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabela"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Nesigurno"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Labela"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Default"
@@ -783,53 +643,77 @@ msgstr "Morate navesti root particiju"
msgid "This label is already used"
msgstr "Ova labela je već u upotrebi"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Pronađeno %s %s interfejsa"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Imate li neki drugi?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Imate li ijedan %s interfejs?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Pogledaj hardware info"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaliram drajver za %s karticu %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Sada možete navesti opcije za modul %s.\n"
+"Obratite pažnju da adrese trebate unositi sa prefiksom 0x kao npr. '0x123'"
+
+#: ../../any.pm_.c:703
+#, 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 ""
+"Sada možete navesti opcije za modul %s. Opcije su u formatu ``ime=vrijednost "
+"ime2=vrijednost2 ...''.\n"
+"Na primjer, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opcije modula"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Koji %s drajver ću pokušati?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -846,39 +730,15 @@ msgstr ""
"informacije koje mu trebaju? Povremeno, ispitivanje može zaglaviti računar,\n"
"ali ne bi trebalo izazvati nikakvu štetu."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Ispitivanje"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Navedi opcije"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Sada možete navesti opcije za modul %s.\n"
-"Obratite pažnju da adrese trebate unositi sa prefiksom 0x kao npr. '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Sada možete navesti opcije za modul %s. Opcije su u formatu ``ime=vrijednost "
-"ime2=vrijednost2 ...''.\n"
-"Na primjer, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opcije modula"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -887,49 +747,54 @@ msgstr ""
"Učitavanje modula %s nije uspjelo.\n"
"Želite li probati opet sa drugim parametrima?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "pristup X programima"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "pristup administrativnim datotekama"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(već dodan %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Ova šifra je previše jednostavna"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Molimo navedite korisničko ime"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Korisničko ime smije sadržati samo mala slova, brojeve, `-' i `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Ovo korisničko ime je već dodano"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Ovo korisničko ime je već dodano"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -938,32 +803,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Pravo ime"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Korisničko ime"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -971,87 +836,67 @@ msgstr ""
"Mogu podesiti vaš računar da automatski prijavi jednog korisnika.\n"
"Želite li koristiti ovu mogućnost?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Izaberite default korisnika:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Izaberite window manager koji će se pokretati:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Molimo izaberite jezik koji ćete koristiti."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Možete izabrati i druge jezike koji će biti dostupni nakon instalacije"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Svi"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Ručno izaberi"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Bez dijeljenja"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Paket %s treba biti instaliran. Da li ga želite instalirati?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Možete eksportovati koristeći NFS ili Sambu. Koji želite"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nedostaje obavezan paket %s"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Odustani"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1059,31 +904,31 @@ msgstr ""
"Dijeljenje po-korisniku koristi grupu \"fileshare\". \n"
"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Dobrodošli u Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Loš"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Viši"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoičan"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1093,7 +938,7 @@ msgstr ""
"ali vrlo osjetljivim: ne smije biti korišten za računar koji je spojen na\n"
"druge ili na Internet. Nema pristupa šifrom."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1101,7 +946,7 @@ msgstr ""
"Šifra je sada aktivirana, ali korištenje za mrežni računar još nije "
"preporučeno."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1109,7 +954,7 @@ msgstr ""
"Ovo je standardna sigurnost koja je preporučena za računar koji će biti "
"korišten za spajanje na Internet kao klijent."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1117,13 +962,14 @@ msgstr ""
"Već postoje određena ograničenja, a više automatskih provjera se pokreće "
"svaku noć."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Sa ovim sigurnosnim nivoom, postaje moguće koristiti ovaj sistem kao "
"server.\n"
@@ -1132,34 +978,34 @@ msgstr ""
"konekcije sa mnogo klijenata. Napomena: ako je vaš računar samo klijent na "
"Internetu, možda je bolje da izaberete niži nivo."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Baziran na prethodnom nivou, ali sada je sistem potpuno zatvoren.\n"
"Sigurnosne osobine na maksimumu."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Izaberite nivo sigurnosti"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Nivo sigurnosti"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za servere"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Biblioteka koja brani od napada \"buffer overflow\" i \"format string\"."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1176,52 +1022,52 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Dobro došli u GRUB izbornik operativnog sistema!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Koristite tipke %c i %c za izbor jedne od stavki."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Pritisnite enter za bootanje izabranog OSa, 'e' za editovanje"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "komandi prije bootanja, ili 'c' za komandnu liniju."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Osvjetljene stavke će biti bootane automatski za %d sekundi."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "nema dovoljno prostora u /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ne možete instalirati bootloader na %s particiju\n"
@@ -1234,17 +1080,21 @@ msgstr "pomoć još nije implementirana.\n"
msgid "Boot Style Configuration"
msgstr "Konfiguracija stila boota"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Datoteka"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Datoteka/_Izlaz"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
-msgstr "<control>I"
+msgstr "<control>Q"
#: ../../bootlook.pm_.c:91
msgid "NewStyle Categorizing Monitor"
@@ -1277,14 +1127,14 @@ msgstr "Yaboot mod"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Trenutno koristite %s kao boot manager.\n"
"Kliknite na Konfiguriši kako bi se pokrenuo čarobnjak za podešavanje."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfiguriši"
@@ -1294,7 +1144,7 @@ msgid "System mode"
msgstr "Sistem mod"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sistem na startu"
#: ../../bootlook.pm_.c:148
@@ -1305,16 +1155,18 @@ msgstr "Ne, ne želim da se autologiram"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, želim da se autologiram sa ovim (korisnik, desktop)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
-msgstr "OK"
+msgstr "U redu"
#: ../../bootlook.pm_.c:229
#, c-format
@@ -1360,7 +1212,7 @@ msgstr "Ne mogu napraviti screenshot prije particioniranja"
msgid "Screenshots will be available after install in %s"
msgstr "Screenshotovi će biti dostupni nakon što instalirate u %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francuska"
@@ -1368,7 +1220,7 @@ msgstr "Francuska"
msgid "Costa Rica"
msgstr "Kostarika"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgija"
@@ -1392,11 +1244,12 @@ msgstr "Norveška"
msgid "Sweden"
msgstr "Švedska"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Nizozemska"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Italija"
@@ -1404,7 +1257,7 @@ msgstr "Italija"
msgid "Austria"
msgstr "Austrija"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "SAD"
@@ -1412,8 +1265,8 @@ msgstr "SAD"
msgid "Please make a backup of your data first"
msgstr "Molimo najprije napravite backup vaših podataka"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Pročitajte pažljivo!"
@@ -1427,11 +1280,12 @@ msgstr ""
"(2048 sektora je dovoljno)\n"
"na početku diska"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Greška"
@@ -1439,11 +1293,11 @@ msgstr "Greška"
msgid "Wizard"
msgstr "Čarobnjak"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Izaberi akciju"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1455,77 +1309,77 @@ msgstr ""
"Predlažem da najprije promjenite veličinu te particije\n"
"(kliknite na nju, zatim na \"Promjeni veličinu\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Molimo kliknite na particiju"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalji"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "Journalised FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Prazno"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Ostalo"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipovi file sistema:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Kreiraj"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tip"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Koristite ``%s'' umjesto toga"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Obriši"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Najprije koristite ``Demontiraj''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1533,67 +1387,72 @@ msgstr ""
"Nakon promjene tipa particije %s, svi podaci na ovoj particiji će biti "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Izaberi particiju"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Izaberi drugu particiju"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Izlaz"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Prebaci u ekspertni mod"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Prebaci u normalni mod"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Poništi"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Svejedno nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Izlaz bez spašavanja"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Izlazite bez pisanja tabele particija?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Želite li spasiti izmjene /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Auto alokacija"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Obriši sve"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Još"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Informacije o hard disku"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Sve primarne particije su u upotrebi"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Ne mogu dodati više particija"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1601,31 +1460,31 @@ msgstr ""
"Da biste imali još particija, molimo pobrišite jednu kako bi se mogla "
"kreirati extended particija"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Snimi tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Vrati tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Spasi tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Ponovo učitaj tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automatsko montiranje izmjenjivog medija"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Izaberite datoteku"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1633,11 +1492,11 @@ msgstr ""
"Backup tabela particija nema istu veličinu\n"
"Ipak nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Upozorenje"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1645,122 +1504,129 @@ msgstr ""
"Ubacite disketu u jedinicu\n"
"Svi podaci na toj disketi će biti izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Pokušavam da spasim tabelu particija"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Detaljne informacije"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Tačka montiranja"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcije"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Promjeni veličinu"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Premještanje"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formatiraj"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montiraj"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Dodaj na RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Dodaj na LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Demontiraj"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Ukloni sa RAIDa"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Ukloni sa LVMa"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modificiraj RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Koristi za loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Napravi novu particiju"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Početni sektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tip datotečnog sistema: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Tačka montiranja: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preference: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Ukloniti loopback datoteku?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Izmjena tipa particije"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Koji datotečni sistem želite?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Prebacujem sa ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Gdje želite montirati loopback datoteku %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Gdje želite montirati uređaj %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1769,126 +1635,131 @@ msgstr ""
"loopback.\n"
"Najprije uklonite loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Izračunavam granice FAT filesistema"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Mijenjam veličinu"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Ovoj particiji ne možete mijenjati veličinu"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Svi podaci na toj particiji bi trebali biti backupovani"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Nakon promjene veličine particije %s, svi podaci na njoj će biti izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Izaberite novu veličinu"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nova veličina u MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Na koji disk je želite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Na koji sektor je želite premjestiti?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Premještam"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Premještam particiju..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Izaberite postojeći RAID na koji ćete dodati"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "novi"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Izaberite postojeći LVM na koji ćete dodati"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Naziv LVMa?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Ova particija se ne može koristiti za loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Naziv loopback datoteke: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Dajte naziv datoteke"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Datoteku već koristi drugi loopback, izaberite drugo ime"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Datoteka već postoji. Želite li je koristiti?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Opcije montiranja"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Razni"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
-msgstr "uređaj"
+msgstr "Uređaj"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivo"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "veličina chunka"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Budite oprezni: ova operacija je opasna"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Koju vrstu particioniranja?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Paket %s treba biti instaliran. Da li ga želite instalirati?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1900,7 +1771,7 @@ msgstr ""
"Ili ćete koristiti LILO i stvar neće raditi, ili nećete koristiti LILO pa "
"vam ne treba ni /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1912,7 +1783,7 @@ msgstr ""
"1024og cilindra hard diska, tako da nemate /boot particiju.\n"
"Ako planirate koristiti LILO boot manager, pazite da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1922,132 +1793,132 @@ msgstr ""
"Nijedan bootloader nije u mogućnosti da rukuje sa ovim bez /boot particije.\n"
"Pazite da dodate /boot particiju"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabela particija za uređaj %s će biti zapisana na disk!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Biće potrebno da rebootate prije nego što izmjene mogu stupiti na snagu"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Nakon formatiranja particije %s, svi podaci na toj particiji će biti "
"izgubljeni"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formatiram"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formatiram loopback datoteku %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formatiram particiju %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Sakrij datoteke"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Prebaci datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Direktorij %s već sadrži neke podatke\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Premještam datoteke na novu particiju"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopiram %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Uklanjam %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "particija %s je od sada poznata kao %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Uređaj: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS slovo uređaja: %s (pretpostavka)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tip: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Ime: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Početak: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Veličina: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektora"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindar %d do %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatirana\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nije formatirana\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Montirana\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2056,7 +1927,7 @@ msgstr ""
"Loopback datoteka(e):\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2064,27 +1935,27 @@ msgstr ""
"Particija koja se boota po defaultu\n"
" (za MS-DOS boot, ne za lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivo %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Veličina chunka %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Naziv loopback datoteke: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2096,7 +1967,7 @@ msgstr ""
"particija Driver particija, vjerovatno\n"
"biste je trebali ostaviti na miru.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2108,63 +1979,63 @@ msgstr ""
"particija je za\n"
"dvojni boot vašeg sistema.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Veličina: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrija: %s cilindara, %s glava, %s sektora\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Info: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM-diskovi %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tip tabele particija: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "na busu %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Ključ za kodiranje datotečnog sistema"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Izaberite vaš ključ za kodiranje datotečnog sistema"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ova šifra je previše jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Šifre se ne poklapaju"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Šifra"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Šifra (još jednom)"
@@ -2173,35 +2044,65 @@ msgid "Change type"
msgstr "Promjeni tip"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Molimo kliknite na medij"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autentikacija"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Korisničko ime"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Korisničko ime"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "NIS domen"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Traži servere"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ne znam kako formatirati %s tipa %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktoriju %s nije uspjelo"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "fsck nije uspio, izlazni kod %d ili signal %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "greška u demontiranju %s: %s"
@@ -2218,68 +2119,322 @@ msgstr "sa /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Ne možete koristiti JFS za particije manje od 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Ne možete koristiti ReiserFS za particije manje od 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Tačke montiranja moraju počinjati sa /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Već postoji particija sa tačkom montiranja %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Ne možete koristiti LVM logički volumen za tačku montiranja %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Ovaj direktorij treba ostati unutar korijenskog file sistema"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Potreban vam je pravi file sistem (ext2, reiserfs) za ovu tačku montiranja\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Ne možete koristiti kriptovani datotečni sistem za tačku montiranja %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nema dovoljno prostora za auto-alokaciju"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nemam šta da radim"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Greška u otvaranju %s za pisanje: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"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 ""
"Došlo je do greške - nije pronađen nijedan ispravan uređaj na kojem se mogu "
"kreirati novi file sistemi. Molimo provjerite vaš hardware i pronađite uzrok "
"greške"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Nemate nijednu particiju!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Koristi auto prepoznavanje"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Opšti"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Memorija kartice (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "postavka opterećenja"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Promjeni tip"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Izlaz"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Pomoć"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Pomoć"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Pomoć/_O programu..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Miš"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Memorija kartice (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Odustani"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Miš"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Opis"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autentikacija"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Izaberite datoteku"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Gateway uređaj"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 dugmeta"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Prepoznavanje hard diska"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Pogledaj hardware info"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Prikaži informacije"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Podešavanje miša"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detektovan na portu %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Molimo sačekajte"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d sekundi"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Uklanjam štampač \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Ispitivanje"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2293,7 +2448,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2320,7 +2475,7 @@ msgstr ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2424,9 +2579,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2475,9 +2629,8 @@ msgstr ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if the machine is to be used for programming, choose "
"the\n"
@@ -2775,7 +2928,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2787,9 +2940,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2812,9 +2964,8 @@ msgstr ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2859,21 +3010,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2889,9 +3039,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Na ovom mjestu trebate izabrati gdje želite instalirati Linux Mandrake\n"
"operativni sistem na vašem hard disku. Ako je disk prazan ili ako postojeći\n"
@@ -2987,9 +3137,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3183,38 +3332,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3259,10 +3402,9 @@ msgstr ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step.\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step.\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk.\n"
@@ -3393,11 +3535,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3456,7 +3598,7 @@ msgstr ""
"instalaciju. Odgovor na neka pitanja može biti vrlo težak ako nemate dobro\n"
"poznavanje GNU/Linuxa, zato nemojte birati ovo sem ako znate šta radite."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3482,7 +3624,7 @@ msgstr ""
"Click on the \"More\" button to be presented with the complete list of\n"
"supported keyboards."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3508,7 +3650,7 @@ msgstr ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales click the \"OK\" button to continue."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3535,7 +3677,7 @@ msgstr ""
"are good. If the mouse is not working correctly press the space bar or\n"
"[Return] to \"Cancel\" and choose again."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3543,23 +3685,23 @@ msgstr ""
"Molimo izaberite ispravan port. Na primjer, \"COM1\" port pod MS\n"
"Windowsom se zove \"ttyS0\" pod GNU/Linuxom."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3615,7 +3757,7 @@ msgstr ""
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3637,7 +3779,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3645,7 +3787,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3713,7 +3855,7 @@ msgstr ""
"it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3735,7 +3877,7 @@ msgstr ""
"anyone. In which case, you can delete the corresponding entries. But then,\n"
"you will need a boot disk in order to boot those other operating systems!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3748,29 +3890,28 @@ msgstr ""
"\n"
"Izaberite \"Prvi sektor na disku (MBR)\" sem ako znate tačno šta radite."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3806,7 +3947,7 @@ msgstr ""
"Otherwise, CUPS is preferable as it is simpler and better at working over\n"
"networks."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3831,7 +3972,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX sada pronalazi sve IDE uređaje prisutne na vašem računaru. Također\n"
@@ -3863,7 +4004,7 @@ msgstr ""
"sa web stranice proizvođača (ako imate internet pristup) ili iz Microsoft\n"
"Windowsa (ako ga imate na vašem sistemu)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3873,9 +4014,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3887,7 +4027,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3958,7 +4098,7 @@ msgstr ""
"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
"selections."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3985,9 +4125,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -4026,10 +4165,10 @@ msgstr ""
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4037,12 +4176,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4086,7 +4224,7 @@ msgstr ""
"displayed here. You can click on the button to change the parameters\n"
"associated to it."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -4098,7 +4236,7 @@ msgstr ""
"biti\n"
"izgubljeni i neće se moći vratiti!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4116,7 +4254,7 @@ msgstr ""
"Click on \"Cancel\" to cancel this operation without losing any data and\n"
"partitions present on this hard drive."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4124,12 +4262,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Morate također formatirati i %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4154,20 +4292,20 @@ msgstr ""
"\n"
"Da li zaista želite instalirati ove servere?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ubacite FAT formatiranu disketu u jedinicu %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT (DOS/Windows) formatirana"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4175,7 +4313,7 @@ msgstr ""
"Da koristite ovaj izbor spašenih paketa, bootajte instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Greška u čitanju datoteke %s"
@@ -4206,7 +4344,7 @@ msgstr "Morate imati swap particiju"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4214,59 +4352,59 @@ msgstr ""
"\n"
"Svejedno nastavi?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Morate imati FAT particiju montiranu na /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Koristi slobodan prostor"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nema dovoljno slobodnog prostora za pravljenje novih particija"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Koristi postojeću particiju"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Nema nijedne postojeće particije za upotrebu"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Koristi Windows particiju za loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Koju particiju želite koristiti za Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Izaberite veličine"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Veličina root particije u MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Veličina swap particije u MB:"
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Koristi slobodan prostor na Windows particiji"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Kojoj particiji želite promjeniti veličinu?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Izračunavam granice Windows datotečnog sistema"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4275,13 +4413,16 @@ msgstr ""
"FAT resizer ne može izmjeniti vašu particiju, \n"
"došlo je do sljedeće greške: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"Vaša Windows particija je previše fragmentirana, molimo prvo pokrenite "
"``defrag'' "
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4302,55 +4443,55 @@ msgstr ""
"ponovo pokrenite instalaciju. Također biste trebali spasiti sve podatke.\n"
"Kada ste sigurni, kliknite na Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Koju veličinu želite da sačuvate za windows na"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "particiji %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "FAT promjena veličine nije uspjela: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Ne postoji nijedna FAT particija za promjenu veličine ili upotrebu za "
"loopback (ili nije ostalo dovoljno prostora)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Pobriši čitav disk"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Ukloni Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Imate više od jednog hard diska, na koji želite instalirati linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"SVE postojeće particije i podaci na njima će biti izgubljeni na disku %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Ručno particioniranje diska"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Koristi fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4359,11 +4500,11 @@ msgstr ""
"Sada možete particionirati %s.\n"
"Kada završite, ne zaboravite spasiti sa `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Nemate dovoljno slobodnog prostora na vašoj Windows particiji"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Ne mogu naći dovoljno prostora za instalaciju"
@@ -4371,16 +4512,16 @@ msgstr "Ne mogu naći dovoljno prostora za instalaciju"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX Particioni čarobnjak je našao sljedeća rješenja:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Particioniranje nije uspjelo: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Pokrećem mrežu"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Zaustavljam mrežu"
@@ -4392,12 +4533,12 @@ msgstr ""
"Došlo je do greške, ali ne znam kako da je riješim fino.\n"
"Nastavite na vlastiti rizik."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Dvostruka tačka montiranja %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4409,12 +4550,12 @@ msgstr ""
"Provjerite cdrom na instaliranom računaru koristeći \"rpm -qpl Mandrake/RPMS/"
"*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Dobro došli u %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Nema pogodne disketne jedinice"
@@ -4424,9 +4565,9 @@ msgstr "Nema pogodne disketne jedinice"
msgid "Entering step `%s'\n"
msgstr "Prelazim na korak `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4436,198 +4577,152 @@ msgstr ""
"ovo,\n"
"pritisnite `F1' prilikom bootanja na CDROMu, zatim unesite `text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Klasa instalacije"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Molimo izaberite jednu od sljedećih klasa instalacije:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ukupna veličina grupa koje ste izabrali je otprilike %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Ako želite da instalirate manje od ove veličine,\n"
-"izaberite procenat paketa koje želite instalirati.\n"
-"\n"
-"Nizak procenat će instalirati samo one najbitnije pakete;\n"
-"procenat 100%% će instalirati sve izabrane pakete."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Na disku imate mjesta samo za %d%% ovih paketa.\n"
-"\n"
-"Ako želite da instalirate manje od ovoga,\n"
-"izaberite procenat paketa koje želite da instalirate.\n"
-"Nizak procenat će instalirati samo one najbitnije pakete;\n"
-"procenat %d%% će instalirati najveći mogući broj paketa."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr ""
-"Na idućem koraku ćete biti u mogućnosti da ih izaberete nešto preciznije."
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procenat paketa za instalaciju"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Izbor grupe paketa"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Izbor pojedinačnih paketa"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ukupna veličina: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Neispravan paket"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Ime: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Verzija: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Veličina: %d KB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Značaj: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Ne možete izabrati ovaj paket jer nema dovoljno prostora za njega"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Sljedeći paketi će biti instalirani"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Sljedeći paketi će biti uklonjeni"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Ne možete izabrati/isključiti ovaj paket"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ovo je obavezan paket, ne može biti isključen"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Ne možete isključiti ovaj paket. On je već instaliran"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ovaj paket mora biti unaprijeđen\n"
"Jeste li sigurni da ga želite isključiti?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ne možete isključiti ovaj paket. On mora biti unaprijeđen"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Automatski prikaži izabrane pakete"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalacija"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Učitaj/Spasi na disketu"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Osvježavam izbor paketa"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimalna instalacija"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Izaberite pakete koje želite instalirati"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instaliram"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Procjenjujem"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Preostalo vremena "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Molimo sačekajte, pripremam instalaciju"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paketa"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instaliram paket %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Prihvati"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4643,17 +4738,17 @@ msgstr ""
"Ako ga nemate, pritisnite Odustani da biste izbjegli instaliranje sa ovog CD-"
"ROMa."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Svejedno nastavi?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Došlo je do greške pri naručivanju paketa:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Došlo je do greške kod instaliranja paketa:"
@@ -4725,11 +4820,11 @@ msgstr "Došlo je do greške"
msgid "Do you really want to leave the installation?"
msgstr "Da li zaista želite napustiti instalaciju?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Licencni ugovor"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4744,7 +4839,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4862,7 +4957,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4967,109 +5062,113 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Tastatura"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Molimo izaberite izgled vaše tastature."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Ovdje je puna lista svih dostupnih tastatura"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Koju klasu instalacije želite?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instaliraj/Unaprijedi"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Da li je ovo instalacija ili update?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Preporučeno"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Ekspert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Unaprijedi"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Unaprijedi samo pakete"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Molimo izaberite vrstu vašeg miša."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port miša"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Molimo izaberite na kojem serijskom portu je spojen vaš miš."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulacija tipki"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulacija 2 dugmeta"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulacija 3 dugmeta"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Podešavam PCMCIA kartice..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Podešavam IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "nema dostupnih particija"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Pretražujem particije da nađem tačke montiranja"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Izaberite tačke montiranja"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"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 loose all the partitions?\n"
@@ -5081,7 +5180,7 @@ msgstr ""
"\n"
"Slažete li se sa gubitkom svih particija?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5089,7 +5188,7 @@ msgstr ""
"DiskDrake nije uspio ispravno pročitati tabelu particija.\n"
"Nastavljate na vlastiti rizik!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5098,76 +5197,79 @@ msgstr ""
"nastaviti, ali da biste bootali vaš sistem, morate kreirati bootstrap "
"particiju u DiskDrake-u"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Nije pronađena nijedna root particija radi unaprjeđivanja"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Root particija"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Šta je root particija (/) vašeg sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Moraćete rebootati da bi izmjene tabele particija stupile na snagu"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Izaberite particije koje želite formatirati"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Provjeri loše blokove?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formatiram particije"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Kreiram i formatiram datoteku %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Nemam dovoljno swap prostora da dovršim instalaciju, molimo dodajte još"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Tražim dostupne pakete"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Tražim dostupne pakete"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Pronalazim pakete za unaprjeđenje"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "Ne možete isključiti ovaj paket. On je već instaliran"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Vaš sistem nema dovoljno preostalog prostora za instalaciju ili unaprjeđenje "
"(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Potpuna (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimalna (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Preporučena (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5175,35 +5277,35 @@ msgstr ""
"Molimo izaberite učitaj ili spasi izbor paketa na disketu.\n"
"Format je isti kao i diskete koje generiše auto_install"
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Vrati sa diskete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Vraćam sa diskete"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Izbor paketa"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Ubacite disketu koja sadrži izbor paketa"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Spasi na disketu"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Izabrana veličina je veća od slobodnog prostora"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Vrsta instalacije"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
#, fuzzy
msgid ""
"You haven't selected any group of packages.\n"
@@ -5212,19 +5314,19 @@ msgstr ""
"Niste izabrali nijednu grupu paketa\n"
"Molimo izaberite minimalnu instalaciju koju želite"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "Sa X-om"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporučeno)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno minimalna instalacija (posebno bez urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5234,16 +5336,16 @@ msgstr ""
"Ako nemate nijedan od ovih CDova, kliknite na Odustani.\n"
"Ako nedostaju samo neki CDovi, isključite ih, zatim kliknite na Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM pod oznakom \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5252,23 +5354,23 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Post-instalacijsko podešavanje"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Molimo ubacite disketu Update Modula u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5304,7 +5406,7 @@ msgid ""
"Altadena California 91001\n"
"USA"
msgstr ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5340,13 +5442,15 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
+#, fuzzy
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
@@ -5358,151 +5462,181 @@ msgstr ""
"\n"
"Da li želite instalirati unaprjeđenja ?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kontaktiram Mandrake Linux web stranicu da bih saznao listu dostupnih mirrora"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Kontaktiram mirror da bih saznao listu dostupnih paketa"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardverski sat podešen na GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP server"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS server"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Nema štampača"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Imate li ISA zvučnu karticu?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Pokrenite \"sndconfig\" poslije instalacije kako biste podesili vašu zvučnu "
"karticu"
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije otkrivena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ukratko"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Miš"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Štampač"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Zvučna kartica"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Windows (FAT32)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Podesite root šifru"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Bez šifre"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Ova šifra je previše jednostavna (mora biti duga najmanje %d karaktera)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Autentikacijski LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Autentifikacija NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS domen"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS server"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autentikacijski LDAP"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Preuzmi fontove iz Windowsa"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "NTP server"
+
+#: ../../install_steps_interactive.pm_.c:1142
+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"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5534,19 +5668,19 @@ msgstr ""
"first\n"
"drive and press \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Prva disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Druga disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Preskoči"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, fuzzy, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5572,7 +5706,7 @@ msgstr ""
"system\n"
"failures. Would you like to create a bootdisk for your system?"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5586,29 +5720,29 @@ msgstr ""
"pravljenje boot diskete na 1.44 Mb disketi vjerovatno neće\n"
"raditi, pošto XFS traži veoma velik drajver)."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Žao mi je, nema dostupne disketne jedinice"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Izaberite disketnu jedinicu koju želite koristiti da napravite boot disketu"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Ubacite disketu u %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Pravim boot disketu"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5620,11 +5754,11 @@ msgstr ""
"Instalacija će se nastaviti, ali ćete\n"
" morati koristiti BootX za bootanje vašeg računara"
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Da li želite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5632,15 +5766,15 @@ msgstr ""
"Greška u instaliranju aboota, \n"
"da li da pokušam nasilnu instalaciju čak i ako to uništi prvu particiju?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Instaliram bootloadera"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalacija bootloadera nije uspjela. Došlo je do sljedeće greške:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5658,18 +5792,17 @@ msgstr ""
" Zatim kucajte: shut-down\n"
"Prilikom idućeg boota biste trebali vidjeti upit bootloadera."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ubacite praznu disketu u jedinicu %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5679,7 +5812,8 @@ msgstr ""
"\n"
"Da li zaista želite izaći sada?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5690,7 +5824,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5705,17 +5839,22 @@ msgstr ""
"pogledajte Errata koja je dostupna na:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informacije o podešavanju vašeg sistema su dostupne u poglavlju\n"
"\"nakon instalacije\" vašeg Zvaničnog Mandrake Linux priručnika za upotrebu."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5729,15 +5868,15 @@ msgstr ""
"\n"
"Možda ćete željeti radije ponoviti instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automatizovano"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Ponovi"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Spasi izbor paketa"
@@ -5764,44 +5903,24 @@ msgstr "nedostaje consolehelper"
msgid "Choose a file"
msgstr "Izaberi datoteku"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Napredno"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Molimo sačekajte"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Info"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Proširi stablo"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Smanji stablo"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Prekidač između ravnog i grupnog sortiranja"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Pogrešan izbor, pokušajte ponovo\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Vaš izbor? (podrazumjevano %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5810,31 +5929,35 @@ msgstr ""
"Stavke koje morate popuniti:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Vaš izbor? (0/1, podrazumjevano %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Dugme '%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Da li želite kliknuti na ovo dugme?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Vaš izbor? (podrazumjevano '%s' %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Postoji mnogo stvari od kojih možete izabrati (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5844,7 +5967,7 @@ msgstr ""
"ili samo pritisnite Enter za nastavak.\n"
"Vaš izbor?"
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5853,327 +5976,327 @@ msgstr ""
"=> Primjetite, label je promjenjena:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Ponovo pošalji"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Češka (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Njemačka"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Španska"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finska"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francuska"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norveška"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Poljska"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Ruska"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Švedska"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK tastatura"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US tastatura"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albanska"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armenska (stara)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armenska (pisaća mašina)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armenska (fonetska)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbejdžanska (latinica)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgijska"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bugarska (fonetska)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bugarska (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilska (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bjeloruska"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Švicarska (Njemački izgled)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Švicarska (Francuski izgled)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Češka (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Njemačka (bez mrtvih tipki)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Danska"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norveška)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Švedska)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonska"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzijska (\"Ruski\" izgled)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzijska (\"Latinični\" izgled)"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grčka"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Mađarska"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Hrvatska"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Izraelska"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Izraelska (Fonetska)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Iranska"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandska"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italijanska"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japanska 106 tipki"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korejanska tastatura"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latino-Američka"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litvanska AZERTY (stara)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litvanska AYERTY (nova)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanska \"red brojeva\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanska \"fonetska\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
msgstr "Latvijska"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonska"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holandska"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Poljska (qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Poljska (qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalska"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadska (Kvebek)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumunska (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumunska (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Ruska (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovenačka"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovačka (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovačka (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Srpska (ćirilica)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamilska"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Tajlandska tastatura"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
msgstr "Tadžička tastatura"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turska (tradicionalni \"F\" model)"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turska (moderni \"Q\" model)"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajinska"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US tastatura (međunarodna)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vjetnamska \"red brojeva\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslavenska (latinično)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Desna Alt tipka"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Obje Shift tipke istovremeno"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Control i Shift tipka istovremeno"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "CapsLock tipka"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl i Alt tipke istovremeno"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt i Shift tipke istovremeno"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "\"Meni\" tipka"
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Lijeva \"Windows\" tipka"
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Desna \"Windows\" tipka"
@@ -6186,7 +6309,31 @@ msgstr "Kružno montiranje %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Najprije ukloni logičke volumene\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Broj telefona"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formatiranje particija"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6228,10 +6375,6 @@ msgstr "1 dugme"
msgid "Generic 2 Button Mouse"
msgstr "Opšti miš sa 2 dugmeta"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Opšti"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "Kotač"
@@ -6296,38 +6439,54 @@ msgstr "nijedan"
msgid "No mouse"
msgstr "Bez miša"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Molimo testirajte miš"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Da biste aktivirali miša,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "POMJERITE VAŠ KOTAČ!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Kraj"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Sljedeći ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Prethodni"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Da li je ovo ispravno?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Info"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Proširi stablo"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Smanji stablo"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Prekidač između ravnog i grupnog sortiranja"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Spoji se na Internet"
@@ -6374,7 +6533,7 @@ msgstr ""
"Nije pronađen ethernet mrežni adapter na vašem sistemu.\n"
"Ne mogu podesiti ovu vrstu konekcije."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Izaberite mrežni interface"
@@ -6388,7 +6547,7 @@ msgstr ""
msgid "no network card found"
msgstr "nije pronađena mrežna kartica"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Podešavam mrežu"
@@ -6404,15 +6563,15 @@ msgstr ""
"Naziv vašeg računara bi trebao biti puno-kvalifikovani naziv,\n"
"kao što je ``mojcomp.mojlab.mojafirma.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Host name"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Čarobnjak za podešavanje mreže"
@@ -6467,7 +6626,7 @@ msgstr "Podešavanje ISDNa"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Izaberite vašeg providera.\n"
" Ako nije na listi, izaberite Nije na listi"
@@ -6486,14 +6645,14 @@ msgstr "Protokol za ostatak svijeta"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol za ostatak svijeta \n"
" bez D-kanala (iznajmljene linije)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Koji protokol želite koristiti?"
#: ../../network/isdn.pm_.c:199
@@ -6517,7 +6676,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Ako imate ISA karticu, vrijednosti na idućem ekranu bi trebale biti "
@@ -6534,13 +6694,13 @@ msgid "Continue"
msgstr "Nastavak"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Koja je vaša ISDN kartica ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Otkrio sam neku ISDN PCI karticu, ali ne znam tip. Molimo izaberite neku PCI "
"karticu na idućem ekranu."
@@ -6559,47 +6719,47 @@ msgstr "Molimo izaberite na koji serijski port je nakačen vaš modem."
msgid "Dialup options"
msgstr "Opcije dialupa"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Naziv konekcije"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Broj telefona"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Login ID"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Skripta"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Ime domena"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Prvi DNS server (opcionalno)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Drugi DNS server (opcionalno)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6607,7 +6767,7 @@ msgstr ""
"\n"
"Možete se diskonektovati ili prekonfigurisati vašu konekciju."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6615,11 +6775,11 @@ msgstr ""
"\n"
"Možete prekonfigurisati vašu konekciju."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Trenutno ste spojeni na Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6627,32 +6787,32 @@ msgstr ""
"\n"
"Možete se spojiti na Internet ili prekonfigurisati vašu konekciju."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Trenutno niste konektovani na Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Konektuj me"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Prekini konekciju"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Podesi konekciju"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Internet konekcija & podešavanje"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Sada ćemo podesiti konekciju %s."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6671,12 +6831,12 @@ msgstr ""
"\n"
"Pritisnite OK za nastavak."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Podešavanje mreže"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6687,9 +6847,9 @@ msgstr ""
"Kliknite na Ok da zadržite tu konfiguraciju ili Odustani za podešavanje vaše "
"Internet & Mrežne konekcije.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6699,66 +6859,72 @@ msgstr ""
"Sada ćemo podesiti vašu internet/mrežnu konekciju.\n"
"Ako ne želite da koristite automatsko prepoznavanje, isključite opciju.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Izaberite profil za podešavanje"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Ekspertni mod"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Prepoznajem uređaje..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Normalna modemska konekcija"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detektovan na portu %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN konekcija"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detektovan %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL konekcija"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detektovan na interfejsu %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kablovska konekcija"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "otkrivena kablovska konekcija"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "LAN konekcija"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "prepoznata ethernet kartica(e)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Izaberite konekciju koju želite podesiti"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6768,23 +6934,23 @@ msgstr ""
"Izaberite jedan od njih koji ćete koristiti.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internet konekcija"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Da li želite pokrenuti konekciju prilikom boota?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Podešavanje mreže"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Potrebno je restartovati mrežu"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6795,7 +6961,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6805,7 +6971,7 @@ msgstr ""
"\n"
"Sada će ova konfiguracija biti primjenjena na vaš sistem.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6813,19 +6979,19 @@ msgstr ""
"Nakon što je to gotovo, preporučujemo da restartujete vaš X\n"
"okoliš kako bi se izbjegao problem sa promjenom naziva računara."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
"Došlo je do problema prilikom podešavanja.\n"
"Provjerite vašu konekciju pomoću net_monitor ili mcc. Ako vaša konekcija ne "
"radi, možete ponovo pokrenuti podešavanje"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6834,7 +7000,7 @@ msgstr ""
"Samo prihvatite kako bi ovaj uređaj ostao podešen.\n"
"Izmjena polja ispod će prepisati ovu konfiguraciju."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6844,38 +7010,43 @@ msgstr ""
"Svaka stavka bi trebala biti unesena kao IP adresa u decimalnoj notaciji\n"
"razdvojenoj tačkama (npr. 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Podešavam mrežni uređaj %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (drajver %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatska IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Pokrenut na bootu"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa treba biti u formatu 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6887,64 +7058,64 @@ msgstr ""
"kao što je ``mojcomp.mojlab.mojafirma.com''.\n"
"Možete također unijeti IP adresu gateway-a ako ga imate"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (tj. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Gateway uređaj"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Konfiguracija proxija"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Otkrij id mrežne karte (korisno za laptope)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy treba biti ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Internet konfiguracija"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Da li se želite pokušati spojiti na Internet sada?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Probavam vašu konekciju..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Sistem je sada spojen na Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Iz sigurnosnih razloga, sada će biti odspojen."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6952,111 +7123,116 @@ msgstr ""
"Izgleda da sistem nije spojen na Internet.\n"
"Probajte promjeniti postavke vaše konekcije."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Podešavanje konekcije"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Molimo ispunite ili provjerite polje ispod"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ kartice"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Memorija kartice (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO kartice"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 kartice"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 kartice"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Vaš lični broj telefona"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Naziv provajdera (npr. provajder.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Broj telefona provajdera"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "Provider dns 1 (opcionalno)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "Provider dns 2 (opcionalno)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Izaberite vašu državu"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Način biranja broja"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Brzina konekcije"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Timeout konekcije (u sek.)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Login naloga (korisničko ime)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Šifra naloga"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "montiranje nije uspjelo: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Extended particije nisu podržane na ovoj platformi"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Imate rupu u vašoj tabeli particija li je ja ne mogu upotrijebiti.\n"
"Jedino rješenje je da pomjerite vaše primarne particija kako bi rupa bila "
"pored extended particija"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Povratak iz datoteke %s nije uspio: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Loša backup datoteka"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Greška u pisanju datoteke: %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7066,186 +7242,186 @@ msgstr ""
"Test integriteta podataka nije uspio. \n"
"To znači će da pisanje bilo čeka na disk rezultirati smećem"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "obavezno"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "važno"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "vrlo fino"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "fino"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "možda"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Common Unix Printing System"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR New Generation"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Line Printer Daemon"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Print, Don't Queue"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr "LPRng"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Lokalni štampač"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Udaljeni štampač"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Štampač na udaljenom CUPS serveru"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Štampač na udaljenom lpd serveru"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Mrežni štampač (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Štampač na SMB/Windows 95/98/NT serveru"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Štampač na NetWare serveru"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Unesite URI uređaja štampača"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Spoji zadatak na komandu"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Nepoznat model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Lokalni štampači"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Udaljeni štampači"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB štampač \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", višenamjenski uređaj na paralelnom portu \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", višenamjenski uređaj na USBu"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", višenamjenski uređaj na HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", višenamjenski uređaj"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", štampa u %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "na LPD serveru \"%s\", štampač \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP host \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "na Windows serveru \"%s\", share \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "na Novell serveru \"%s\", štampač \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", koristeći komandu %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Sirovo štampanje (Bez drajvera)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(na ovom računaru)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Na CUPS serveru \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Default)"
@@ -7267,11 +7443,11 @@ msgstr ""
"Ovdje ne morate podešavati štampače na udaljenim CUPS serverima;\n"
"ovi štampači će biti automatski prepoznati."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "Podešavanje CUPSa"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Navedite CUPS server"
@@ -7313,7 +7489,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa treba biti u formatu 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "Broj porta treba biti cijeli broj!"
@@ -7321,7 +7497,7 @@ msgstr "Broj porta treba biti cijeli broj!"
msgid "CUPS server IP"
msgstr "IP CUPS servera"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7329,20 +7505,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatska konfiguracija CUPSa"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Prepoznajem uređaje ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Testiraj portove"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Dodaj novi štampač"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7365,13 +7533,13 @@ msgstr ""
"vama omogućen pristup svim dostupnim drajverima, opcijama drajvera i vrstama "
"konekcije štampača."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Lokalni štampač"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7404,11 +7572,11 @@ msgstr ""
"želite da podesite štampanje na udaljenom štampaču a printerdrake ga ne "
"izlista automatski."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Automatski prepoznaj štampače"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7432,11 +7600,11 @@ msgstr ""
"štampe...), izaberite opciju \"Štampač\" u \"Hardware\" sekciji Mandrake "
"Kontrolnog centra."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Automatsko prepoznavanje štampača"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7452,33 +7620,37 @@ msgstr ""
"\n"
"Da li zaista želite da vaši štampači budu prepoznati automatski?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Ručno podesite štampač"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Testiraj portove"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Detektovan %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Štampač na paralelnom portu \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB štampač \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7490,11 +7662,11 @@ msgstr ""
"lp0, /dev/lp1, ..., ekvivalentno LPT1:, LPT2:, ..., prvi USB štampač: /dev/"
"usb/lp0, drugi USB štampač: /dev/usb/lp1, ...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Morate unijeti naziv uređaja ili datoteke!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7502,7 +7674,7 @@ msgstr ""
"Nije pronađen nijedan lokalni štampač!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7510,7 +7682,7 @@ msgstr ""
"Mrežni štampači mogu biti instalirani samo nakon završetka instalacije. "
"Izaberite \"Hardware\" i zatim \"Štampač\" u Mandrake Kontrolnom centru."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7518,7 +7690,7 @@ msgstr ""
"Da instalirate mrežne štampače, kliknite na \"Odustani\", prebacite na "
"\"Ekspert mod\" i kliknite ponovo na \"Dodaj novi štampač\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7526,7 +7698,7 @@ msgstr ""
"Sljedeći štampač je prepoznat automatski: ako to nije onaj koji želite "
"podesiti, uneiste naziv uređaja / naziv datoteke u ulaznu liniju"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7535,7 +7707,7 @@ msgstr ""
"koji želite podesiti ili unesite naziv uređaja / naziv datoteke na ulaznu "
"liniju"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7546,7 +7718,7 @@ msgstr ""
"potpuno automatski. Ako vaš štampač nije ispravno prepoznat ili ako želite "
"sami podesiti štampač, uključite \"Ručno podešavanje\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7558,7 +7730,7 @@ msgstr ""
"vaš štampač nije ispravno prepoznat ili ako želite sami podesiti štampač, "
"uključite \"Ručno podešavanje\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7566,11 +7738,11 @@ msgstr ""
"Molimo izaberite port na koji je vaš štampač povezan ili unesite naziv "
"uređaja / naziv datoteke na ulaznoj liniji"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Molimo izaberite na koji port je priključen vaš štampač."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7579,52 +7751,65 @@ msgstr ""
"LPT2:, ..., prvi USB štampač: /dev/usb/lp0, drugi USB štampač: /dev/usb/"
"lp1, ...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Morate izabrati ili unijeti štampač / uređaj!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Ručno podešavanje"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
"Da li je vaš štampač višenamjenski uređaj od HPa (OfficeJet, PSC, "
"PhotoSmart, LaserJet 1100/1200/1220/3200/3300 sa skenerom)?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Instaliram HPOJ paket..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Provjeravam uređaj i podešavam HPOJ ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Instaliram SANE paket..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instaliram pakete..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Skeniram na vašem HP višenamjenskom uređaju"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skeniram na vašem HP višenamjenskom uređaju"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Omogućujem CUPSu port štampača ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Čitam bazu podataka o štampačima ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opcije udaljenog lpd štampača"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7632,27 +7817,27 @@ msgstr ""
"Da biste koristili udaljeni lpd štampač, morate dati ime računara za printer "
"server i ime štampača na tom serveru."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Ime udaljenog računara"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Ime udaljenog štampača"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Ime udaljenog računara nedostaje!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Ime udaljenog štampača nedostaje!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcije SMB (Windows 9x/NT) štampača"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7664,35 +7849,35 @@ msgstr ""
"kao i share naziv štampača kojem želite pristupiti i korisničko ime, šifru i "
"informacije o radnoj grupi."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "SMB server ime"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "SMB server IP"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Share naziv"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Radna grupa"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Treba biti dato ili ime servera ili IP adresa servera!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Naziv samba share-a nedostaje!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7716,7 +7901,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7725,7 +7910,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7733,11 +7918,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opcije NetWare štampača"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7749,27 +7934,27 @@ msgstr ""
"naziv reda za štampu na štampaču kojem želite pristupiti i eventualno "
"korisničko ime i šifru."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Printer Server"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Naziv reda za štampu"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "NCP naziv servera nedostaje!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "NCP naziv reda nedostaje!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
msgstr "TCP/socket opcije štampača"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
@@ -7780,19 +7965,19 @@ msgstr ""
"opcionalno broj porta. Na HP JetDirect serverima broj porta je obično 9100, "
"na ostalim serverima on može varirati. Pogledajte priručnik vašeg hardware-a."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Hostname štampača"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Hostname štampača nedostaje!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI uređaja štampača"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
@@ -7802,11 +7987,11 @@ msgstr ""
"CUPS ili Foomatic specifikacije. Obratite pažnju da nisu svi tipovi URIja "
"podržani od svih spoolera."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Trebate unijeti ispravan URI!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7814,27 +7999,23 @@ msgstr ""
"Svakom štampaču treba dati ime (npr. \"stampac\"). Polja Opis i Lokacija "
"nije potrebno popuniti. Oni su komentari za korisnike."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Naziv štampača"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Opis"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Lokacija"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Pripremam bazu podataka o štampačima..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Model vašeg štampača"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7860,24 +8041,24 @@ msgstr ""
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Model je ispravan"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Izaberite model ručno"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Izbor modela štampača"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Koji model štampača imate?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7891,7 +8072,7 @@ msgstr ""
"prepoznavanje modela vašeg štampača. Potražite ispravan model na listi ako "
"kursor stoji na pogrešnom modelu ili na \"Raw štampač\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7899,11 +8080,11 @@ msgstr ""
"Ako štampač nije naveden, izaberite kompatibilan (pogledajte uputstva za "
"štampač) ili sličan."
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Podešavanje OKI winprinter-a"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7919,11 +8100,11 @@ msgstr ""
"nego što odštampate testnu stranicu. Inače štampač neće raditi. Drajver će "
"ignorisati vaše podešenje tipa konekcije."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Podešavanje Lexmark inkjet-a"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7935,7 +8116,7 @@ msgstr ""
"Molimo spojite vaš štampač na lokalni port ili ga podesite na računaru na "
"koji je spojen."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7957,7 +8138,7 @@ msgstr ""
"poravnavanje glava sa \"lexmarkmaintain\" i podesite opcije poravnanja glave "
"pomoću ovog programa."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7972,22 +8153,22 @@ msgstr ""
"ispravno podešeni. Obratite pažnju da za voma veliku kvalitetu / rezoluciju "
"štampa može postati znatno sporija."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Opcija %s mora biti cijeli broj!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Opcija %s mora biti broj!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Opcija %s izvan raspona!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7996,11 +8177,11 @@ msgstr ""
"Da li želite da podesite ovaj štampač (\"%s\")\n"
"kao podrazumjevani štampač?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testna stranica"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -8012,39 +8193,39 @@ msgstr ""
"laserskim štampačima sa malo memorije možda neće nikad ni izaći. U većini "
"slučajeva dovoljno je odštampati standardnu testnu stranicu."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Nijedna testna strana"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Štampaj"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standardna testna strana"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr "Alternativna testna strana (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternativna testna strana (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Foto testna strana"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Nemoj štampati testnu stranicu"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Štampam testnu stranicu..."
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8059,7 +8240,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8067,15 +8248,15 @@ msgstr ""
"Testna stranica je poslana štampaču.\n"
"Može potrajati određeno vrijeme dok štampač krene.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Da li je radilo ispravno?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Sirovi štampač"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8088,7 +8269,7 @@ msgstr ""
"<datoteka>\" ili \"kprinter <datoteka>\". Grafički alati vam omogućuju da "
"jednostavno odaberete štampač i izmjenite podešenja opcija.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8098,8 +8279,8 @@ msgstr ""
"dijalozima za štampu mnogih aplikacija, ali ovdje ne morate navesti ime "
"datoteke jer tu datoteku obezbjeđuje sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8112,18 +8293,18 @@ msgstr ""
"štampe. Jednostavno dodajte željena podešenja na komandnu liniju, npr. \"%s "
"<datoteka>\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Za listu opcija koje su dostupne za trenutni štampač ili pročitajte listu "
"koja je data ispod ili kliknite na dugme \"Lista opcija za štampu\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8131,7 +8312,7 @@ msgstr ""
"Ovo je lista mogućih opcija za štampu za trenutni štampač:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8140,8 +8321,8 @@ msgstr ""
"Za štampanje datoteke sa komandne linije (terminalski prozor) koristite "
"komandu \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8151,7 +8332,7 @@ msgstr ""
"dijalozima za štampu mnogih aplikacija. Ovdje nije potrebno navesti naziv "
"datoteke jer tudatoteku obezbjeđuje sama aplikacija.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8159,7 +8340,7 @@ msgstr ""
"Za listu opcija koje su dostupne za trenutni štampač kliknite na dugme "
"\"Lista opcija za štampu\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8168,7 +8349,7 @@ msgstr ""
"Za štampanje datoteke sa komandne linije (terminalski prozor) koristite "
"komandu \"%s <datoteka>\" ili \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8184,7 +8365,7 @@ msgstr ""
"zaustavlja sve zadatke štampe odmah kada kliknete na nju. Ovo je korisno "
"npr. u slučaju zaglavljivanja papira.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8197,38 +8378,49 @@ msgstr ""
"zadatak štampe. Jednostavno dodajte željena podešenja na komandnu liniju, "
"npr. \"%s <datoteka>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zatvori"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Štampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Štampam/skeniram na \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Štampam/skeniram na \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Štampam na štampač \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Zatvori"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Lista opcija za štampu"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8242,39 +8434,30 @@ msgstr ""
"\n"
"Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Vaš HP višenamjenski uređaj je automatski konfigurisan kako bi mogao "
-"skenirati. Sada možete skenirati sa komandne linije pomoću komande \"ptal-hp "
-"%s scan ...\". Skeniranje putem grafičkog interfejsa ili iz GIMPa još nije "
-"podržano za vaš uređaj. Više informacija možete naći u datoteci\"/usr/share/"
-"doc/hpoj-0.8/ptal-hp-scan.html\" na vašem računaru. Ako imate HP LaserJet "
-"1100 ili 1200, možete skenirati samo ako ste instalirali opciju za "
-"skeniranje.\n"
-"\n"
-"Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Čitam podatke o štampaču..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Premještanje konfiguracije štamapča"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8289,7 +8472,7 @@ msgstr ""
"zadaci štampe neće biti prebačeni.\n"
"Svi redovi ne mogu biti prebačeni zbog sljedećih razloga:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8297,7 +8480,7 @@ msgstr ""
"CUPS ne podržava štampače na Novell serverima ili štampačekoji šalju podatke "
"u komandama slobodnog oblika.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8305,11 +8488,11 @@ msgstr ""
"PDQ podržava samo lokalne štampače, udaljene LPD štampačei Socket/TCP "
"štampače.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD i LPRng ne podržavaju IPP štampače.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8317,7 +8500,7 @@ msgstr ""
"Pored toga, redovi koji nisu kreirani ovim programom ili sa \"foomatic-"
"configure\" ne mogu biti premješteni."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8327,7 +8510,7 @@ msgstr ""
"Također štampači konfigurisani sa PPD datotekama koje su osigurali njihovi "
"proizvođači ili sa vlastitim CUPS drajverima ne mogu biti prebačeni."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8337,15 +8520,15 @@ msgstr ""
"Označite štampače koje ćete prebacivati i kliknite na \n"
"\"Prebaci\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Nemoj prebacivati štampače"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Prebaci"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8356,11 +8539,11 @@ msgstr ""
"Kliknite na \"Prebaci\" da to prepišete.\n"
"Možete također unijeti novo ime ili preskočiti ovaj štampač."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Naziv štampača bi se trebao sastojati od slova, brojeva i donje linije"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8369,16 +8552,16 @@ msgstr ""
"Štampač \"%s\" već postoji,\n"
"da li sigurno želite prepisati ovu konfiguraciju?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Novo ime štampača"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Prebacujem %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8387,29 +8570,29 @@ msgstr ""
"Prebacili ste vaš bivši podrazumjevani štampač (\"%s\"),Da li će to također "
"biti podrazumjevani štampač podnovim sistemom štampe %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Osvježavam podatke o štampaču..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Podešavanje udaljenog štampača"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Pokrećem mrežu..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Sada podesite mrežu"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "Mrežna funkcionalnost nije podešena"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8421,11 +8604,11 @@ msgstr ""
"mreže, nećete moći koristiti štampač koji sada podešavate. Kako želite da "
"nastavimo?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Nastavi bez podešavanja mreže"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8440,7 +8623,7 @@ msgstr ""
"\"Mreža i Internet\"/\"Konekcija\", a zatim podesite štampač, ponovo "
"koristeći Mandrake Kontrolni centar, sekcija \"Hardver\"/\"Štampač\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8450,24 +8633,24 @@ msgstr ""
"vašu konfiguraciju i vaš hardware. Onda ponovo pokušajte podesiti udaljeni "
"štampač."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Restartujem sistem za štampu ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "visok"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoičan"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instaliram sistem za štampu na sigurnosnom nivou: %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8491,11 +8674,11 @@ msgstr ""
"\n"
"Da li zaista želite podesiti štampanje na ovom računaru?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Pokrećem sistem za štampu tokom boota"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8515,63 +8698,63 @@ msgstr ""
"\n"
"Da li želite da ponovo uključite automatsko pokretanje sistema za štampu?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Provjeravam instalirani software..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr "Uklanjam LPRng..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Uklanjam LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Izaberite spooler štampača"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Koji sistem štampanja (spooler) želite koristiti?"
-#: ../../printerdrake.pm_.c:2239
-#, c-format
-msgid "Configuring printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2310
+#, fuzzy, c-format
+msgid "Configuring printer \"%s\"..."
msgstr "Podešavam štampač \"%s\"..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Instaliram Foomatic..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opcije štampača"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Pripremam PrinterDrake..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Podešavam aplikacije..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Da li želite podesiti štampanje?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Sistem štampe: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8583,7 +8766,7 @@ msgstr ""
"njemu; ili da učinite štampač na udaljenom CUPS serveru upotrebljivim iz "
"Star Office/OpenOffice.org-a."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8593,29 +8776,33 @@ msgstr ""
"postavki; ako ga želite učiniti podrazumjevanim štampačem; ili da biste "
"vidjeli informacije o njemu."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Osvježi listu štampača (kako bi bili prikazani svi dostupni CUPS štampači)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Promjenite sistem štampe"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normalni mod"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Izlaz"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Želite li podesiti još jedan štampač?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Izmjeni konfiguraciju štampača"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8624,102 +8811,102 @@ msgstr ""
"Štampač %s\n"
"Šta želite da izmjenite na ovom štampaču?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Uradi!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Tip konekcije štampača"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Naziv štampača, opis, lokacija"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Proizvođač štampača, model, drajver"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Proizvođač štampača, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Podesi štampač kao podrazumjevani"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Dodaj ovaj štampač u Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Ukloni ovaj štampač iz Star/Open Offica"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
msgstr "Štampaj testnu stranicu"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Saznaj kako koristiti ovaj štampač"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Ukloni štampač"
-#: ../../printerdrake.pm_.c:2786
-#, c-format
-msgid "Removing old printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2857
+#, fuzzy, c-format
+msgid "Removing old printer \"%s\"..."
msgstr "Uklanjam stari štampač \"%s\" ..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Podrazumjevani štampač"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Štampač \"%s\" je sada podešen kao podrazumjevani štampač."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Dodajem štampač u Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Štampač \"%s\" je uspješno dodan u Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Nisam uspio dodati štampač \"%s\" u Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Uklanjam štampač iz Star/Open Offica"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr "Štampač \"%s\" je uspješno uklonjen iz Star/Open Offica."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Nisam uspio ukloniti štampač \"%s\" iz Star/Open Offica."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Da li želite da uklonite štampač \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
-#, c-format
-msgid "Removing printer \"%s\" ..."
+#: ../../printerdrake.pm_.c:2909
+#, fuzzy, c-format
+msgid "Removing printer \"%s\"..."
msgstr "Uklanjam štampač \"%s\" ..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8803,24 +8990,62 @@ msgstr "Šifre se ne poklapaju. Pokušajte opet!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ne mogu dodati particiju na _formatiran_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Ne mogu pisati datoteku %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid nije uspio"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid nije uspio (možda nedostaju raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nema dovoljno particija za RAID nivo %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Ovaj nivo treba koristiti pažljivo. On čini vaš sistem lakšim za upotrebu,\n"
+"ali vrlo osjetljivim: ne smije biti korišten za računar koji je spojen na\n"
+"druge ili na Internet. Nema pristupa šifrom."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Sa ovim sigurnosnim nivoom, postaje moguće koristiti ovaj sistem kao "
+"server.\n"
+"Sigurnost je sada dovoljno visoka za upotrebu sistema kao servera koji "
+"prima\n"
+"konekcije sa mnogo klijenata. Napomena: ako je vaš računar samo klijent na "
+"Internetu, možda je bolje da izaberete niži nivo."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Napredne opcije"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcije"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Pokreni ALSA zvučni sistem (Advanced Linux Sound Architecture)"
@@ -8877,7 +9102,7 @@ msgstr ""
"HardDrake pokreće probavanje hardware-a i opcionalno konfiguriše\n"
"novi/izmjenjeni hardware."
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8952,7 +9177,7 @@ msgstr ""
"Linux Virtuelni Server, koristi se za izgradnju servera visokih performansi\n"
"i dostupnosti."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9029,7 +9254,7 @@ msgstr ""
"su NFS i NIS. Portmap server mora raditi na računarima koje služe kao\n"
"serveri za protokole koji koriste RPC mehanizam."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9124,7 +9349,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Sistem"
@@ -9254,6 +9479,7 @@ msgstr ""
"GNU gcc kompajlera kao i najboljih razvojnih okolina koje su Open Source"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "Mandrake Kontrolni centar"
@@ -9374,6 +9600,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Instaliram pakete..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Molimo izvršite logout i zatim koristitite Ctrl-Alt-BackSpace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9382,6 +9617,160 @@ msgstr ""
"Ne mogu čitati vašu tabelu particija, previše je oštećena za mene :(\n"
"Pokušaću izbrisati loše particije"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Premještanje konfiguracije štamapča"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Server baze podataka"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Server baze podataka"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "NIS server"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "NIS server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Dodaj korisnika"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Pomoć"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Nije konektovan"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Obriši"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Sve izabrano"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Dodaj korisnika"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "Podešavam..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "rekonfiguriši"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "Nema pogodne disketne jedinice"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Greška!"
@@ -9434,6 +9823,11 @@ msgstr ""
"Molimo izaberite za svaki korak da li ćete ga ponoviti kao i u vašoj "
"instalaciji ili će se obaviti ručno"
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "Pravim auto instalacijsku disketu"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9446,12 +9840,12 @@ msgstr ""
"\n"
"Parametri automatske instalacije su dostupni u odjeljcima lijevo"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Čestitamo!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9459,28 +9853,19 @@ msgstr ""
"Disketa je uspješno napravljena.\n"
"Sada možete ponoviti vašu instalaciju."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Auto instalacija"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Dodaj stavku"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Ukloniti zadnju stavku"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9490,7 +9875,7 @@ msgstr ""
" DrakBackup Izvještaj \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9502,19 +9887,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9526,63 +9899,87 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "ukupno napredak"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Backup-uj sistemske datoteke..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Datoteke backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Backup-uj korisničke datoteke..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Napredak backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Backup-uj ostale datoteke..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"lista datoteka poslana putem FTPa : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
"(!) problem sa FTP konekcijom: Nije bilo moguće poslati vaše backup datoteke "
"putem FTPa.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
msgstr "(!) Greška tokom slanja pošte. \n"
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Izbor datoteka"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Izaberite datoteke ili direktorije i kliknite na 'Dodaj'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9590,25 +9987,25 @@ msgstr ""
"\n"
"Molimo uključite sve potrebne opcije.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Ove opcije mogu spasiti ili vratiti sve datoteke u vašem /etc direktoriju.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Backup sistemskih datoteka. ( /etc direktorij )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Zaobiđi kritične datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -9616,83 +10013,77 @@ msgstr ""
"Sa ovom opcijom bićete u mogućnosti da vratite bilo koju\n"
" verziju vašeg /etc direktorija."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Molimo izaberite sve korisnike koje želite uključiti u vaš backup."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Ne uključuj spremnik web preglednika"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Koristi FTP vezu za backup"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Molimo unesite ime računara ili IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Molimo unesite direktorij za\n"
" smještaj backupa na ovom računaru."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Molimo unesite vaš login"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Molimo unesite vašu šifru"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Zapamti ovu šifru"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP konekcija"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Sigurna konekcija"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Koristi CD/DVDROM za backup"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Molimo izaberite vaš CD prostor"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Molim uključite ako želite obrisati vaš CDRW prije"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9700,7 +10091,7 @@ msgstr ""
"Molim izaberite ako želite uključiti\n"
" instalacijski boot na CDu."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9708,16 +10099,21 @@ msgstr ""
"Molim unesite naziv uređaja vašeg CD Writera\n"
" npr: 0,1,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Koristi traku za backup"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Molim unesite ime uređaja kojeg ćete koristiti za backup"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Molim uključite ako želite obrisati vaš CDRW prije"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -9725,51 +10121,57 @@ msgstr ""
"Molim unesite maksimalnu veličinu\n"
" dozvoljenu za Draxbackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Koristi quotu za backup datoteke."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "Mreža"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tip"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "svakog sata"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "dnevno"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "sedmično"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "mjesečno"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Koristi demon"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9777,7 +10179,7 @@ msgstr ""
"Izaberite vremenski interval\n"
"između svakog backupa"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9785,71 +10187,67 @@ msgstr ""
"Molim izaberite medij\n"
"za backup."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Koristi hard disk sa demonom"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Koristi FTP sa demonom"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Molim budite sigurni da je cron demon aktiviran u vašim servisima."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Pošalji mail izvještaj nakon svakog backupa na :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Šta"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Kada"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Više opcija"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Podešavanje Drakbackup-a"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Molimo izaberite gdje želite backupovati"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "na hard disk"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "preko mreže"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Molim izaberite šta želite backupovati"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Backup sistema"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Backup korisnika"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Ručno izaberite korisnika"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9857,7 +10255,7 @@ msgstr ""
"\n"
"Izvori backup-a: \n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9865,7 +10263,7 @@ msgstr ""
"\n"
"- sistemske datoteke:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9873,7 +10271,7 @@ msgstr ""
"\n"
"- korisničke datoteke:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9881,7 +10279,7 @@ msgstr ""
"\n"
"- ostale datoteke:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9890,16 +10288,45 @@ msgstr ""
"\n"
"- spasi na hard disku u direktoriju : %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Uređaj miša: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- spasi na FTPu na računaru : %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- spasi na FTPu na računaru : %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9908,7 +10335,7 @@ msgstr ""
"\t\t korisničko ime: %s\n"
"\t\t u direktoriju: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9916,19 +10343,19 @@ msgstr ""
"\n"
"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tNe uključuj sistemske datoteke\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackupi koriste tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackupi koriste tar i gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9937,27 +10364,41 @@ msgstr ""
"\n"
"- Demon (%s) uključuje :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Hard disk.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-Mrežu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-Mrežu preko SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-Mrežu preko FTPa.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-Mrežu preko FTPa.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Bez podešavanja, molim kliknite na Čarobnjak ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9965,7 +10406,7 @@ msgstr ""
"Lista podataka za vraćanje:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9973,131 +10414,134 @@ msgstr ""
"Lista oštećenih podataka:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Molimo isključite ili pobrišite ga idući put."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Backup datoteke su oštećene"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Svi vaši izabrani podaci su "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " uspješno spašeni na %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Vrati konfiguraciju "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "OK za vraćanje ostalih datoteka."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Lista korisnika za vraćanje (samo najsvježiji datum po korisniku je značajan)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Vrati sistemske datoteke prije:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "molim izaberite datum za vraćanje"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Koristi hard disk za backup"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Molimo unesite direktorij za spasiti:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP konekcija"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Sigurna konekcija"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Vrati sa hard diska"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Molim unesite direktorij gdje su smješteni backupi"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Izaberite drugi medij za vraćanje"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Drugi medij"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Vrati sistem"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Vrati ostalo"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "izaberite stazu za vraćanje (umjesto / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Izvrši novi backup prije vraćanja (samo za inkrementalni backup.)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Pobriši korisničke direktorije prije vraćanja."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Vrati sve backupe"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Ručno vraćanje"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Pomoć"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Prethodni"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Spasi"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Izgradi backup"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Vrati"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Sljedeći"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10105,7 +10549,7 @@ msgstr ""
"Molimo pokrenite Izgradi backup prije vraćanja...\n"
" ili provjerite da li je put za spašavanje ispravan."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10115,31 +10559,35 @@ msgstr ""
" vaš mail izvještaj nije poslan\n"
" Molim podesite sendmail"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Lista paketa za instalaciju"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Sljedeći paketi će biti instalirani"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Greška tokom slanja datoteke preko FTPa.\n"
" Molimo ispravite vašu FTP konfiguraciju."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Molim izaberite podatke za vraćanje..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Molim izaberite medij za backup..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Molim izaberite podatke za backup..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10147,75 +10595,75 @@ msgstr ""
"Nije pronađena konfiguraciona datoteka \n"
"molim kliknite na Čarobnjak ili Napredno."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "U izradi ... molim sačekajte."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Backup sistemskih datoteka"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Backup korisničkih datoteka"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Backup ostalih datoteka"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Ukupan napredak"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "slanje datoteka putem FTPa"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Šaljem datoteke..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr "Lista podataka koji će biti smješteni na CDROM."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Molim unesite brzinu cd pisača"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Molim unesite naziv uređaja vašeg CD pisača (ex: 0,1,0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Molim uključite ako želite imati instalacioni boot na vašem CDu."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Backup-uj sada iz konfiguracijske datoteke"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Pogledaj postavke backupa."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Čarobnjak za podešavanje"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Napredno podešavanje"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Backup-uj sada"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10275,7 +10723,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10289,7 +10737,7 @@ msgstr ""
" podesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10367,7 +10815,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10419,13 +10867,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10455,7 +10908,7 @@ msgstr ""
" along with this program; if not, write to the Free Software\n"
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10531,7 +10984,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10549,7 +11002,7 @@ msgstr ""
"drive before sending it to the server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10571,7 +11024,7 @@ msgstr ""
"data. It is important to be careful and not modify the \n"
"backup data files by hand.\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10650,99 +11103,530 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalacija %sa nije uspjela. Javila se sljedeća greška:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Alati za konzolu"
+
+#: ../../standalone/drakbug_.c:53
+#, fuzzy
+msgid "HardDrake"
+msgstr "na hard disk"
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "MandrakeConsulting"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "MandrakeStore"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Miš"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Udaljeni štampač"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Share naziv"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Čarobnjak za podešavanje mreže"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autentikacija"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Izbor paketa"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Molimo sačekajte"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Post Uninstall"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "port"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr "Screenshotovi će biti dostupni nakon što instalirate u %s"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Podešavanje mreže (%d adaptera)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil:"
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Briši profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Profil za brisanje:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Novi profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Naziv profila koji će biti kreiran (novi profil je kreiran kao kopija "
+"postojećeg) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Hostname: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Pristup Internetu"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tip:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Interfejs:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "Molim sačekajte"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Podesi Internet pristup..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Podešavanje LANa"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Drajver"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfejs"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Podesi Lokalnu mrežu..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Kliknite ovdje za pokretanje čarobnjaka ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Čarobnjak..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Primjeni"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Molimo sačekajte... Primjenjujem konfiguraciju"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Konektovan"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nije konektovan"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Konektuj se..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Prekini konekciju..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+"Upozorenje, otkrivena je druga Internet konekcija, možda preko vaše mreže"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nemate nijedan podešen interfejs.\n"
+"Podesite ih prvo klikajući na 'Podesi'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Podešavanje LANa"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adapter %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Boot protokol"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Pokrenut na bootu"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "pokreni sada"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "zaustavi sada"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Interfejs još nije podešen.\n"
+"Pokrenite čarobnjak za podešavanje u glavnom prozoru"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nemate nijednu Internet konekciju.\n"
+"Napravite jednu klikajući na 'Podesi'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Podešavanje Internet konekcije"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Podešavanje Internet konekcije"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tip konekcije: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametri"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Gateway"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernet kartica"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klijent"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "koristi: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Naziv modula"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Veličina"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "Kreiranje boot diskete"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "Podrazumijevano"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "DrakFloppy greška: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "Kernel verzija"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Općenito"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Ekspert područje"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "mkinitrd opcionalni argumenti"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Dodaj modul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "prisili"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "ako je potrebno"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "izostavi scsi module"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "izostavi raid module"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Ukloni modul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Ispis"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Napravi disk"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Provjeri da li je medij prisutan za ovaj uredjaj %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"Nema medija za ovaj uredjaj %s.\n"
+"Molim ubacite ga."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Ne mogu izvrsiti fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Pretraži instalirane fontove"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Isključi instalirane fontove"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "obradi sve fontove"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "nije pronađen nijedan font"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "gotovo"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "ne mogu naći nijedan font na montiranim particijama"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Ponovo izaberi ispravne fontove"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "ne mogu naći nijedan font.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Pretraži fontove na listi instaliranih"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kopiranje fontova"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
msgstr "Instalacija True Type fontova"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "molimo sačekajte tokom ttmkfdir..."
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Završena True Type instalacija"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Konverzija fontova"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "type1inst kreiranje"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Ghostscript referenciranje"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "ttf fonts konverzija"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "pfm fonts konverzija"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Onemogući privremene datoteke"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Restartuj XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Onemogući datoteke fontova"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "restart xfs-a"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10756,107 +11640,107 @@ msgstr ""
"-Možete instalirati fontove koristeći uobičajen način. U rijetkim "
"slučajevima, neispravni fontovi mogu zaglaviti vaš X Server."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Uvoz fontova"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Preuzmi fontove iz Windowsa"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Deinstaliraj fontove"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Napredne opcije"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Lista fontova"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Izaberite aplikacije koje će podržavati fontove :"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Razni štampači"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Izaberite font datoteku ili direktorij i kliknite na 'Dodaj'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Lista instalacije"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "kliknite ovdje ako ste sigurni."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "ovdje ako ne."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Ništa izabrano"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Sve izabrano"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Pobriši listu"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "Probni inicijali"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Kopiraj fontove na sistem"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Instaliraj i konvertuj fontove"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Post Install"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Pobriši fontove sa mog sistema"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Post Uninstall"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Dijeljenje Internet konekcije"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Dijeljenje Internet konekcije je trenutno aktivno"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10868,31 +11752,31 @@ msgstr ""
"\n"
"Šta želite uraditi?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "isključi"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "otkaži"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "rekonfiguriši"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Isključujem servere..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Dijeljenje Internet konekcije je sada isključeno."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Dijeljenje Internet konekcije je trenutno neaktivno"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10904,19 +11788,19 @@ msgstr ""
"\n"
"Šta želite uraditi?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "uključi"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Uključujem servere..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Dijeljenje Internet konekcije je sada uključeno."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10932,21 +11816,21 @@ msgstr ""
"Napomena: potreban vam je poseban Mrežni adapter da biste podesili Lokalnu "
"mrežu (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfejs %s (koristeći modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interfejs %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Nema mrežnog adaptera na vašem sistemu!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10954,11 +11838,11 @@ msgstr ""
"Na vašem sistemu nije pronađen nijedan ethernet mrežni adapter. Molimo "
"pokrenite alat za podešavanje hardware-a."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Mrežni interface"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10973,18 +11857,18 @@ msgstr ""
"\n"
"Sada ću podesiti vašu Lokalnu mrežu sa ovim adapterom."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Molimo izaberite koji mrežni adapter će biti spojen na vašu Lokalnu mrežu."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Mrežni interfejs je već podešen"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10999,15 +11883,15 @@ msgstr ""
"\n"
"To možete obaviti ručno, ali morate znati šta radite."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automatsko ponovno podešavanje"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Prikaži postavke trenutnog interfejsa"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -11024,7 +11908,7 @@ msgstr ""
"IP atributi: %s\n"
"Drajver: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11043,33 +11927,33 @@ msgstr ""
"Ako ne, mogu ponovo podesiti vaš interfejs i podesiti DHCP server za vas.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Lokalna mreža C klase"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "IP adresa (ovog) DHCP servera"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Ponovo podesi interfejs i DHCP server"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr "Lokalna mreža se ne završava sa `.0', izlazim."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"Potencijalan konflikt LAN adresa pronađen u trenutnoj konfiguraciji %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Otkrivena konfiguracija firewalla!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11077,20 +11961,20 @@ msgstr ""
"Upozorenje! Pronađena je postojeća konfiguracija firewalla. Možda će biti "
"potrebno neko ručno podešavanje nakon instalacije."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Podešavam..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Podešavam skripte, instaliram software, pokrećem servere..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problemi tokom instaliranja paketa %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11100,23 +11984,23 @@ msgstr ""
"Sada možete dijeliti Internet konekciju sa ostalim računarima na vašoj "
"lokalnoj mreži, koristeći automatsku mrežnu konfiguraciju (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Podešavanje je već završeno, ali je trenutno isključeno."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Podešavanje je već završeno i trenutno je uključeno."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Dijeljenje Internet konekcije nije nikad podešeno."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Podešavanje dijeljenja Internet konekcije"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11131,215 +12015,6 @@ msgstr ""
"\n"
"Kliknite na Podesi da pokrenete čarobnjak."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Podešavanje mreže (%d adaptera)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil:"
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Briši profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Profil za brisanje:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Novi profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Naziv profila koji će biti kreiran (novi profil je kreiran kao kopija "
-"postojećeg) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Hostname: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Pristup Internetu"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tip:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Gateway:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Interfejs:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "Molim sačekajte"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Podesi Internet pristup..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Podešavanje LANa"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Drajver"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfejs"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Podesi Lokalnu mrežu..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Kliknite ovdje za pokretanje čarobnjaka ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Čarobnjak..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Primjeni"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Molimo sačekajte... Primjenjujem konfiguraciju"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Konektovan"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nije konektovan"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Konektuj se..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Prekini konekciju..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-"Upozorenje, otkrivena je druga Internet konekcija, možda preko vaše mreže"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemate nijedan podešen interfejs.\n"
-"Podesite ih prvo klikajući na 'Podesi'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Podešavanje LANa"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adapter %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Boot protokol"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Pokrenut na bootu"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "pokreni sada"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "zaustavi sada"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Interfejs još nije podešen.\n"
-"Pokrenite čarobnjak za podešavanje u glavnom prozoru"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nemate nijednu Internet konekciju.\n"
-"Napravite jednu klikajući na 'Podesi'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Podešavanje Internet konekcije"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Podešavanje Internet konekcije"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tip konekcije: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametri"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Gateway"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernet kartica"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klijent"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "Podešavanje nivoa sigurnosti"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Kontrolni centar"
@@ -11348,63 +12023,85 @@ msgstr "Kontrolni centar"
msgid "Choose the tool you want to use"
msgstr "Izaberite alat koji želite koristiti"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanada (kablovska)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+#, fuzzy
+msgid "USA (broadcast)"
msgstr "USA (bcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (kablovska)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "China (broadcast)"
msgstr "Kina (bcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+#, fuzzy
+msgid "Japan (broadcast)"
msgstr "Japan (bcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japan (kablovska)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Istočna Evropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Francuska"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irska"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Zapadna Evropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Australija"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Novi Zeland"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Južna Afrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11412,27 +12109,44 @@ msgstr ""
"Molim,\n"
"unesite vaš tv standard i državu"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "TV standard :"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Oblast :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Pretraga TV kanala je u toku ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Tražim TV kanale"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "Došlo je do greške kod instaliranja paketa:"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11477,7 +12191,7 @@ msgstr "Ne mogu da pokrenem live upgrade !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr "Izmjena je napravljena, ali da bi stupila na snagu morate se odjaviti"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11487,7 +12201,7 @@ msgstr "Prikaži samo za izabrani dan"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/File/_New"
+msgstr "/Datoteka/_Nova"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
@@ -11511,7 +12225,7 @@ msgstr "<control>S"
#: ../../standalone/logdrake_.c:105
msgid "/File/Save _As"
-msgstr "/Datoteaka/Sačuvaj _kao"
+msgstr "/_Datoteka/Sačuvaj K_ao"
#: ../../standalone/logdrake_.c:106
msgid "/File/-"
@@ -11525,10 +12239,6 @@ msgstr "/_Opcije"
msgid "/Options/Test"
msgstr "/Opcije/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Pomoć"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Pomoć/_O programu..."
@@ -11589,7 +12299,7 @@ msgstr "Kalendar"
msgid "Content of the file"
msgstr "Sadržaj datoteke"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Mail/SMS obavijest"
@@ -11598,11 +12308,11 @@ msgstr "Mail/SMS obavijest"
msgid "please wait, parsing file: %s"
msgstr "molim sačekajte, parsiram datoteku: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Podešavanje Mail/SMS obavijesti"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11612,65 +12322,97 @@ msgstr ""
"\n"
"Ovdje možete podesiti sistem obavještavanja.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Ime domena"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "NIS server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Postfix mail server, Inn news server"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "NIS server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS server"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Servisi"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Printer Server"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "postavke servisa"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
"Možete primiti obavještenje ako neki od izabranih servisa prestane raditi"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "postavka opterećenja"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
"Primićete upozorenje ako je opterećenje (system load) veće od ove vrijednosti"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "postavka upozorenja"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Podesite način na koji će vas sistem obavijestiti"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Sačuvaj kao..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Molimo izaberite vrstu vašeg miša."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "nije pronađen serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emuliraj treće dugme?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "Čitam podatke o štampaču..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Prepoznajem uređaje ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11716,6 +12458,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Podešavanje firewalla"
@@ -12120,10 +12874,6 @@ msgid "Multimedia - Sound"
msgstr "Multimedija - Zvuk"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Korisni programi"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentacija"
@@ -12227,10 +12977,6 @@ msgstr ""
"pregledanje Weba"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arhiviranje, emulatori, nadzor"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Lične finansije"
@@ -12278,59 +13024,207 @@ msgstr "Multimedija - Prženje CDa"
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
-#~ msgid "About"
-#~ msgstr "O programu"
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "fsck nije uspio, izlazni kod %d ili signal %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identifikacija grafičke karte: %s\n"
-#~ msgid " Help "
-#~ msgstr " Pomoć "
+#~ msgid "Choose options for server"
+#~ msgstr "Izaberite opcije za server"
-#~ msgid "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-*,*-r-*"
-#~ msgstr "-adobe-utopia-medium-r-normal-*-12-*-*-*-p-*-iso8859-2,*-r-*"
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor nije konfigurisan"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafička karta još uvijek nije konfigurisana"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Rezolucije još nisu odabrane"
#~ msgid ""
-#~ "Can't access kernel modules corresponding to your kernel (file %s is "
-#~ "missing)"
+#~ "\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Ne mogu pristupiti kernel modulima koji odgovaraju vašem kernelu "
-#~ "(nedostaje datoteka %s)"
+#~ "\n"
+#~ "probajte izmjeniti neke parametre"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Došlo je do greške"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Napuštam za %d sekundi"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Da li je ovo ispravna vrijednost?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Došlo je do greške, probajte izmjeniti neke parametre"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Prikaži sve"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Pripremam X-Window konfiguraciju"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Šta želite učiniti?"
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
+#~ msgid "Change Monitor"
+#~ msgstr "Izmjena Monitora"
-#~ msgid "None"
-#~ msgstr "Nijedan"
+#~ msgid "Change Graphics card"
+#~ msgstr "Izmjena Grafičke kartice"
-#~ msgid "Choose a default printer!"
-#~ msgstr "Izaberite default štampač!"
+#~ msgid "Change Server options"
+#~ msgstr "Izmjena Server opcija"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Izmjena Rezolucije"
+
+#~ msgid "Show information"
+#~ msgstr "Prikaži informacije"
+
+#~ msgid "Test again"
+#~ msgstr "Testiraj ponovo"
#~ msgid ""
-#~ "With remote CUPS servers, you do not have to configure any printer here; "
-#~ "CUPS servers inform your machine automatically about their printers. All "
-#~ "printers known to your machine currently are listed in the \"Default "
-#~ "printer\" field. Choose the default printer for your machine there and "
-#~ "click the \"Apply/Re-read printers\" button. Click the same button to "
-#~ "refresh the list (it can take up to 30 seconds after the start of CUPS "
-#~ "until all remote printers are visible). When your CUPS server is in a "
-#~ "different network, you have to give the CUPS server IP address and "
-#~ "optionally the port number to get the printer information from the "
-#~ "server, otherwise leave these fields blank."
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
#~ msgstr ""
-#~ "Sa udaljenim CUPS serverom, ne morate podešavati nijedan\n"
-#~ "štampač ovdje; CUPS serveri obavještavaju vaš računar automatski\n"
-#~ "o svojim štampačima. Svi štampači koji su trenutno poznati vašem\n"
-#~ "računaru su izlistani u polju \"Podrazumjevani štampač\". Izaberite "
-#~ "podrazumjevani\n"
-#~ "štampač za vaš računar ovdje i kliknite na dugme \"Primjeni/Ponovo\n"
-#~ "pročitaj štampače\". Kliknite na isto dugme za osvježavanje liste (može\n"
-#~ "trajati do 30 sekundi nakon pokretanja CUPSa dok svi udaljeni štampači\n"
-#~ "ne postanu vidljivi). Kada je vaš CUPS server u različitoj mreži, morate "
-#~ "dati\n"
-#~ "IP adresu CUPS servera i eventualno broj porta kako bi se dobavile "
-#~ "informacije\n"
-#~ "o štampačima sa servera, inače ostavite ova polja praznim."
-
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Primjeni/Ponovo pročitaj štampače"
-
-#~ msgid "Configure printing system"
-#~ msgstr "Podešavanje sistema štampe"
+#~ "Vaš HP višenamjenski uređaj je automatski konfigurisan kako bi mogao "
+#~ "skenirati. Sada možete skenirati sa komandne linije pomoću komande \"ptal-"
+#~ "hp %s scan ...\". Skeniranje putem grafičkog interfejsa ili iz GIMPa još "
+#~ "nije podržano za vaš uređaj. Više informacija možete naći u datoteci\"/"
+#~ "usr/share/doc/hpoj-0.8/ptal-hp-scan.html\" na vašem računaru. Ako imate "
+#~ "HP LaserJet 1100 ili 1200, možete skenirati samo ako ste instalirali "
+#~ "opciju za skeniranje.\n"
+#~ "\n"
+#~ "Nemojte koristiti \"scannerdrake\" za ovaj uređaj!"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Koristi hard disk sa demonom"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Koristi FTP sa demonom"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Lista paketa za instalaciju"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
+
+#~ msgid "Setting security level"
+#~ msgstr "Podešavanje nivoa sigurnosti"
+
+#~ msgid "Graphics card"
+#~ msgstr "Grafička karta"
+
+#~ msgid "Select a graphics card"
+#~ msgstr "Izaberite grafičku kartu"
+
+#~ msgid "Choose a X driver"
+#~ msgstr "Izaberite X drajver"
+
+#~ msgid "X driver"
+#~ msgstr "X drajver"
+
+#~ msgid "Warning: testing this graphics card may freeze your computer"
+#~ msgstr "Upozorenje: testiranje ove grafičke karte može zalediti računar"
+
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "Standardna VGA, 640x480 na 60 Hz"
+
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 na 56 Hz"
+
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "8514 Kompatibilna, 1024x768 na 87 Hz sa preplitanjem (bez 800x600)"
+
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 na 87 Hz sa preplitanjem, 800x600 na 56 Hz"
+
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Extended Super VGA, 800x600 na 60 Hz, 640x480 na 72 Hz"
+
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "Non-Interlaced SVGA, 1024x768 na 60 Hz, 800x600 na 72 Hz"
+
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "High Frequency SVGA, 1024x768 na 70 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-frequency koja može postići 1280x1024 na 60 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-frequency koja može postići 1280x1024 na 74 Hz"
+
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-frequency koja može postići 1280x1024 na 76 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor koji može postići 1600x1200 na 70 Hz"
+
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor koji može postići 1600x1200 na 76 Hz"
+
+#~ msgid ""
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
+#~ msgstr "Ukupna veličina grupa koje ste izabrali je otprilike %d MB.\n"
+
+#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
+#~ msgstr ""
+#~ "Ako želite da instalirate manje od ove veličine,\n"
+#~ "izaberite procenat paketa koje želite instalirati.\n"
+#~ "\n"
+#~ "Nizak procenat će instalirati samo one najbitnije pakete;\n"
+#~ "procenat 100%% će instalirati sve izabrane pakete."
+
+#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
+#~ "\n"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
+#~ msgstr ""
+#~ "Na disku imate mjesta samo za %d%% ovih paketa.\n"
+#~ "\n"
+#~ "Ako želite da instalirate manje od ovoga,\n"
+#~ "izaberite procenat paketa koje želite da instalirate.\n"
+#~ "Nizak procenat će instalirati samo one najbitnije pakete;\n"
+#~ "procenat %d%% će instalirati najveći mogući broj paketa."
+
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr ""
+#~ "Na idućem koraku ćete biti u mogućnosti da ih izaberete nešto preciznije."
+
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Procenat paketa za instalaciju"
+
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Izaberite nivo sigurnosti"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 0663d463f..a28b6db58 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -1,37 +1,67 @@
-# drakX translation to Catalan
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (c) 1999 MandrakeSoft
-# Copyright (c) 1999-2001 Softcatal
+# drakbootdisk translation to Catalan.
+# Copyright (C) 2000 Free Software Foundation, Inc.
+# Softcatala, linux@softcatala.org, 2000-2001
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2001-04-10 23:29+0200\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2001-10-28 01:14+0200\n"
"Last-Translator: Softcatal <traddrake@softcatala.org>\n"
-"Language-Team: Catalan\n"
+"Language-Team: Catalan <info@softcatala.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Configura tots els capals independentment"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Utilitza l'extensi Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Configura noms la targeta \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB o ms"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Escolliu un servidor X"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Servidor X"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Configuraci Multi-head"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -39,43 +69,44 @@ msgstr ""
"El vostre sistema permet l's d'una configuraci de mltiples capals.\n"
"Qu voleu fer?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Targeta grfica"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Seleccioneu la mida de memria de la vostra targeta grfica"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Seleccioneu una targeta grfica"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Configuraci de l'XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Escolliu un servidor X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Quina configuraci de l'XFree voleu tenir?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Configura tots els capals independentment"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "Choose a X driver"
-msgstr "Escolliu un servidor X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Utilitza l'extensi Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-#, fuzzy
-msgid "X driver"
-msgstr "Servidor X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Configura noms la targeta \"%s\" (%s)"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Quina configuraci de l'XFree voleu tenir?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "Xfree %s amb acceleraci 3D de maquinari"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,34 +116,18 @@ msgstr ""
"l'Xfree %s.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"La vostra targeta pot tenir acceleraci 3D de maquinari amb l'Xfree %s."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "Xfree %s amb acceleraci 3D de maquinari"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"La vostra targeta pot tenir acceleraci 3D de maquinari amb l'Xfree %s,\n"
-"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
-"PENJAR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s amb acceleraci 3D de maquinari EXPERIMENTAL"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -125,31 +140,58 @@ msgstr ""
"PENJAR.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfigurator.pm_.c:417
-msgid "Xpmac (installation display driver)"
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
+"La vostra targeta pot tenir acceleraci 3D de maquinari amb l'Xfree %s,\n"
+"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
+"PENJAR."
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Configuraci de l'XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Seleccioneu la mida de memria de la vostra targeta grfica"
+#: ../../Xconfig/card.pm_.c:445
+msgid "Xpmac (installation display driver)"
+msgstr ""
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Escolliu les opcions per al servidor"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Voleu conservar els canvis?La configuraci actual s:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Escolliu un monitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Personalitzada"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "General"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Desfs"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -172,516 +214,328 @@ msgstr ""
"el podreu fer malb.\n"
"En cas de dubte, sigueu conservador amb aquest parmetre."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Velocitat de refresc horitzontal"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Velocitat de refresc vertical"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "El monitor no est configurat"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "La targeta grfica encara no est configurada"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Encara no s'han escollit les resolucions"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Voleu comprovar la configuraci?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr ""
-"Avs: la comprovaci d'aquesta targeta grfica pot penjar-vos l'ordinador"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Comprova la configuraci"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 colors (8 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"intenteu canviar alguns parmetres"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32.768 colors (15 bits)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "S'ha produt un error:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65.536 colors (16 bits)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Sortida en %d segons"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milions de colors (24 bits)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "s aquest el parmetre corrcte?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4.294 milions de colors (32 bits)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "S'ha produt un error, intenteu canviar alguns parmetres"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Resolucions"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Resoluci"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Escolliu la resoluci i la profunditat de color"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Targeta grfica: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Servidor xFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Ms"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Cancella"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "D'acord"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Mode expert"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Mostra'ls tots"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Voleu comprovar la configuraci?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Resolucions"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Comprova la configuraci"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Disposici del teclat: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipus de ratol: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositiu del ratol: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Sincronitzaci horitzontal del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Refresc vertical del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
-msgstr "Targeta grfica: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1516
-#, fuzzy, c-format
-msgid "Graphic card identification: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Targeta grfica: %s\n"
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Memria grfica: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Profunditat del color: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Resoluci: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servidor xFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Controlador de l'xFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "S'est preparant la configuraci de l'X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Qu voleu fer?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Canvia el monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Canvia la targeta grfica"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Canvia les opcions del servidor"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Canvia la resoluci"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Mostra la informaci"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Torna-ho a comprovar"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Surt"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Voleu conservar els canvis?La configuraci actual s:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X a l'inici"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Puc configurar el vostre ordinador de manera que executi X automticament "
"durant l'arrencada.\n"
"Voleu que X s'inici quan torneu a arrencar l'ordinador?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-Enrere"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 colors (8 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32.768 colors (15 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65.536 colors (16 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milions de colors (24 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4.294 milions de colors (32 bits)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-#, fuzzy
-msgid "16 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-#, fuzzy
-msgid "32 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-#, fuzzy
-msgid "64 MB or more"
-msgstr "16 MB o ms"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA estndard, 640x480 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Compatible 8514, 1024x768 a 87 Hz entrellaada (no 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 a 87 Hz entrellaada, 800x600 a 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Super VGA ampliada, 800x600 a 60 Hz, 640x480 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA no entrellaada, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA d'alta freqncia, 1024x768 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multi-freqncia que pot fer 1280x1024 a 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multi-freqncia que pot fer 1280x1024 a 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multi-freqncia que pot fer 1280x1024 a 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor que pot fer 1600x1200 a 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor que pot fer 1600x1200 a 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Primer sector de la partici d'arrencada"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Primer sector de la unitat (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Installaci del SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "On voleu installar el carregador d'arrencada?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Installaci del LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO amb men de text"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO amb men grfic"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Arrencada des de DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Opcions principals del carregador d'arrencada"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Carregador d'arrencada a utilitzar"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Installaci del carregador d'arrencada"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Dispositiu d'arrencada"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (no funciona en BIOS antics)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Compacte"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "compacte"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Mode de vdeo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Demora abans d'arrencar la imatge predeterminada"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Contrasenya"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Limita les opcions de la lnia d'ordres"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "limita"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Buida /tmp en cada arrencada"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Mida exacta de la RAM, si cal (s'han trobat %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Habilita perfils mltiples"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Introduu la mida de la RAM en Mb"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"L'opci ``Limita les opcions de la lnia d'ordres'' no t cap s sense una "
"contrasenya"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Missatge d'inicialitzaci"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Demora de firmware obert"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Temps mxim d'arrencada del nucli"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Voleu habilitar l'arrencada des de CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Voleu habilitar l'arrencada des d'OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "OS per defecte?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -690,84 +544,84 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Aquestes sn les diferents entrades.\n"
"Podeu afegir-ne algunes ms o canviar-ne les existents."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Afegeix"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Fet"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
#, fuzzy
msgid "Modify"
msgstr "Modifica el RAID"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Un altre SO (SunOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Un altre SO (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Un altre SO (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Imatge"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Arrel"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Afegeix"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Lectura-escriptura"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Taula"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "No segur"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Predeterminat"
@@ -802,53 +656,75 @@ msgstr "Aquesta etiqueta ja est en s"
# #msgid "Found %s %s interfaces"
# #msgstr "S'han trobat interfcies %2$s %1$s"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, fuzzy, c-format
msgid "Found %s %s interfaces"
msgstr "S'han trobat interfcies %2$s %1$s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "En teniu una altra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Teniu alguna interfcie %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "S"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Mira la informaci del maquinari"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "S'est installant el programa de control per a la targeta %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(mdul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+
+#: ../../any.pm_.c:703
+#, 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 ""
+"Ara podeu proporcionar les seves opcions per al mdul %s.\n"
+"Les opcions estan amb el format ``nom=valor nom2=valor2 ...''.\n"
+"Per exemple, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Opcions del mdul:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quin programa de control %s he de provar?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -865,37 +741,15 @@ msgstr ""
"cerqui al vostre ordinador la informaci que necessita? Aquesta recerca\n"
"podria blocar l'ordinador, per aix no causaria cap dany."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Exploraci automtica"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Especifica les opcions"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Ara podeu proporcionar les seves opcions per al mdul %s.\n"
-"Les opcions estan amb el format ``nom=valor nom2=valor2 ...''.\n"
-"Per exemple, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Opcions del mdul:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -904,50 +758,55 @@ msgstr ""
"Ha fallat la crrega del mdul %s.\n"
"Voleu tornar-ho a intentar amb altres parmetres?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Aquesta contrasenya s massa senzilla"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Si us plau, introduu un nom d'usuari"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"El nom d'usuari noms pot contenir lletres en minscula, nmeros, `-' i `_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Aquest nom d'usuari ja s'ha afegit"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Afegeix un usuari"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -956,32 +815,32 @@ msgstr ""
"Introduu un usuari\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Accepta l'usuari"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Nom real"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Nom d'usuari"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Entrada automtica"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -991,123 +850,103 @@ msgstr ""
"nom d'usuari.\n"
"Si no voleu utilitzar aquesta caracterstica, feu clic al bot Cancella."
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Escolliu l'usuari per omissi:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Escolliu el gestor de finestres per executar:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
#, fuzzy
msgid "Please choose a language to use."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr ""
"Podeu seleccionar altres idiomes, que quedaran disponibles desprs de la "
"installaci"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Tots"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "Allow all users"
msgstr "Afegeix un usuari"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Personalitzada"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
#, fuzzy
msgid "No sharing"
msgstr "S'est iniciant el CUPS"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, fuzzy, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Quins paquets voleu installar"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Cancella"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Benvinguts, crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Estndard"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Alt"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
#, fuzzy
msgid "Higher"
msgstr "Alt"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoic"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1118,7 +957,7 @@ msgstr ""
"d'utilitzar, per tamb molt sensible: no s'ha d'utilitzar en un ordinador\n"
"connectat a d'altres o a Internet. No s'hi accedeix mitjanant contrasenya."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1126,7 +965,7 @@ msgstr ""
"Ara, la contrasenya est habilitada, per l's com a ordinador de xarxa "
"segueix sense ser recomanable."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1136,62 +975,63 @@ msgstr ""
"s'utilitzar per connectar-se a Internet com a client. Ara hi ha "
"comprovacions de seguretat."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
#, fuzzy
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Amb aquest nivell de seguretat, la utilitzaci d'aquest sistema com a\n"
"servidor esdev possible.\n"
"La seguretat s ara prou alta com per utilitzar el sistema com a servidor\n"
"que accepti connexions de molts clients. "
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
#, fuzzy
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Assumim les caracterstiques del nivell 4, per ara el sistema est\n"
"totalment tancat.\n"
"Les caracterstiques de seguretat estan al mxim."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Escolliu el nivell de seguretat"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
#, fuzzy
msgid "Security level"
msgstr "S'est establint el nivell de seguretat"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Escolliu les opcions per al servidor"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1216,13 +1056,13 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Benvingut al GRUB, el selector de sistema operatiu!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1230,39 +1070,39 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Premeu Intro per arrencar el SO seleccionat, 'e' per editar les"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "ordres prvies a l'arrencada, o 'c' per obtenir una lnia d'ordres."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La posici ressaltada arrencar automticament dintre de %d segons."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "no hi ha prou espai a /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Escriptori"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Men Inici"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "On voleu installar el carregador d'arrencada?"
@@ -1275,15 +1115,19 @@ msgstr "encara no s'ha implementat cap ajuda.\n"
msgid "Boot Style Configuration"
msgstr "Configuraci del tipus d'arrencada"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Fitxer"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Fitxer/_Surt"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1318,7 +1162,7 @@ msgstr "Mode Yaboot"
#: ../../bootlook.pm_.c:104
#, fuzzy, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Benvingut a la utilitat de compartici de la connexi a Internet!\n"
@@ -1327,8 +1171,8 @@ msgstr ""
"\n"
"Feu clic a Configura per executar l'auxiliar de configuraci."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Configura"
@@ -1338,7 +1182,7 @@ msgid "System mode"
msgstr "Mode de sistema"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Executa el sistema X-Window en iniciar"
#: ../../bootlook.pm_.c:148
@@ -1349,14 +1193,16 @@ msgstr "No, no vull l'entrada automtica"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "S, vull l'entrada automtica amb aquest (usuari, escriptori)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "D'acord"
@@ -1407,7 +1253,7 @@ msgstr ""
"Podeu seleccionar altres idiomes, que quedaran disponibles desprs de la "
"installaci"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Frana"
@@ -1415,7 +1261,7 @@ msgstr "Frana"
msgid "Costa Rica"
msgstr ""
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
#, fuzzy
msgid "Belgium"
msgstr "Belga"
@@ -1443,11 +1289,12 @@ msgstr "Noruec"
msgid "Sweden"
msgstr "Consulteu"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr ""
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Italy"
msgstr "Itali"
@@ -1457,7 +1304,7 @@ msgstr "Itali"
msgid "Austria"
msgstr "srie"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr ""
@@ -1465,8 +1312,8 @@ msgstr ""
msgid "Please make a backup of your data first"
msgstr "Si us plau, feu primer una cpia de seguretat de les vostres dades"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Llegiu-ho atentament!"
@@ -1479,11 +1326,12 @@ msgstr ""
"Si penseu utilitzar aboot, assegureu-vos de deixar espai lliure (amb 2.048\n"
"sectors n'hi ha prou) al comenament del disc"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Error"
@@ -1491,11 +1339,11 @@ msgstr "Error"
msgid "Wizard"
msgstr "Assistent"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Trieu una acci"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1507,150 +1355,155 @@ msgstr ""
"Suggereixo que primer en canvieu la mida\n"
"(feu-hi clic i desprs feu clic a \"Canvia la mida\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Si us plau, feu clic a una partici "
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detalls"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
#, fuzzy
msgid "Journalised FS"
msgstr "ha fallat el muntatge"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Intercanvia"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Buit"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Altres"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Tipus de sistema de fitxers"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Crea"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Tipus"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Utilitzeu ``%s'' al seu lloc"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Suprimeix"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Utilitzeu primer ``Unmount''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Desprs de canviar el tipus de la partici %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose a partition"
msgstr "Trieu una acci"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
#, fuzzy
msgid "Choose another partition"
msgstr "Crea una nova partici"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
#, fuzzy
msgid "Exit"
msgstr "Ext2"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Normal > Expert"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Expert > Normal"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Desfs"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Surt sense desar"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Voleu sortir sense desar la taula de particions?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
#, fuzzy
msgid "Do you want to save /etc/fstab modifications"
msgstr "Voleu comprovar la configuraci?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Assigna automticament"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Buida-ho tot"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Ms"
+
+#: ../../diskdrake/interactive.pm_.c:263
#, fuzzy
msgid "Hard drive information"
msgstr "Informaci del correu"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "S'utilitzen totes les particions primries"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "No puc afegir cap ms partici"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -1658,35 +1511,35 @@ msgstr ""
"Per tenir ms particions, suprimiu-ne una per poder crear una partici "
"ampliada"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
#, fuzzy
msgid "Save partition table"
msgstr "Escriu la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
#, fuzzy
msgid "Restore partition table"
msgstr "Rescata la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Rescata la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
#, fuzzy
msgid "Reload partition table"
msgstr "Rescata la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
#, fuzzy
msgid "Removable media automounting"
msgstr "Muntatge automtic del suport extrable"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Seleccioneu el fitxer"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1694,11 +1547,11 @@ msgstr ""
"La cpia de seguretat de la taula de particions no t la mateixa mida\n"
"Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Advertncia"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1706,124 +1559,131 @@ msgstr ""
"Inseriu un disquet a la unitat\n"
"Se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "S'est intentant rescatar la taula de particions"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
#, fuzzy
msgid "Detailed information"
msgstr "Informaci del correu"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Punt de muntatge"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Opcions"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Canvia la mida"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Mou"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formata"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Munta"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Afegeix al RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Afegeix al LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Desmunta"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Elimina del RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Elimina del LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Modifica el RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Utilitza per a loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Crea una nova partici"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "sector d'inici: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Mida en MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Tipus de sistema de fitxers: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Punt de muntatge: "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Preferncia: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
#, fuzzy
msgid "Remove the loopback file?"
msgstr "S'est formatant el fitxer de loopback %s"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Canvia el tipus de partici"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Quin sistema de fitxers voleu?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "On voleu muntar el fitxer de loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "On voleu muntar el dispositiu %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1831,129 +1691,134 @@ msgstr ""
"No es pot anullar el punt de muntatge, perqu aquesta partici\n"
"s'utilitza per al loopback. Elimineu primer el loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "S'estan calculant els lmits del sistema de fitxers de la FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "S'est canviant la mida"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "No es pot canviar la mida d'aquesta partici"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Cal fer una cpia de seguretat de totes les dades d'aquesta partici"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Desprs de canviar la mida de la partici %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Escolliu la nova mida"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
#, fuzzy
msgid "New size in MB: "
msgstr "Mida en MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "A quin disc us voleu desplaar?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "A quin sector us voleu desplaar?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "S'est desplaant"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "S'est desplaant la partici..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Escolliu un RAID existent al qual afegir"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nou"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Escolliu un LVM existent al qual afegir"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Nom LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Aquesta partici no es pot utilitzar per al loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nom del fitxer de loopback: "
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
#, fuzzy
msgid "Give a file name"
msgstr "Nom real"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Un altre loopback ja est utilitzant el fitxer, escolliu-ne un altre"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "El fitxer ja existeix. El voleu utilitzar?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
#, fuzzy
msgid "Mount options"
msgstr "Opcions del mdul:"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "dispositiu"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "nivell"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "mida del tros"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Aneu amb compte: aquesta operaci s perillosa."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Quin tipus de particionament?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Quins paquets voleu installar"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1965,7 +1830,7 @@ msgstr ""
"O esteu utilitzant LILO, i no funcionar, o no l'esteu utilitzant i no "
"necessiteu el /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1978,7 +1843,7 @@ msgstr ""
"Si teniu previst utilitzar el gestor d'arrencada LILO, penseu d'afegir una "
"partici /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1989,138 +1854,138 @@ msgstr ""
"boot.\n"
"Per tant, assegureu-vos d'afegir una partici /boot"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La taula de particions de la unitat %s s'escriur al disc!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Us caldr tornar a arrencar per tal que les modificacions tinguin efecte"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Desprs de formatar la partici %s, se'n perdran totes les dades"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "S'est formatant"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "S'est formatant el fitxer de loopback %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "S'est formatant la partici %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Hide files"
msgstr "l'mkraid ha fallit"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
#, fuzzy
msgid "Move files to the new partition"
msgstr "No hi ha prou espai lliure per assignar noves particions"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
#, fuzzy
msgid "Moving files to the new partition"
msgstr "No hi ha prou espai lliure per assignar noves particions"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, fuzzy, c-format
msgid "Removing %s"
msgstr "Resoluci: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Dispositiu: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lletra d'unitat del DOS: %s (noms s una suposici)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Tipus: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Nom: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Inici: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Mida: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sectors"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, fuzzy, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindre %d a cilindre %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Formatat\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Sense formatar\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Muntat\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, fuzzy, c-format
msgid ""
"Loopback file(s):\n"
" %s\n"
msgstr "Fitxer(s) de loopback: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2128,27 +1993,27 @@ msgstr ""
"La partici s'ha arrencat per defecte\n"
" (per a l'arrencada de l'MS-DOS, no per a LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Nivell %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Mida del tros %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discs RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Nom del fitxer de loopback: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2160,7 +2025,7 @@ msgstr ""
"una partici de programa de control;\n"
"s millor que no la toqueu.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2172,65 +2037,65 @@ msgstr ""
"especial s per arrencar\n"
"el vostre sistema en dual.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Mida: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindres, %s capals, %s sectors\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Informaci: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Discs LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipus de taula de particions: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "al bus %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Opcions: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
#, fuzzy
msgid "Filesystem encryption key"
msgstr "Tipus de sistema de fitxers: "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, fuzzy, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Aquesta contrasenya s massa senzilla (ha de tenir com a mnim %d carcters)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
#, fuzzy
msgid "The encryption keys do not match"
msgstr "Les contrasenyes no coincideixen"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr ""
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr ""
@@ -2241,36 +2106,66 @@ msgstr "Canvia el tipus de partici"
#: ../../diskdrake/removable_gtk.pm_.c:28
#, fuzzy
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Si us plau, feu clic a una partici "
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Autenticaci"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Internet"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Nom d'usuari"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Nom d'usuari"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Domini del NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
#, fuzzy
msgid "Search servers"
msgstr "servidor DNS"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatatge de %s ha fallat"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "no s com formatar %s amb el tipus %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr ""
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "s'ha produt un error en muntar %s: %s"
@@ -2287,70 +2182,323 @@ msgstr ""
msgid "server"
msgstr "servidor"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "No podeu utilitzar el JFS per a particions inferiors a 16 MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "No podeu utilitzar el ReiserFS per a particions inferiors a 32 MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Els punts de muntatge han de comenar amb una /"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ja hi ha una partici amb el punt de muntatge %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "No podeu utilitzar un volum lgic LVM per al punt de muntatge %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Aquest directori s'ha de mantenir dins del sistema de fitxers de root"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Necessiteu un sistema de fitxers real (ext2, reiserfs) per a aquest punt de "
"muntatge\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, fuzzy, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "No podeu utilitzar un volum lgic LVM per al punt de muntatge %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
#, fuzzy
msgid "Not enough free space for auto-allocating"
msgstr "No hi ha prou espai per a l'assignaci automtica"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr ""
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "S'ha produt un error en obrir %s per escriure: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"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 ""
"S'ha produt un error: no s'han trobat dispositius vlids on crear nous "
"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
"problema"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "No teniu cap partici!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Utilitza la detecci automtica"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "General"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Targeta de memria (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "s'est formatant"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Canvia el tipus de partici"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Surt"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Ajuda"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Ajuda"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Ajuda/_Quant a.."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Mdul"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Targeta de memria (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Cancella"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Mdul"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Descripci"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Autenticaci"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Seleccioneu el fitxer"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Dispositiu de la passarella"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 botons"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Detecci del disc dur"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Mira la informaci del maquinari"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Mostra la informaci"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Configura el ratol"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "detectat al port %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Si us plau, espereu"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d segons"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "S'est llegint la base de dades de controladors CUPS..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Exploraci automtica"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2364,7 +2512,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2480,9 +2628,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2678,7 +2825,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2690,9 +2837,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2738,21 +2884,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2768,9 +2913,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Ara s quan heu de decidir en quin lloc del vostre disc dur voleu "
"installar\n"
@@ -2859,9 +3004,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3005,38 +3149,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3233,11 +3371,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3296,7 +3434,7 @@ msgstr ""
"d'installaci\n"
"tret que sapigueu qu esteu fent."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3311,7 +3449,7 @@ msgid ""
"supported keyboards."
msgstr ""
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3326,7 +3464,7 @@ msgid ""
"additional locales, click the \"OK\" button to continue."
msgstr ""
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3342,7 +3480,7 @@ msgid ""
"to \"Cancel\" and choose again."
msgstr ""
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3350,23 +3488,23 @@ msgstr ""
"Si us plau, seleccioneu el port correcte. Per exemple, el port COM1 en MS\n"
"Windows s'anomena ttyS0 en GNU/Linux."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3388,7 +3526,7 @@ msgid ""
"want to choose \"Local files\" for authentication."
msgstr ""
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3410,7 +3548,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3418,7 +3556,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3439,7 +3577,7 @@ msgid ""
"installation step."
msgstr ""
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3463,7 +3601,7 @@ msgstr ""
"operatius; en aquest cas podeu suprimir les entrades corresponents, per\n"
"aleshores us caldr un disc d'arrencada per poder-los arrencar!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3478,29 +3616,28 @@ msgstr ""
"Tret que sabeu exactament qu esteu fent, escolliu \"Primer sector\n"
"de la unitat (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3509,7 +3646,7 @@ msgid ""
"networks."
msgstr ""
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
#, fuzzy
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
@@ -3535,7 +3672,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"El DrakX intentar trobar el(s) adaptador(s) SCSI PCI. \n"
@@ -3562,7 +3699,7 @@ msgstr ""
"maquinari, del lloc web del fabricant (si teniu accs a Internet) o del\n"
"Microsoft Windows (si el teniu al sistema)."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
#, fuzzy
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
@@ -3573,9 +3710,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3587,7 +3723,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3676,7 +3812,7 @@ msgstr ""
"Aquesta opci tamb es ressaltar amb un '*' si premeu Tab per veure les\n"
"seleccions d'arrencada."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
#, fuzzy
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
@@ -3704,9 +3840,8 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
@@ -3757,10 +3892,10 @@ msgstr ""
" - OS per defecte: podeu seleccionar amb quin OS, per defecte, s'arrencar\n"
"quan la demora de l'Open Firmware venci."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -3768,12 +3903,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -3789,7 +3923,7 @@ msgid ""
"associated with it."
msgstr ""
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
@@ -3800,7 +3934,7 @@ msgstr ""
"Mandrake. Aneu amb compte, se'n perdran totes les dades i no es podran "
"recuperar."
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -3821,7 +3955,7 @@ msgstr ""
"dada\n"
"ni partici d'aquest disc."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -3829,12 +3963,12 @@ msgid ""
"Installation medium (please create a newer boot floppy)"
msgstr ""
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3849,20 +3983,20 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "No es pot utilitzar l'emissi sense un domini NIS"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inseriu un disquet formatat amb FAT a la unitat %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Aquest disquet no est formatat en FAT"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3870,7 +4004,7 @@ msgstr ""
"Per utilitzar aquesta selecci de paquets desada, arrenqueu la installaci "
"amb ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "S'ha produt un error en llegir el fitxer %s"
@@ -3900,7 +4034,7 @@ msgstr "Heu de tenir una partici d'intercanvi"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -3908,60 +4042,60 @@ msgstr ""
"\n"
"Voleu continuar igualment?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
#, fuzzy
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Heu de tenir una partici d'intercanvi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Utilitza l'espai lliure"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "No hi ha prou espai lliure per assignar noves particions"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Utilitza la partici existent"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "No existeix cap partici per utilitzar"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Utilitza la particio Windows per al loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Quina partici voleu utilitzar per al Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Escolliu les mides"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Mida de la partici arrel en MB: "
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Mida de la partici d'intercanvi en MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Utilitza l'espai lliure de la partici de Windows"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "A quina partici voleu canviar la mida?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "S'estan calculant els lmits del sistema de fitxers de Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -3970,13 +4104,16 @@ msgstr ""
"El redimensionador de la FAT no pot gestionar la vostra partici, \n"
"s'ha produt l'error segent: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"La partici de Windows est massa fragmentada; si us plau, executeu "
"``defrag'' primer"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
#, fuzzy
msgid ""
"WARNING!\n"
@@ -3999,55 +4136,55 @@ msgstr ""
"vostres dades.\n"
"Quan estigueu segur, premeu D'acord."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Quina mida voleu deixar per a la partici de Windows?"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "partici %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Ha fallat la redimensi de la FAT: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"No hi ha particions FAT a qu canviar la mida o per utilitzar-les com a "
"loopback (o no queda prou espai)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Esborra el disc complet"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Elimina el Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Teniu ms d'un disc dur; en quin voleu installar el Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
"Es perdran TOTES les particions, i les dades que contenen, de la unitat %s"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Particionament personalitzat de disc"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Utilitza l'fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
@@ -4056,11 +4193,11 @@ msgstr ""
"Ara podeu fer les particions a %s.\n"
"Quan acabeu, no oblideu desar-les utiltzant `w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "No teniu prou espai lliure a la partici de Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "No puc trobar espai per a la installaci"
@@ -4069,16 +4206,16 @@ msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"L'assistent de particionament del DrakX ha trobat les solucions segents:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ha fallat el particionament: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "S'est activant la xarxa"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "S'est desactivant la xarxa"
@@ -4090,12 +4227,12 @@ msgstr ""
"S'ha produt un error, per no s com gestionar-lo correctament.\n"
"Si continueu, s sota la vostra responsabilitat."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplica el punt de muntatge %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4107,12 +4244,12 @@ msgstr ""
"Comproveu el CD-ROM en un ordinador installat mitjanant \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Benvingut a %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
@@ -4122,9 +4259,9 @@ msgstr "No hi ha cap unitat de disquet disponible"
msgid "Entering step `%s'\n"
msgstr "S'est introduint el pas `%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4135,204 +4272,158 @@ msgstr ""
"mode text. Per fer-ho, premeu `F1' en arrencar des del CD-ROM i escriviu "
"`text'"
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Tipus d'installaci"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
#, fuzzy
msgid "Please choose one of the following classes of installation:"
msgstr "Si us plau, trieu un dels tipus d'installaci segents:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr ""
-"La mida total dels grups que heu seleccionat es d'aproximadament %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Si no voleu installar tants MB, seleccioneu el percentatge de paquets\n"
-"que voleu installar.\n"
-"\n"
-"Un percentatge baix installar noms els paquets ms importants;\n"
-"un percentatge del 100%% installar tots els paquets seleccionats."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Noms teniu prou espai al disc per a %d%% d'aquests paquets.\n"
-"\n"
-"Si en voleu installar menys, seleccioneu el percentatge de paquets\n"
-"que voleu installar.\n"
-"Un percentatge baix installar noms els paquets ms importants;\n"
-"un percentatge del %d%% installar tants paquets com sigui possible."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Podreu fer una elecci ms concreta al pas segent"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Percentatge de paquets per installar"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Selecci del grup de paquets"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Selecci individual de paquets"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Mida total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "Paquet incorrecte"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Nom: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Versi: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Mida: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Importncia: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"No podeu seleccionar aquest paquet perqu no queda prou espai per installar-"
"lo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Ara s'installaran els paquets segents"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Ara s'eliminaran els paquets segents"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "No podeu seleccionar/desseleccionar aquest paquet"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Aquest paquet s obligatori; no es pot deseleccionar"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "No podeu desseleccionar aquest paquet; ja est installat"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Aquest paquet s'ha d'actualitzar\n"
"Esteu segur que voleu desseleccionar-lo?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "No podeu desseleccionar aquest paquet; s'ha d'actualitzar"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Mostra automticament els paquets seleccionats"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Installa"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
#, fuzzy
msgid "Load/Save on floppy"
msgstr "Desa al disquet"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
#, fuzzy
msgid "Updating package selection"
msgstr "Desa la selecci de paquets"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
#, fuzzy
msgid "Minimal install"
msgstr "Desinstalla"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Escolliu els paquets que voleu installar"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "S'est installant"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "S'est estimant"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Temps restant "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "Si us plau, espereu, s'est preparant la installaci"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d paquets"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "S'est installant el paquet %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Accepta"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Rebutja"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4348,17 +4439,17 @@ msgstr ""
"Si no el teniu, premeu Cancella per no fer la installaci des d'aquest CD-"
"ROM."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Voleu seguir igualment?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "S'ha produt un error en ordenar els paquets"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "S'ha produt un error en installar els paquets"
@@ -4435,11 +4526,11 @@ msgstr "S'ha produt un error"
msgid "Do you really want to leave the installation?"
msgstr "Voleu reiniciar la xarxa"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Acord de llicncia"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4454,7 +4545,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4663,114 +4754,118 @@ msgstr ""
"Per a qualsevol tema relacionat amb aquest document, poseu-vos en\n"
"contacte amb MandrakeSoft S.A.\n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Teclat"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
#, fuzzy
msgid "Please choose your keyboard layout."
msgstr "Si us plau, selecioneu la disposici del vostre teclat."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Aquesta s la llista completa de teclats disponibles"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Quin tipus d'installaci voleu?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Installa/Actualitza"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Es tracta d'una installaci o d'una actualitzaci?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Recomanada"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade"
msgstr "Actualitza"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
#, fuzzy
msgid "Upgrade packages only"
msgstr "Desa la selecci de paquets"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
#, fuzzy
msgid "Please choose the type of your mouse."
msgstr "Si us plau, seleccioneu el vostre tipus de ratol."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Port del ratol"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"Si us plau, seleccioneu el port srie a qu est connectat el vostre ratol."
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulaci dels botons"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulaci del bot 2"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulaci del bot 3"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "S'estan configurant les targetes PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "S'est configurant l'IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "no hi ha particions disponibles"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "S'estan explorant les particions per trobar els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Escolliu els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"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 loose all the partitions?\n"
@@ -4781,7 +4876,7 @@ msgstr ""
"L'altra soluci s impedir al DrakX que modifiqui la taula de particions.\n"
"(l'error s %s)\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4789,143 +4884,146 @@ msgstr ""
"El DiskDrake no ha pogut llegir correctament la taula de particions.\n"
"Si continueu, s sota la vostra responsabilitat!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
#, fuzzy
msgid "No root partition found to perform an upgrade"
msgstr "No s'ha trobat cap partici arrel"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Partici arrel"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Quina s la partici arrel (/) del vostre sistema?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Us caldr tornar a arrencar per tal que les modificacions de la taula de "
"particions tinguin efecte"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Escolliu les particions que voleu formatar"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Voleu comprovar els blocs incorrectes?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "S'estan formatant les particions"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "S'est creant i formatant el fitxer %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"No hi ha prou intercanvi per completar la installaci; si us plau, afegiu-ne"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+#, fuzzy
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "S'estan cercant els paquets disponibles"
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "S'estan cercant els paquets disponibles"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "S'estan cercant els paquets a actualitzar"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+#, fuzzy
+msgid "Looking at packages already installed..."
+msgstr "No podeu desseleccionar aquest paquet; ja est installat"
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Al vostre sistema no li queda prou espai per a la installaci o "
"actualitzaci (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Completa (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Mnima (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Recomanada (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
#, fuzzy
msgid "Load from floppy"
msgstr "Restaura des del disquet"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Loading from floppy"
msgstr "Restaura des del disquet"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
#, fuzzy
msgid "Package selection"
msgstr "Selecci del grup de paquets"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
#, fuzzy
msgid "Insert a floppy containing package selection"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Desa al disquet"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
#, fuzzy
msgid "Type of install"
msgstr "Escolliu el paquet a installar"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
#, fuzzy
msgid "With X"
msgstr "Espera"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4935,16 +5033,16 @@ msgstr ""
"Si no teniu cap d'aquests CD, feu clic a Cancella.\n"
"Si noms falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM etiquetat com \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "S'est preparant la installaci"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -4953,23 +5051,23 @@ msgstr ""
"S'est installant el paquet %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Publica la configuraci de la installaci "
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Inseriu un disquet en blanc a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5034,171 +5132,202 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:926
+#: ../../install_steps_interactive.pm_.c:918
#, fuzzy
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"S'est contactant amb el mirror per obtenir la llista dels paquets "
"disponibles"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
msgstr "Escolliu un mirror al qual aconseguir els paquets"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"S'est contactant amb el mirror per obtenir la llista dels paquets "
"disponibles"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "En quina zona horria us trobeu?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "El rellotge del vostre ordinador est regulat a GMT?"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
#, fuzzy
msgid "NTP Server"
msgstr "Servidor NIS"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Servidor CUPS remot"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Cap impressora"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "En teniu una altra?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resum"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "Ratol"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "Zona horria"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Impressora"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "Targeta XDSI"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Targeta de so"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "Targeta de TV"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "NIS"
msgstr "Utilitza el NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+#, fuzzy
+msgid "Windows PDC"
+msgstr "Elimina el Windows(TM)"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Local files"
msgstr "Impressora local"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasenya de 'root'"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Sense contrasenya"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Aquesta contrasenya s massa senzilla (ha de tenir com a mnim %d carcters)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticaci"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autenticaci"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "LDAP Server"
msgstr "Servidor"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS d'autenticaci"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "Domini del NIS"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+#, fuzzy
+msgid "Authentication Windows PDC"
+msgstr "Autenticaci"
+
+#: ../../install_steps_interactive.pm_.c:1139
+#, fuzzy
+msgid "Windows Domain"
+msgstr "Domini del NIS"
+
+#: ../../install_steps_interactive.pm_.c:1140
+#, fuzzy
+msgid "PDC Server Name"
+msgstr "Servidor NIS"
+
+#: ../../install_steps_interactive.pm_.c:1142
+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"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5228,19 +5357,19 @@ msgstr ""
"Si voleu crear un disc d'arrencada per al vostre sistema, inseriu un disquet "
"a la primera unitat i premeu \"D'acord\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "Primera unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "Segona unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Omet"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5268,7 +5397,7 @@ msgstr ""
"sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5277,30 +5406,30 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Escolliu la unitat de disquet que voleu utilitzar per crear el disc "
"d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "S'est creant el disc d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "S'est preparant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5308,11 +5437,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Voleu utilitzar l'aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5321,18 +5450,18 @@ msgstr ""
"voleu intentar igualment la installaci encara que aix destrueixi la "
"primera partici?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
#, fuzzy
msgid "Installing bootloader"
msgstr "Installa el LILO"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Ha fallat la installaci del carregador d'arrencada. S'ha produt l'error "
"segent:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, fuzzy, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5350,18 +5479,17 @@ msgstr ""
" Desprs, escriviu: shut-down\n"
"En l'arrencada segent heu de veure l'indicador del carregador d'arrencada."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inseriu un disquet en blanc a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "S'est creant el diquet d'installaci automtica"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5371,7 +5499,8 @@ msgstr ""
"\n"
"Segur que voleu sortir ara?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5382,7 +5511,7 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
@@ -5396,18 +5525,22 @@ msgstr ""
"Mandrake Linux a la fe d'errates que hi ha a \n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"La informaci sobre com configurar el vostre sistema est disponible a\n"
"l'ltim captol d'installaci de la Guia Oficial de l'Usuari del\n"
"Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Genera un disquet per a la installaci automtica"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5422,15 +5555,15 @@ msgstr ""
"\n"
"Potser preferireu repetir la installaci.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automtica"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Repeteix"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Desa la selecci de paquets"
@@ -5458,421 +5591,405 @@ msgstr ""
msgid "Choose a file"
msgstr "Trieu una acci"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Avanat"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr ""
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Si us plau, espereu"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informaci"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Expandeix l'arbre"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Redueix l'arbre"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Commuta entre pla i ordenat per grups"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "Elecci incorrecta, torneu-ho a intentar\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "La vostra elecci? (predeterminat %s)"
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, fuzzy, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "La vostra elecci? (predeterminat %s)"
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, fuzzy, c-format
msgid "Button `%s': %s"
msgstr "Opcions: %s"
-#: ../../interactive_stdio.pm_.c:94
+#: ../../interactive/stdio.pm_.c:94
#, fuzzy
-msgid "Do you want to click on this button? "
+msgid "Do you want to click on this button?"
msgstr "Voleu utilitzar l'aboot?"
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr ""
+
+#: ../../interactive/stdio.pm_.c:103
#, fuzzy, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "La vostra elecci? (predeterminat %s)"
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr ""
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
"Your choice? "
msgstr ""
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr ""
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "Txec (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Alemany"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "Espanyol"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Fins"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francs"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Noruec"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polons"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rus"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "Suec"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "Teclat RU"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "Teclat EU"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
#, fuzzy
msgid "Albanian"
msgstr "Irani"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armeni (antic)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armeni (mquina d'escriure)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armeni (fontic)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjans (llat)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
#, fuzzy
msgid "Bulgarian (phonetic)"
msgstr "Armeni (fontic)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
#, fuzzy
msgid "Bulgarian (BDS)"
msgstr "Blgar"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brasiler (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Bielors"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "Sus (disposici alemanya)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "Sus (disposici francesa)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "Txec (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Alemany (sense tecles inoperatives)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dans"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvorak (EU)"
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruec)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
#, fuzzy
msgid "Dvorak (Swedish)"
msgstr "Dvorak (EU)"
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estoni"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgi (disposici \"russa\")"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgi (disposici \"llatina\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "Grec"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Hongars"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Israeli"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Israeli (fontic)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "Irani"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islands"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Itali"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japons de 106 tecles"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Teclat core"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Espanyol sud-americ"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litu AZERTY (antic)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litu AZERTY (nou)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litu \"fila de nmeros\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litu \"fontic\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
#, fuzzy
msgid "Latvian"
msgstr "Ubicaci"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Macedoni"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holands"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polons (disposici qwerty)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polons (disposici qwertz)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugus"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Canadenc (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
#, fuzzy
msgid "Romanian (qwertz)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
#, fuzzy
msgid "Romanian (qwerty)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Eslov"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Eslovac (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Eslovac (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
#, fuzzy
msgid "Serbian (cyrillic)"
msgstr "Azerbaidjans (cirllic)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
#, fuzzy
msgid "Tamil"
msgstr "Taula"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Teclat tai"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
#, fuzzy
msgid "Tajik keyboard"
msgstr "Teclat tai"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Turc (tradicional, model \"F\")"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Turc (modern, model \"Q\")"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ucrans"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "Teclat EU (internacional)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamita \"fila numrica\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
#, fuzzy
msgid "Yugoslavian (latin)"
msgstr "Iugoslau (llat/cirllic)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr ""
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr ""
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr ""
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr ""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr ""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr ""
@@ -5885,7 +6002,31 @@ msgstr "Muntatges circulars %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Elimineu primer els volums lgics\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+#, fuzzy
+msgid "a number"
+msgstr "Nmero de telfon"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr ""
+
+#: ../../modparm.pm_.c:55
+#, fuzzy
+msgid "comma separated strings"
+msgstr "Formata les particions"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -5926,10 +6067,6 @@ msgstr "1 bot"
msgid "Generic 2 Button Mouse"
msgstr "Generic 2 Button Mouse"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "General"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "De bola"
@@ -5994,38 +6131,54 @@ msgstr "cap"
msgid "No mouse"
msgstr "Cap ratol"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Si us plau, comproveu el ratol."
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Per activar el ratol,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "MOVEU LA BOLA!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Fins"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Segent ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Anterior"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Aix s correcte?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Informaci"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Expandeix l'arbre"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Redueix l'arbre"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Commuta entre pla i ordenat per grups"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Connecta't a internet"
@@ -6072,7 +6225,7 @@ msgstr ""
"No s'ha detectat cap adaptador de xarxa ethernet al sistema.\n"
"No puc configurar aquest tipus de connexi."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Escolliu la interfcie de xarxa"
@@ -6087,7 +6240,7 @@ msgstr ""
msgid "no network card found"
msgstr "no s'ha trobat cap targeta de xarxa"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "S'est configurant la xarxa"
@@ -6103,15 +6256,15 @@ msgstr ""
"El nom ha de ser complet,\n"
"com ara ``mybox.mylab.myco.com''."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Nom de l'ordinador central"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Assistent de configuraci de xarxa"
@@ -6159,7 +6312,7 @@ msgstr "Configuraci de l'XDSI"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Seleccioneu el vostre provedor.\n"
" Si no s a la llista, seleccioneu No s a la llista"
@@ -6182,14 +6335,14 @@ msgstr "Resta del mn"
#: ../../network/isdn.pm_.c:185
#, fuzzy
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Resta del mn \n"
" cap canal D (lnies llogades)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Quin protocol voleu utilitzar?"
#: ../../network/isdn.pm_.c:199
@@ -6213,7 +6366,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Si teniu una targeta ISA, els valors de la pantalla segent han de ser "
@@ -6230,13 +6384,13 @@ msgid "Continue"
msgstr "Continua"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Quina targeta XDSI teniu ?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"He detectat una targeta PCI XDSI, per no en conec el tipus. Si us plau, "
"seleccioneu una targeta PCI a la pantalla segent."
@@ -6256,47 +6410,47 @@ msgstr ""
msgid "Dialup options"
msgstr "Opcions de marcatge"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Nom de la connexi"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Nmero de telfon"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "ID d'entrada"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Basat en script"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Basat en terminal"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Nom de domini"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Primer servidor DNS (opcional)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Segon servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6304,7 +6458,7 @@ msgstr ""
"\n"
"Podeu desconnectar-vos o tornar a configurar la connexi."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6312,11 +6466,11 @@ msgstr ""
"\n"
"Podeu tornar a configurar la connexi."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "Ara mateix esteu connectat a Internet."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6324,35 +6478,35 @@ msgstr ""
"\n"
"Podeu connectar-vos a Internet o tornar a configurar la connexi."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "Ara mateix no esteu connectat a Internet."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Connecta"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Desconnecta"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
#, fuzzy
msgid "Configure the connection"
msgstr "Configura una connexi per cable"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Connexi i configuraci d'Internet"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Podeu desconnectar-vos o tornar a configurar la connexi."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, fuzzy, c-format
msgid ""
"\n"
@@ -6366,12 +6520,12 @@ msgstr ""
"\n"
"Podeu desconnectar-vos o tornar a configurar la connexi."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuraci de xarxa"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6383,9 +6537,9 @@ msgstr ""
"Feu clic a D'acord per conservar la configuraci, o a Cancella per tornar a "
"configurar la connexi a Internet i xarxa.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6396,93 +6550,99 @@ msgstr ""
"Si no voleu utilitzar la detecci automtica, desactiveu el quadre de "
"verificaci.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Escolliu el perfil per configurar"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Utilitza la detecci automtica"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Mode expert"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "S'estan detectant els dispositius..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Connexi normal per mdem"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detectat al port %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "Connexi XDSI"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "s'ha detectat %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, fuzzy
msgid "ADSL connection"
msgstr "Connexi LAN"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detectat a la interfcie %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Connexi de cable"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "cable connection detected"
msgstr "Connexi de cable"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Connexi LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "s'han detectat una o diverses targetes Ethernet"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Escolliu l'eina que voleu utilitzar "
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
#, fuzzy
msgid "Internet connection"
msgstr "Connexi a Internet compartida"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Voleu iniciar la connexi en arrencar?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Configuraci de xarxa"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6493,7 +6653,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6503,7 +6663,7 @@ msgstr ""
"\n"
"Ara s'aplicar la configuraci al sistema.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6511,16 +6671,16 @@ msgstr ""
"Desprs d'aix, s recomanable que reinicieu l'entorn X per\n"
"evitar problemes deguts al canvi de nom de l'ordinador central."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6529,7 +6689,7 @@ msgstr ""
"Noms cal que accepteu mantenir-lo configurat.\n"
"Si modifiqueu els camps inferiors, sobreescriureu aquesta configuraci."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6539,38 +6699,43 @@ msgstr ""
"S'ha d'introduir cada element com a una adrea IP amb notaci decimal amb\n"
"punts (per exemple, 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "S'est configurant el dispositiu de xarxa %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (programa de control %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "Adrea IP"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Submscara de la xarxa"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "IP automtic"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+#, fuzzy
+msgid "Start at boot"
+msgstr "Iniciat en l'arrencada"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "L'adrea IP ha d'estar amb el format 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6582,64 +6747,64 @@ msgstr ""
"``mybox.mylab.myco.com''.\n"
"Tamb podeu introduir l'adrea IP de la passarella, si en teniu una"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "servidor DNS"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Dispositiu de la passarella"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Configuraci dels proxys"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "El proxy ha de ser http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "El proxy ha de ser ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Configuraci d'Internet"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Voleu intentar connectar-vos a Internet ara?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "S'est comprovant la vostra conexi..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Ara, el sistema est connectat a Internet."
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Per raons de seguretat, ara es desconnectar."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6647,114 +6812,119 @@ msgstr ""
"No sembla que el sistema estigui connectat a Internet.\n"
"Intenteu tornar a configurar la connexi."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Configuraci de la connexi"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Si us plau, ompliu o marqueu el camp inferior"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "Targeta IRQ"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "Targeta de memria (DMA)"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "Targeta d'E/S"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "Targeta d'E/S_0"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "Targeta d'E/S_1"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "El vostre telfon particular"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
msgstr "Nom del provedor (p.ex. proveidor.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Nmero de telfon del provedor"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS 1 del provedor (opcional)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS 2 del provedor (opcional)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
#, fuzzy
msgid "Choose your country"
msgstr "Escolliu el vostre teclat"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Mode de marcatge"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
#, fuzzy
msgid "Connection speed"
msgstr "Tipus de connexi: "
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
#, fuzzy
msgid "Connection timeout (in sec)"
msgstr "Tipus de connexi: "
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "Entrada del compte (nom d'usuari)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Contrasenya del compte"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr ""
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "ha fallat el muntatge: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Aquesta plataforma no suporta particions esteses"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Hi ha un forat a la vostra taula de particions, per no puc utilitzar-lo.\n"
"L'nica soluci s moure les particions primries per fer que el forat quedi "
"contigu a les particions ampliades"
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ha fallat la restauraci del fitxer %s: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "S'ha produt un error en escriure al fitxer %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -6764,193 +6934,193 @@ msgstr ""
"Ha fallat una comprovaci de la integritat de les dades. \n"
"Aix vol dir que qualsevol cosa que s'escrigui al disc acabar feta malb"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "ha de tenir"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "important"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "molt bonic"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "bonic"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "potser"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr ""
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
msgstr ""
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr ""
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr ""
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr ""
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
msgstr ""
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr ""
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr ""
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Impressora local"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Impressora remota"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
#, fuzzy
msgid "Printer on remote CUPS server"
msgstr "Servidor CUPS remot"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
#, fuzzy
msgid "Printer on remote lpd server"
msgstr "Servidor lpd remot"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Impressora de xarxa (TCP/scol)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
#, fuzzy
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
#, fuzzy
msgid "Printer on NetWare server"
msgstr "Servidor de la impressora"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
#, fuzzy
msgid "Enter a printer device URI"
msgstr "Dispositiu URI d'impressora"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr ""
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr ""
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
#, fuzzy
msgid "Local Printers"
msgstr "Impressora local"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
#, fuzzy
msgid "Remote Printers"
msgstr "Impressora remota"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ""
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ""
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ""
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ""
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, fuzzy, c-format
msgid ", printing to %s"
msgstr "S'ha produt un error en escriure al fitxer %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ""
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr ""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr ""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ""
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr ""
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, fuzzy, c-format
msgid "(on %s)"
msgstr "(mdul %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr ""
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, fuzzy, c-format
msgid "On CUPS server \"%s\""
msgstr "IP del servidor CUPS"
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Predeterminat)"
@@ -6973,12 +7143,12 @@ msgstr ""
"impressora; les impressores es detectaran automticament.\n"
"En cas de dubte, seleccioneu \"Servidor CUPS remot\"."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
#, fuzzy
msgid "CUPS configuration"
msgstr "Configuraci de la LAN"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
#, fuzzy
msgid "Specify CUPS server"
msgstr "Servidor CUPS remot"
@@ -7009,7 +7179,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "L'adrea IP ha d'estar amb el format 1.2.3.4"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
#, fuzzy
msgid "The port number should be an integer!"
msgstr "El nmero de port ha de ser numric"
@@ -7018,7 +7188,7 @@ msgstr "El nmero de port ha de ser numric"
msgid "CUPS server IP"
msgstr "IP del servidor CUPS"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7027,22 +7197,13 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Configuraci del tipus d'arrencada"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-#, fuzzy
-msgid "Detecting devices ..."
-msgstr "S'estan detectant els dispositius..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Ports de comprovaci"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
#, fuzzy
msgid "Add a new printer"
msgstr "Cap impressora"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7055,14 +7216,14 @@ msgid ""
"connection types."
msgstr ""
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
#, fuzzy
msgid "Local Printer"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7080,12 +7241,12 @@ msgid ""
"printing on a remote printer if printerdrake does not list it automatically."
msgstr ""
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
#, fuzzy
msgid "Auto-detect printers"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7099,11 +7260,11 @@ msgid ""
"Center."
msgstr ""
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr ""
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7113,35 +7274,39 @@ msgid ""
"Do you really want to get your printers auto-detected?"
msgstr ""
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
#, fuzzy
msgid "Do auto-detection"
msgstr "Utilitza la detecci automtica"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
#, fuzzy
msgid "Set up printer manually"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Ports de comprovaci"
+
+#: ../../printerdrake.pm_.c:252
#, fuzzy, c-format
msgid "Detected %s"
msgstr "s'ha detectat %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr ""
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7149,43 +7314,43 @@ msgid ""
"printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
#, fuzzy
msgid "You must enter a device or file name!"
msgstr "Dispositiu URI d'impressora"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
#, fuzzy
msgid ""
"No local printer found!\n"
"\n"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
msgstr ""
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
msgstr ""
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7193,7 +7358,7 @@ msgid ""
"configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7201,74 +7366,84 @@ msgid ""
"customized printer configuration, turn on \"Manual configuration\"."
msgstr ""
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
#, fuzzy
msgid "Please choose the port where your printer is connected to."
msgstr ""
"Si us plau, seleccioneu el port srie al qual teniu connectat el mdem."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
#, fuzzy
msgid "You must choose/enter a printer/device!"
msgstr "Dispositiu URI d'impressora"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
#, fuzzy
msgid "Manual configuration"
msgstr "Configuraci"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
#, fuzzy
msgid "Installing HPOJ package..."
msgstr "S'est installant el paquet %s"
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr ""
-#: ../../printerdrake.pm_.c:505
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
+msgstr "S'est installant el paquet %s"
+
+#: ../../printerdrake.pm_.c:524
#, fuzzy
-msgid "Installing SANE package..."
+msgid "Installing mtools packages..."
msgstr "S'est installant el paquet %s"
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr ""
-#: ../../printerdrake.pm_.c:534
+#: ../../printerdrake.pm_.c:541
+msgid "Photo memory card access on your HP multi-function device"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:558
#, fuzzy
-msgid "Making printer port available for CUPS ..."
+msgid "Making printer port available for CUPS..."
msgstr "S'est llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
#, fuzzy
-msgid "Reading printer database ..."
+msgid "Reading printer database..."
msgstr "S'est llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Opcions de la impressora lpd remota"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
#, fuzzy
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
@@ -7278,31 +7453,31 @@ msgstr ""
"el nom de l'ordinador central del servidor de la impressora i el nom de la\n"
"cua d'aquest servidor on s'hi han de situar les tasques."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
#, fuzzy
msgid "Remote host name"
msgstr "Nom de l'ordinador central remot"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
#, fuzzy
msgid "Remote printer name"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
#, fuzzy
msgid "Remote host name missing!"
msgstr "Nom de l'ordinador central remot"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
#, fuzzy
msgid "Remote printer name missing!"
msgstr "Nom de l'ordinador central remot"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcions de la impressora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
#, fuzzy
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
@@ -7317,35 +7492,35 @@ msgstr ""
"de compartici de la impressora a qu voleu accedir i el nom d'usuari,\n"
"contrasenya i informaci de grup si sn necessaris."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Ordinador central del servidor SMB"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP del servidor SMB"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Nom de compartici"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Grup de treball"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr ""
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr ""
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7369,7 +7544,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7378,7 +7553,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7386,11 +7561,11 @@ msgid ""
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Opcions de la impressora NetWare"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
#, fuzzy
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
@@ -7405,28 +7580,28 @@ msgstr ""
"la impressora a qu voleu accedir i el nom d'usuari i contrasenya si sn\n"
"necessaris."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Servidor de la impressora"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Nom de la cua d'impressi"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr ""
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
#, fuzzy
msgid "TCP/Socket Printer Options"
msgstr "Opcions de la impressora de scol"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
#, fuzzy
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
@@ -7437,60 +7612,56 @@ msgstr ""
"Per imprimir a una impressora de scol, heu d'indicar el nom de l'ordinador\n"
"central de la impressora i, opcionalment, el nmero de port."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
#, fuzzy
msgid "Printer host name"
msgstr "Nom de l'ordinador central de la impressora"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
#, fuzzy
msgid "Printer host name missing!"
msgstr "Nom de l'ordinador central de la impressora"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "Dispositiu URI d'impressora"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr ""
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
msgstr ""
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Nom de la impressora"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Descripci"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Ubicaci"
-#: ../../printerdrake.pm_.c:1021
+#: ../../printerdrake.pm_.c:1045
#, fuzzy
-msgid "Preparing printer database ..."
+msgid "Preparing printer database..."
msgstr "S'est llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
#, fuzzy
msgid "Your printer model"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7505,28 +7676,28 @@ msgid ""
"%s"
msgstr ""
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
#, fuzzy
msgid "The model is correct"
msgstr "Aix s correcte?"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
#, fuzzy
msgid "Select model manually"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
#, fuzzy
msgid "Printer model selection"
msgstr "Connexi de la impressora"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
#, fuzzy
msgid "Which printer model do you have?"
msgstr "Quin tipus d'impressora teniu?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7535,18 +7706,18 @@ msgid ""
"standing on a wrong model or on \"Raw printer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
#, fuzzy
msgid "OKI winprinter configuration"
msgstr "Configuraci del mdem"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7556,12 +7727,12 @@ msgid ""
"not work. Your connection type setting will be ignored by the driver."
msgstr ""
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
#, fuzzy
msgid "Lexmark inkjet configuration"
msgstr "Configuraci d'Internet"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7569,7 +7740,7 @@ msgid ""
"to."
msgstr ""
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7582,7 +7753,7 @@ msgid ""
"program."
msgstr ""
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7592,34 +7763,34 @@ msgid ""
"printout quality/resolution printing can get substantially slower."
msgstr ""
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr ""
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr ""
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, fuzzy, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr "Voleu comprovar la impressi?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
#, fuzzy
msgid "Test pages"
msgstr "Ports de comprovaci"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7627,45 +7798,45 @@ msgid ""
"it is enough to print the standard test page."
msgstr ""
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
#, fuzzy
msgid "No test pages"
msgstr "S, imprimeix ambdues pgines de prova"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
#, fuzzy
msgid "Print"
msgstr "Impressora"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
#, fuzzy
msgid "Standard test page"
msgstr "Eines estndard"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
msgstr ""
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
#, fuzzy
msgid "Alternative test page (A4)"
msgstr "S'esta(n) imprimint la(es) pgina(es) de prova... "
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
#, fuzzy
msgid "Photo test page"
msgstr "S'esta(n) imprimint la(es) pgina(es) de prova... "
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
#, fuzzy
msgid "Do not print any test page"
msgstr "S'esta(n) imprimint la(es) pgina(es) de prova... "
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "S'esta(n) imprimint la(es) pgina(es) de prova... "
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, fuzzy, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7681,7 +7852,7 @@ msgstr ""
"\n"
"Funciona correctament?"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
#, fuzzy
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -7691,16 +7862,16 @@ msgstr ""
"Degut a aix, pot passar un cert temps abans no comenci la impressi.\n"
"Funciona correctament?"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr ""
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
#, fuzzy
msgid "Raw printer"
msgstr "Cap impressora"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -7709,15 +7880,15 @@ msgid ""
"to modify the option settings easily.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -7726,49 +7897,49 @@ msgid ""
"line, e. g. \"%s <file>\". "
msgstr ""
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
#, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
"because the file to print is provided by the application.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -7778,7 +7949,7 @@ msgid ""
"jams.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -7787,30 +7958,41 @@ msgid ""
"line, e. g. \"%s <file>\".\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Tanca"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "S'est desactivant la xarxa"
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, fuzzy, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "S'est desactivant la xarxa"
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "S'est desactivant la xarxa"
+
+#: ../../printerdrake.pm_.c:1777
#, fuzzy, c-format
msgid "Printing on the printer \"%s\""
msgstr "S'est desactivant la xarxa"
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Tanca"
+
+#: ../../printerdrake.pm_.c:1783
#, fuzzy
msgid "Print option list"
msgstr "Opcions de la impressora"
-#: ../../printerdrake.pm_.c:1766
+#: ../../printerdrake.pm_.c:1802
#, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
@@ -7818,38 +8000,38 @@ msgid ""
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
#, fuzzy
-msgid "Reading printer data ..."
+msgid "Reading printer data..."
msgstr "S'est llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
#, fuzzy
msgid "Transfer printer configuration"
msgstr "Configuraci d'Internet"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -7859,51 +8041,51 @@ msgid ""
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr ""
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr ""
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr ""
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -7911,64 +8093,64 @@ msgid ""
"You can also type a new name or skip this printer."
msgstr ""
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"El nom de la impressora noms pot constar de lletres, nmeros i el carcter "
"de subratllat"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
#, fuzzy
msgid "New printer name"
msgstr "Cap impressora"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr ""
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
"the default printer under the new printing system %s?"
msgstr ""
-#: ../../printerdrake.pm_.c:1887
+#: ../../printerdrake.pm_.c:1935
#, fuzzy
-msgid "Refreshing printer data ..."
+msgid "Refreshing printer data..."
msgstr "S'est llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
#, fuzzy
msgid "Configuration of a remote printer"
msgstr "Configura la impressora"
-#: ../../printerdrake.pm_.c:1896
+#: ../../printerdrake.pm_.c:1944
#, fuzzy
-msgid "Starting network ..."
+msgid "Starting network..."
msgstr "S'est comprovant la vostra conexi..."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
#, fuzzy
msgid "Configure the network now"
msgstr "Configura la xarxa"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
#, fuzzy
msgid "Network functionality not configured"
msgstr "El monitor no est configurat"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -7976,12 +8158,12 @@ msgid ""
"configuring now. How do you want to proceed?"
msgstr ""
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
#, fuzzy
msgid "Go on without configuring the network"
msgstr "S'est configurant la xarxa"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -7991,34 +8173,34 @@ msgid ""
"\"Printer\""
msgstr ""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
-#: ../../printerdrake.pm_.c:1979
+#: ../../printerdrake.pm_.c:2027
#, fuzzy
-msgid "Restarting printing system ..."
+msgid "Restarting printing system..."
msgstr "Quin sistema d'impressi voleu utilitzar?"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "high"
msgstr "Alt"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
#, fuzzy
msgid "paranoid"
msgstr "Paranoic"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr ""
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8033,12 +8215,12 @@ msgid ""
"Do you really want to configure printing on this machine?"
msgstr ""
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
#, fuzzy
msgid "Starting the printing system at boot time"
msgstr "Quin sistema d'impressi voleu utilitzar?"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8052,69 +8234,69 @@ msgid ""
"again?"
msgstr ""
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr ""
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
msgstr ""
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr ""
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
#, fuzzy
msgid "Select Printer Spooler"
msgstr "Seleccioneu la connexi de la impressora"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
#, fuzzy
msgid "Which printing system (spooler) do you want to use?"
msgstr "Quin sistema d'impressi voleu utilitzar?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, fuzzy, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Configura la impressora"
-#: ../../printerdrake.pm_.c:2252
+#: ../../printerdrake.pm_.c:2323
#, fuzzy
-msgid "Installing Foomatic ..."
+msgid "Installing Foomatic..."
msgstr "S'est installant el paquet %s"
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Opcions de la impressora"
-#: ../../printerdrake.pm_.c:2318
+#: ../../printerdrake.pm_.c:2389
#, fuzzy
-msgid "Preparing PrinterDrake ..."
+msgid "Preparing PrinterDrake..."
msgstr "S'est llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
#, fuzzy
msgid "Configuring applications..."
msgstr "Configura la impressora"
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
#, fuzzy
msgid "Would you like to configure printing?"
msgstr "Voleu configurar una impressora?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr ""
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
msgstr "Printerdrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8125,7 +8307,7 @@ msgstr ""
"Aquestes sn les cues d'impressi segents.\n"
"Podeu afegir-ne algunes ms o canviar-ne les existents."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
#, fuzzy
msgid ""
"The following printers are configured. Double-click on a printer to change "
@@ -8135,139 +8317,143 @@ msgstr ""
"Aquestes sn les cues d'impressi segents.\n"
"Podeu afegir-ne algunes ms o canviar-ne les existents."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
#, fuzzy
msgid "Change the printing system"
msgstr "Configura la xarxa"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Mode normal"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Surt"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
#, fuzzy
msgid "Do you want to configure another printer?"
msgstr "Voleu comprovar la configuraci?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
#, fuzzy
msgid "Modify printer configuration"
msgstr "Configuraci del mdem"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, fuzzy, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr "Voleu comprovar la configuraci?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr ""
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
#, fuzzy
msgid "Printer connection type"
msgstr "Connexi a Internet compartida"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
#, fuzzy
msgid "Printer name, description, location"
msgstr "Connexi de la impressora"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr ""
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr ""
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr ""
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
#, fuzzy
msgid "Print test pages"
msgstr "S'esta(n) imprimint la(es) pgina(es) de prova... "
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
#, fuzzy
msgid "Know how to use this printer"
msgstr "Voleu comprovar la configuraci?"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
#, fuzzy
msgid "Remove printer"
msgstr "Impressora remota"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, fuzzy, c-format
-msgid "Removing old printer \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
msgstr "S'est llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
#, fuzzy
msgid "Default printer"
msgstr "Impressora local"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr ""
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr ""
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr ""
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, fuzzy, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Voleu reiniciar la xarxa"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, fuzzy, c-format
-msgid "Removing printer \"%s\" ..."
+msgid "Removing printer \"%s\"..."
msgstr "S'est llegint la base de dades de controladors CUPS..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
@@ -8351,24 +8537,62 @@ msgstr "Les contrasenyes no coincideixen"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "No es pot afegir una partici a un RAID _formatat_ md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "No es pot escriure al fitxer %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "l'mkraid ha fallit"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "l'mkraid ha fallit (potser manquen eines del RAID?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "No hi ha prou particions per al nivell RAID %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+msgid ""
+"This level is to be used with care. It makes your system more easy to use,\n"
+" but very sensitive: it must not be used for a machine "
+"connected to others\n"
+" or to the Internet. There is no password access."
+msgstr ""
+"Aquest nivell s'ha d'utilitzar amb cura. Fa el vostre sistema molt ms "
+"fcil\n"
+"d'utilitzar, per tamb molt sensible: no s'ha d'utilitzar en un ordinador\n"
+"connectat a d'altres o a Internet. No s'hi accedeix mitjanant contrasenya."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"Amb aquest nivell de seguretat, la utilitzaci d'aquest sistema com a\n"
+"servidor esdev possible.\n"
+"La seguretat s ara prou alta com per utilitzar el sistema com a servidor\n"
+"que accepti connexions de molts clients. "
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+#, fuzzy
+msgid "Advanced Options"
+msgstr "Configuraci de la LAN"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Opcions"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8424,7 +8648,7 @@ msgid ""
"new/changed hardware."
msgstr ""
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
@@ -8494,7 +8718,7 @@ msgid ""
"available server."
msgstr ""
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
@@ -8570,7 +8794,7 @@ msgstr ""
"executant en ordinadors que actuen com a servidors per a protocols que\n"
"utilitzen el mecanisme RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
#, fuzzy
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
@@ -8670,7 +8894,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
#, fuzzy
msgid "System"
msgstr "Mode de sistema"
@@ -8793,6 +9017,7 @@ msgid ""
msgstr ""
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
#, fuzzy
msgid "Mandrake Control Center"
msgstr "Control Center"
@@ -8897,6 +9122,15 @@ msgstr ""
msgid "Installing packages..."
msgstr "S'est installant el paquet %s"
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-Enrere"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -8905,6 +9139,161 @@ msgstr ""
"No puc llegir la vostra taula de particions, est massa malmesa per a mi :(\n"
"Intentar seguir buidant les particions incorrectes"
+#: ../../standalone/drakTermServ_.c:189
+#, fuzzy
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Configuraci d'Internet"
+
+#: ../../standalone/drakTermServ_.c:204
+#, fuzzy
+msgid "Enable Server"
+msgstr "Servidor, base de dades"
+
+#: ../../standalone/drakTermServ_.c:211
+#, fuzzy
+msgid "Disable Server"
+msgstr "Servidor, base de dades"
+
+#: ../../standalone/drakTermServ_.c:219
+#, fuzzy
+msgid "Start Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:226
+#, fuzzy
+msgid "Stop Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:240
+#, fuzzy
+msgid "Add/Del Users"
+msgstr "Afegeix un usuari"
+
+#: ../../standalone/drakTermServ_.c:242
+#, fuzzy
+msgid "Add/Del Clients"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+#, fuzzy
+msgid "Help"
+msgstr "/_Ajuda"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:533
+#, fuzzy
+msgid "No nic selected!"
+msgstr "Sense connexi"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:550
+#, fuzzy
+msgid "<-- Delete"
+msgstr "Suprimeix"
+
+#: ../../standalone/drakTermServ_.c:557
+#, fuzzy
+msgid "Delete All NBIs"
+msgstr "Seleccioneu el fitxer"
+
+#: ../../standalone/drakTermServ_.c:619
+#, fuzzy
+msgid "Add User -->"
+msgstr "Afegeix un usuari"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:733
+#, fuzzy
+msgid "<-- Del Client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakTermServ_.c:739
+#, fuzzy
+msgid "dhcpd Config..."
+msgstr "S'est configurant..."
+
+#: ../../standalone/drakTermServ_.c:886
+#, fuzzy
+msgid "Write Config"
+msgstr "torna a configurar"
+
+#: ../../standalone/drakTermServ_.c:944
+#, fuzzy
+msgid "Please insert floppy disk:"
+msgstr "Inseriu un disquet a la unitat %s"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:953
+#, fuzzy
+msgid "No floppy drive available!"
+msgstr "No hi ha cap unitat de disquet disponible"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:964
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr ""
+
#: ../../standalone/drakautoinst_.c:45
#, fuzzy
msgid "Error!"
@@ -8946,6 +9335,11 @@ msgid ""
"will be manual"
msgstr ""
+#: ../../standalone/drakautoinst_.c:83
+#, fuzzy
+msgid "Creating auto install floppy"
+msgstr "S'est creant el diquet d'installaci automtica"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -8954,47 +9348,40 @@ msgid ""
"The parameters of the auto-install are available in the sections on the left"
msgstr ""
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Felicitats!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
msgstr ""
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
#, fuzzy
msgid "Auto Install"
msgstr "Installa"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
#, fuzzy
msgid "Add an item"
msgstr "Afegeix un usuari"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
#, fuzzy
msgid "Remove the last item"
msgstr "S'est formatant el fitxer de loopback %s"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9002,15 +9389,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9018,712 +9397,775 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
#, fuzzy
msgid "Backup User files..."
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
#, fuzzy
msgid "Backup Other files..."
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+#, fuzzy
+msgid " Error during mail sending. \n"
+msgstr "S'ha produt un error en llegir el fitxer %s"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
#, fuzzy
msgid "File Selection"
msgstr "Selecci del grup de paquets"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr ""
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Si us plau, escolliu els paquets que voleu installar"
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
#, fuzzy
msgid "Remove Selected"
msgstr "Elimina la cua"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Elimina el Windows(TM)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
#, fuzzy
msgid "Users"
msgstr "Nom d'usuari"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
-msgstr ""
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
+msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Si us plau, comproveu el ratol."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
#, fuzzy
msgid "Please enter your login"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
#, fuzzy
msgid "Please enter your password"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
#, fuzzy
msgid "Remember this password"
msgstr "Sense contrasenya"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-#, fuzzy
-msgid "FTP Connection"
-msgstr "Connexi LAN"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-#, fuzzy
-msgid "Secure Connection"
-msgstr "Seleccioneu la connexi de la impressora"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
#, fuzzy
msgid "Please choose your CD space"
msgstr "Si us plau, selecioneu la disposici del vostre teclat."
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Si us plau, feu clic a una partici "
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr ""
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
#, fuzzy
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
msgstr "Si us plau, escolliu els paquets que voleu installar"
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
#, fuzzy
msgid "Use tape to backup"
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Si us plau, escolliu els paquets que voleu installar"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
+#: ../../standalone/drakbackup_.c:1497
#, fuzzy
-msgid "Please enter the directory to save:"
+msgid "Please enter the directory to save to:"
msgstr "Si us plau, comproveu el ratol."
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
#, fuzzy
msgid "Use quota for backup files."
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
#, fuzzy
msgid "Network"
msgstr "Xarxa:"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Tipus"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
#, fuzzy
msgid "Use daemon"
msgstr "Nom d'usuari"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Si us plau, escolliu els paquets que voleu installar"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../standalone/drakbackup_.c:1327
-#, fuzzy
-msgid "Use Hard Drive with daemon"
-msgstr "Voleu utilitzar l'optimitzaci del disc dur?"
-
-#: ../../standalone/drakbackup_.c:1329
-#, fuzzy
-msgid "Use FTP with daemon"
-msgstr "Voleu utilitzar l'optimitzaci del disc dur?"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr ""
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr ""
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
#, fuzzy
msgid "What"
msgstr "Espera"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
#, fuzzy
msgid "Where"
msgstr "De bola"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
#, fuzzy
msgid "When"
msgstr "De bola"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
#, fuzzy
msgid "More Options"
msgstr "Opcions del mdul:"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Configuraci de xarxa"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Si us plau, escolliu els paquets que voleu installar"
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
#, fuzzy
msgid "across Network"
msgstr "Xarxa:"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Si us plau, escolliu els paquets que voleu installar"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
#, fuzzy
msgid "Backup system"
msgstr "Sistemes de fitxers"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Dispositiu del ratol: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1980
+#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
#, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcions"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
"- Daemon (%s) include :\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+msgid "\t-Network by rsync.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2001
+msgid "\t-Network by webdav.\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr ""
"Si us plau, seleccioneu el port srie al qual teniu connectat el mdem."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
#, fuzzy
msgid " Restore Configuration "
msgstr "Configuraci de xarxa"
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
#, fuzzy
msgid "Backup the system files before:"
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
#, fuzzy
msgid "please choose the date to restore"
msgstr "Si us plau, seleccioneu el vostre tipus de ratol."
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+#, fuzzy
+msgid "Please enter the directory to save:"
+msgstr "Si us plau, comproveu el ratol."
+
+#: ../../standalone/drakbackup_.c:2416
+#, fuzzy
+msgid "FTP Connection"
+msgstr "Connexi LAN"
+
+#: ../../standalone/drakbackup_.c:2424
+#, fuzzy
+msgid "Secure Connection"
+msgstr "Seleccioneu la connexi de la impressora"
+
+#: ../../standalone/drakbackup_.c:2451
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaura des del disquet"
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
#, fuzzy
msgid "Select another media to restore from"
msgstr "Si us plau, seleccioneu el vostre tipus de ratol."
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
#, fuzzy
msgid "Other Media"
msgstr "Altres"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
#, fuzzy
msgid "Restore system"
msgstr "Installa el sistema"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
#, fuzzy
msgid "Restore Users"
msgstr "Restaura des del fitxer"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
#, fuzzy
msgid "Restore Other"
msgstr "Restaura des del fitxer"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr ""
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
#, fuzzy
msgid "Custom Restore"
msgstr "Personalitzada"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-#, fuzzy
-msgid "Help"
-msgstr "/_Ajuda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
#, fuzzy
msgid "Previous"
msgstr "<- Anterior"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
#, fuzzy
msgid "Save"
msgstr "Estat:"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
#, fuzzy
msgid "Build Backup"
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
#, fuzzy
msgid "Restore"
msgstr "Restaura des del fitxer"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
#, fuzzy
msgid "Next"
msgstr "Text"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:2522
+#: ../../standalone/drakbackup_.c:2933
#, fuzzy
-msgid "Package List to Install"
-msgstr "Paquets a installar"
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Ara s'installaran els paquets segents"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
#, fuzzy
msgid "Please select data to restore..."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
#, fuzzy
msgid "Please select media for backup..."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
#, fuzzy
msgid "Please select data to backup..."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
#, fuzzy
msgid "Backup system files"
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
#, fuzzy
msgid "Backup user files"
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
#, fuzzy
msgid "Backup other files"
msgstr "Fitxer de cpia de seguretat incorrecte"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
#, fuzzy
msgid "Sending files..."
msgstr "Desa al fitxer"
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
msgstr ""
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
#, fuzzy
msgid "Please enter the cd writer speed"
msgstr "Si us plau, comproveu el ratol."
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
#, fuzzy
msgid "Please check if you want to include install boot on your CD."
msgstr "Si us plau, escolliu els paquets que voleu installar"
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Configuraci de xarxa"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
#, fuzzy
msgid "View Backup Configuration."
msgstr "Configuraci de xarxa"
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
#, fuzzy
msgid "Wizard Configuration"
msgstr "Configuraci de la LAN"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
#, fuzzy
msgid "Advanced Configuration"
msgstr "Configuraci de la LAN"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
#, fuzzy
msgid "Backup Now"
msgstr "Sistemes de fitxers"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -9755,7 +10197,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9764,7 +10206,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -9805,7 +10247,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -9833,12 +10275,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -9855,7 +10302,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -9895,7 +10342,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -9906,7 +10353,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -9919,7 +10366,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -9963,105 +10410,531 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Ha fallat la installaci del %s. S'ha produt l'error segent:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+#, fuzzy
+msgid "Standalone Tools"
+msgstr "Eines de consola"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:54
+#, fuzzy
+msgid "Mandrake Online"
+msgstr "Control Center"
+
+#: ../../standalone/drakbug_.c:55
+#, fuzzy
+msgid "Menudrake"
+msgstr "obligatori"
+
+#: ../../standalone/drakbug_.c:56
+#, fuzzy
+msgid "Msec"
+msgstr "Ratol"
+
+#: ../../standalone/drakbug_.c:57
+#, fuzzy
+msgid "Remote Control"
+msgstr "Impressora remota"
+
+#: ../../standalone/drakbug_.c:58
+#, fuzzy
+msgid "Software Manager"
+msgstr "Nom de compartici"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:61
+#, fuzzy
+msgid "Userdrake"
+msgstr "Printerdrake"
+
+#: ../../standalone/drakbug_.c:62
+#, fuzzy
+msgid "Configuration Wizards"
+msgstr "Assistent de configuraci de xarxa"
+
+#: ../../standalone/drakbug_.c:71
+#, fuzzy
+msgid "Application:"
+msgstr "Autenticaci"
+
+#: ../../standalone/drakbug_.c:75
+#, fuzzy
+msgid "Package: "
+msgstr "Selecci del grup de paquets"
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:83
+#, fuzzy
+msgid "Release: "
+msgstr "Si us plau, espereu"
+
+#: ../../standalone/drakbug_.c:87
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbug_.c:101
+#, fuzzy
+msgid "Not installed"
+msgstr "Surt de la installaci"
+
+#: ../../standalone/drakbug_.c:110
+#, fuzzy
+msgid "Report"
+msgstr "Port"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr ""
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Podeu seleccionar altres idiomes, que quedaran disponibles desprs de la "
+"installaci"
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Configuraci de xarxa (%d adaptadors)"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Perfil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Suprimeix el perfil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Perfil a suprimir:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Perfil nou..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Nom de l'ordinador central: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Accs a Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Tipus:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Passarella:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Intefcie:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Estat:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Configura l'accs a Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Configuraci de la LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Programa de control"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Interfcie"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protocol"
+
+#: ../../standalone/drakconnect_.c:232
+#, fuzzy
+msgid "State"
+msgstr "Estat:"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Configura la xarxa d'rea local..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Assistent..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Aplica"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "Si us plau, espereu... s'est aplicant la configuraci"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Connectat"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Sense connexi"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Connecta..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Desconnecta..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Configuraci de la LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptador %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protocol d'arrencada"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Iniciat en l'arrencada"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "activate now"
+msgstr "Actiu"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+#, fuzzy
+msgid "deactivate now"
+msgstr "Actiu"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Configuraci de la connexi a Internet"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Configuraci de la connexi a Internet"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Tipus de connexi: "
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parmetres"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Passarella"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Targeta Ethernet"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "Client DHCP"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "sintaxi: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Nom del mdul"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Mida"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "creaci de discs d'arrencada"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "predeterminat"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Error del DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "versi del nucli"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "General"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "rea d'experts"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "Arguments opcional de l'mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Afegeix un mdul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "imposa"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "si cal"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "omet els mduls SCSI"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "omet els mduls RAID"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Elimina un mdul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Sortida"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Munta el disc"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Assegureu-vos que hi ha un suport al dispositiu %s"
+
+#: ../../standalone/drakfloppy_.c:427
+#, fuzzy, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"No hi ha cap suport al dispositiu %s.\n"
+"Si us plau, inseriu-ne un."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "No es pot bifurcar: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"No es pot tancar l'mkbootdisk correctament: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr ""
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
#, fuzzy
msgid "no fonts found"
msgstr "no s'ha trobat %s"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
#, fuzzy
msgid "done"
msgstr "Fet"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr ""
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr ""
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr ""
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
#, fuzzy
msgid "Fonts copy"
msgstr "Formata el disquet"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
#, fuzzy
msgid "True Type fonts installation"
msgstr "S'est preparant la installaci"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr ""
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr ""
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr ""
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr ""
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr ""
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr ""
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
#, fuzzy
msgid "Restart XFS"
msgstr "limita"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr ""
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
#, fuzzy
msgid "xfs restart"
msgstr "limita"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10070,123 +10943,122 @@ msgid ""
"may hang up your X Server."
msgstr ""
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
#, fuzzy
msgid "Fonts Importation"
msgstr "Formata les particions"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
#, fuzzy
msgid "Uninstall Fonts"
msgstr "S'estan desinstallant els RPM"
-#: ../../standalone/drakfont_.c:568
-#, fuzzy
-msgid "Advanced Options"
-msgstr "Configuraci de la LAN"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
#, fuzzy
msgid "Font List"
msgstr "Punt de muntatge"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
#, fuzzy
msgid "Choose the applications that will support the fonts :"
msgstr "Escolliu les particions que voleu formatar"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr ""
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
#, fuzzy
msgid "StarOffice"
msgstr "Oficina"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
#, fuzzy
msgid "Abiword"
msgstr "Interromp"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
#, fuzzy
msgid "Generic Printers"
msgstr "Impressora"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr ""
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
#, fuzzy
msgid "Install List"
msgstr "Installa el sistema"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr ""
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr ""
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr ""
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
#, fuzzy
msgid "Selected All"
msgstr "Seleccioneu el fitxer"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
#, fuzzy
msgid "Remove List"
msgstr "Impressora remota"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
#, fuzzy
msgid "Initials tests"
msgstr "Missatge d'inicialitzaci"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
#, fuzzy
msgid "Copy fonts on your system"
msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr ""
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
#, fuzzy
msgid "Post Install"
msgstr "Installa"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
#, fuzzy
msgid "Remove fonts on your system"
msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
#, fuzzy
msgid "Post Uninstall"
msgstr "Surt de la installaci"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Connexi a Internet compartida"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "La connexi a Internet compartida est habilitada"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10198,31 +11070,31 @@ msgstr ""
"\n"
"Qu voleu fer?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "inhabilita"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "deixa-ho crrer"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "torna a configurar"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "S'estan inhabilitant els servidors..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Ara, la compartici de la connexi a Internet est inhabilitada."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "La connexi a Internet compartida est inhabilitada"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10234,19 +11106,19 @@ msgstr ""
"\n"
"Qu voleu fer?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "habilita"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "S'estan habilitant els servidors..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Ara, la connexi compartida a Internet est habilitada."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10263,21 +11135,21 @@ msgstr ""
"Nota: per configurar una xarxa d'rea local (LAN), us cal un adaptador de "
"xarxa dedicat."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Interfcie %s (utilitzant el mdul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Interfcie %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10285,11 +11157,11 @@ msgstr ""
"No s'ha detectat cap adaptador de xarxa ethernet al sistema. Si us plau, "
"executeu l'eina de configuraci de maquinari."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Interfcie de la xarxa"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10304,7 +11176,7 @@ msgstr ""
"\n"
"Ara configurar la vostra xarxa d'rea local amb aquest adaptador."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -10312,12 +11184,12 @@ msgstr ""
"Si us plau, escolliu l'adaptador de xarxa que es connectar\n"
"a la vostra xarxa d'rea local."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
#, fuzzy
msgid "Network interface already configured"
msgstr "El monitor no est configurat"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10327,17 +11199,17 @@ msgid ""
"You can do it manually but you need to know what you're doing."
msgstr ""
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
#, fuzzy
msgid "Automatic reconfiguration"
msgstr "Configuraci del tipus d'arrencada"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
#, fuzzy
msgid "Show current interface configuration"
msgstr "Configuraci del mdem"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10348,7 +11220,7 @@ msgid ""
"Driver: %s"
msgstr ""
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -10360,35 +11232,35 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr ""
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
#, fuzzy
msgid "(This) DHCP Server IP"
msgstr "IP del servidor CUPS"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr ""
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
msgstr ""
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr ""
"S'ha trobat un conflicte potencial d'adrea LAN en la configuraci actual de "
"%s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "S'ha detectat la configuraci del sistema de tallafocs!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -10396,22 +11268,22 @@ msgstr ""
"Atenci! S'ha detectat una configuraci existent del sistema de tallafocs. "
"Potser us caldr fer algun ajustament manual desprs de la installaci."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "S'est configurant..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"S'estan configurant les seqncies, installant el programari, iniciant els "
"servidors..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Hi ha hagut problemes en installar el paquet %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -10422,23 +11294,23 @@ msgstr ""
"vostra xarxa d'rea local utilitzant la configuraci automtica de xarxa "
"(DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "La configuraci ja s'ha realitzat, per ara est inhabilitada."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "La configuraci ja s'ha realitzat i ara est habilitada."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "No s'ha configurat mai cap connexi compartida a Internet."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Configuraci de la compartici de la connexi a Internet"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -10453,209 +11325,6 @@ msgstr ""
"\n"
"Feu clic a Configura per executar l'auxiliar de configuraci."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Configuraci de xarxa (%d adaptadors)"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Perfil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Suprimeix el perfil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Perfil a suprimir:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Perfil nou..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Nom de l'ordinador central: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Accs a Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Tipus:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Passarella:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Intefcie:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Estat:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr ""
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Configura l'accs a Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Configuraci de la LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Programa de control"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Interfcie"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protocol"
-
-#: ../../standalone/draknet_.c:232
-#, fuzzy
-msgid "State"
-msgstr "Estat:"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Configura la xarxa d'rea local..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr ""
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Assistent..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Aplica"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "Si us plau, espereu... s'est aplicant la configuraci"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Connectat"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Sense connexi"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Connecta..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Desconnecta..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr ""
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Configuraci de la LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptador %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protocol d'arrencada"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Iniciat en l'arrencada"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "activate now"
-msgstr "Actiu"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-#, fuzzy
-msgid "deactivate now"
-msgstr "Actiu"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Configuraci de la connexi a Internet"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Configuraci de la connexi a Internet"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Tipus de connexi: "
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parmetres"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Passarella"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Targeta Ethernet"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "Client DHCP"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "S'est establint el nivell de seguretat"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "Control Center"
@@ -10664,94 +11333,130 @@ msgstr "Control Center"
msgid "Choose the tool you want to use"
msgstr "Escolliu l'eina que voleu utilitzar "
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:72
#, fuzzy
msgid "Canada (cable)"
msgstr "Canadenc (Quebec)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
msgstr ""
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr ""
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "East Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+#, fuzzy
+msgid "France [SECAM]"
+msgstr "Frana"
+
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "Ireland"
msgstr "Islands"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
#, fuzzy
msgid "West Europe"
msgstr "Europa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
#, fuzzy
msgid "Australia"
msgstr "srie"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr ""
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr ""
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr ""
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
msgstr ""
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr ""
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr ""
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr ""
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr ""
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+#, fuzzy
+msgid "There was an error while scanning for TV channels"
+msgstr "S'ha produt un error en installar els paquets"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr ""
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr ""
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -10796,7 +11501,7 @@ msgstr "No es pot iniciar l'actualitzaci en directe !!!\n"
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -10845,13 +11550,9 @@ msgstr "/_Opcions"
msgid "/Options/Test"
msgstr "/Opcions/Prova"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Ajuda"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
-msgstr "/Ajuda/_Quant a..."
+msgstr "/Ajuda/_Quant a.."
#: ../../standalone/logdrake_.c:118
msgid "-misc-fixed-medium-r-*-*-*-100-*-*-*-*-*-*,*"
@@ -10912,7 +11613,7 @@ msgstr "Calendari"
msgid "Content of the file"
msgstr "Contingut del fitxer"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr ""
@@ -10921,81 +11622,111 @@ msgstr ""
msgid "please wait, parsing file: %s"
msgstr "si us plau, espereu, s'est analitzant el fitxer: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
#, fuzzy
msgid "Mail/SMS alert configuration"
msgstr "Configuraci de la LAN"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
-#: ../../standalone/logdrake_.c:414
-#, fuzzy
-msgid "proftpd"
-msgstr "Apache i Pro-ftpd"
-
#: ../../standalone/logdrake_.c:417
-#, fuzzy
-msgid "sshd"
-msgstr "ombra"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr ""
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Nom de domini"
#: ../../standalone/logdrake_.c:419
#, fuzzy
-msgid "xinetd"
-msgstr "Ext2"
+msgid "Ftp Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Servidor, base de dades"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Servidor NIS"
#: ../../standalone/logdrake_.c:422
#, fuzzy
+msgid "SSH Server"
+msgstr "Servidor NIS"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "dispositiu"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Servidor de la impressora"
+
+#: ../../standalone/logdrake_.c:431
+#, fuzzy
msgid "service setting"
msgstr "interessant"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr ""
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
#, fuzzy
msgid "load setting"
msgstr "s'est formatant"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr ""
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
#, fuzzy
msgid "alert configuration"
msgstr "Configuraci"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr ""
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Anomena i desa..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Si us plau, seleccioneu el vostre tipus de ratol."
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "no s'ha trobat cap serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Voleu emular el tercer bot?"
+#: ../../standalone/printerdrake_.c:49
+#, fuzzy
+msgid "Reading printer data ..."
+msgstr "S'est llegint la base de dades de controladors CUPS..."
+
+#: ../../standalone/scannerdrake_.c:42
+#, fuzzy
+msgid "Detecting devices ..."
+msgstr "S'estan detectant els dispositius..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11039,6 +11770,18 @@ msgid ""
"applications menu."
msgstr ""
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr ""
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Configuraci del sistema de tallafocs"
@@ -11446,10 +12189,6 @@ msgid "Multimedia - Sound"
msgstr "Multimdia - So"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utilitats"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Documentaci"
@@ -11553,10 +12292,6 @@ msgstr ""
"per navegar pel Web"
#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Arxivament, emuladors, monitoritzaci"
-
-#: ../../share/compssUsers:999
msgid "Personal Finance"
msgstr "Comptabilitat personal"
@@ -11605,3374 +12340,212 @@ msgstr "Multimdia - Gravaci de CD"
msgid "Scientific Workstation"
msgstr "Estaci cientfica de treball"
-#, fuzzy
-#~ msgid "About"
-#~ msgstr "Interromp"
-
-#~ msgid "$f-$g %s)"
-#~ msgstr "$f-$g %s)"
-
-#~ msgid "None"
-#~ msgstr "Cap"
-
-#, fuzzy
-#~ msgid "Choose a default printer!"
-#~ msgstr "Escolliu l'usuari per omissi:"
-
-#, fuzzy
-#~ msgid "Apply/Re-read printers"
-#~ msgstr "Impressora remota"
-
-#~ msgid "You may now provide its options to module %s."
-#~ msgstr "Ara podeu proporcionar les seves opcions per al mdul %s."
-
-#~ msgid "mount failed"
-#~ msgstr "ha fallat el muntatge"
-
-#~ msgid "Low"
-#~ msgstr "Baix"
-
-#~ msgid "Medium"
-#~ msgstr "Mitj"
-
-#~ msgid ""
-#~ "Few improvements for this security level, the main one is that there are\n"
-#~ "more security warnings and checks."
-#~ msgstr ""
-#~ "Poques millores per a aquest nivell de seguretat; la principal s que hi "
-#~ "ha\n"
-#~ "ms avisos i comprovacions de seguretat."
-
-#, fuzzy
-#~ msgid "Art and Multimedia"
-#~ msgstr "Multimdia"
-
-#~ msgid "Boot mode"
-#~ msgstr "Mode d'arrencada"
-
-#, fuzzy
-#~ msgid "Export"
-#~ msgstr "Expert"
-
-#~ msgid ""
-#~ "GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it in\n"
-#~ "local time according to the time zone you selected."
-#~ msgstr ""
-#~ "El GNU/Linux gestiona l'hora en GMT (Hora de Greenwich) i la\n"
-#~ "tradueix a l'hora local segons la zona horria seleccionada."
-
-#~ msgid "Connect to Internet"
-#~ msgstr "Connecta't a Internet"
-
-#~ msgid "Disconnect from Internet"
-#~ msgstr "Desconnecta't d'Internet"
-
-#~ msgid "Configure network connection (LAN or Internet)"
-#~ msgstr "Configura la connexi de xarxa (LAN o Internet)"
-
-#, fuzzy
-#~ msgid "Detected %s, do you want to set it up?"
-#~ msgstr "A quin disc us voleu desplaar?"
-
-#, fuzzy
-#~ msgid "Please choose the printer you want to set up."
-#~ msgstr "Si us plau, escolliu els paquets que voleu installar"
-
-#, fuzzy
-#~ msgid "Infos"
-#~ msgstr "Informaci"
-
-#, fuzzy
-#~ msgid "Windows Importation"
-#~ msgstr "Estaci de treball GNOME"
+#~ msgid "Choose options for server"
+#~ msgstr "Escolliu les opcions per al servidor"
-#~ msgid "authentification"
-#~ msgstr "autenticaci"
+#~ msgid "Monitor not configured"
+#~ msgstr "El monitor no est configurat"
-#~ msgid "user"
-#~ msgstr "usuari"
-
-#, fuzzy
-#~ msgid ""
-#~ "Apache is a World Wide Web server. It is used to serve HTML files and "
-#~ "CGI."
-#~ msgstr ""
-#~ "L'Apache s un servidor de World Wide Web. S'utilitza per servir fitxers\n"
-#~ "HTML i CGI."
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "La targeta grfica encara no est configurada"
-#~ msgid ""
-#~ "named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
-#~ "host names to IP addresses."
-#~ msgstr ""
-#~ "named (BIND) s un servidor de noms de domini (DNS) que s'utiilitza\n"
-#~ "per convertir noms d'ordinadors centrals en adreces IP."
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Encara no s'han escollit les resolucions"
-#, fuzzy
#~ msgid ""
-#~ "Please choose the desired printer/printer port.\n"
#~ "\n"
-#~ msgstr "Si us plau, seleccioneu el vostre tipus de ratol."
-
-#, fuzzy
-#~ msgid "\\@quit"
-#~ msgstr "Surt"
-
-#, fuzzy
-#~ msgid "Removable media"
-#~ msgstr "Muntatge automtic del suport extrable"
-
-#~ msgid "Active"
-#~ msgstr "Actiu"
-
-#, fuzzy
-#~ msgid "No X"
-#~ msgstr "No"
-
-#~ msgid "A printer, model \"%s\", has been detected on "
-#~ msgstr "S'ha detectat una impressora, model \"%s\", a"
-
-#~ msgid "Local Printer Device"
-#~ msgstr "Dispositiu de la impressora local"
-
-#~ msgid "Printer Device"
-#~ msgstr "Dispositiu d'impressora"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote CUPS server(s)"
-#~ msgstr "Servidor CUPS remot"
-
-#, fuzzy
-#~ msgid "Printer(s) on remote server(s)"
-#~ msgstr "Servidor CUPS remot"
-
-#, fuzzy
-#~ msgid " Linux "
-#~ msgstr "Linux"
-
-#, fuzzy
-#~ msgid " System "
-#~ msgstr "Mode de sistema"
-
-#, fuzzy
-#~ msgid " Other "
-#~ msgstr "Altres"
-
-#, fuzzy
-#~ msgid "please choose your CD space"
-#~ msgstr "Si us plau, selecioneu la disposici del vostre teclat."
-
-#, fuzzy
-#~ msgid " Please check if you are using CDRW media"
-#~ msgstr "Si us plau, feu clic a una partici "
-
-#, fuzzy
-#~ msgid " Tape "
-#~ msgstr "Tipus: "
-
-#, fuzzy
-#~ msgid " Use .backupignore files"
-#~ msgstr "Fitxer de cpia de seguretat incorrecte"
-
-#, fuzzy
-#~ msgid "Configure it"
-#~ msgstr "Configura l'X"
-
-#, fuzzy
-#~ msgid "on Tape Device"
-#~ msgstr "Dispositiu d'impressora"
-
-#, fuzzy
-#~ msgid " Cancel "
-#~ msgstr "Cancella"
-
-#, fuzzy
-#~ msgid " Ok "
-#~ msgstr "D'acord"
-
-#, fuzzy
-#~ msgid "close"
-#~ msgstr "Tanca"
-
-#, fuzzy
-#~ msgid "toto"
-#~ msgstr "toot"
-
-#, fuzzy
-#~ msgid "Starting your connection..."
-#~ msgstr "S'est comprovant la vostra conexi..."
-
-#~ msgid "Closing your connection..."
-#~ msgstr "S'est tancant la connexi..."
-
-#~ msgid ""
-#~ "The connection is not closed.\n"
-#~ "Try to do it manually by running\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "in root."
-#~ msgstr ""
-#~ "La connexi no est tancada.\n"
-#~ "Intenteu fer-ho manualment executant\n"
-#~ "/etc/sysconfig/network-scripts/net_cnx_down\n"
-#~ "a root."
-
-#~ msgid "The system is now disconnected."
-#~ msgstr "Ara, el sistema est desconnectat."
-
-#~ msgid "Choose the size you want to install"
-#~ msgstr "Escolliu la mida que voleu installar"
-
-#~ msgid "Total size: "
-#~ msgstr "Mida total: "
-
-#~ msgid "Please wait, "
-#~ msgstr "Si us plau, espereu, "
-
-#~ msgid "Total time "
-#~ msgstr "Temps total "
-
-#~ msgid "Use existing configuration for X11?"
-#~ msgstr "Voleu utilitzar la configuraci existent per a X11?"
-
-#~ msgid ""
-#~ "What device is your printer connected to \n"
-#~ "(note that /dev/lp0 is equivalent to LPT1:)?\n"
-#~ msgstr ""
-#~ "A quin dispositiu est connectada la vostra impressora?\n"
-#~ "(tingueu en compte que /dev/lp0 equival a LPT1:)\n"
-
-#~ msgid "$_"
-#~ msgstr "$_"
-
-#~ msgid ""
-#~ "Warning, the network adapter is already configured. I will reconfigure it."
-#~ msgstr ""
-#~ "Compte, l'adaptador de xarxa ja est configurat. El tornar a configurar."
-
-#~ msgid "New"
-#~ msgstr "Nou"
-
-#, fuzzy
-#~ msgid "Remote"
-#~ msgstr "Elimina"
-
-#, fuzzy
-#~ msgid ""
-#~ "Please click on a button above\n"
-#~ "\n"
-#~ "Or use \"New\""
-#~ msgstr "Si us plau, feu clic a una partici "
-
-#~ msgid "Ambiguity (%s), be more precise\n"
-#~ msgstr "Ambigitat (%s), sigueu ms precs\n"
-
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (predeterminat %s) "
-
-#~ msgid "Your choice? (default %s enter `none' for none) "
-#~ msgstr "La vostra elecci? (predeterminat %s introduu `cap' per a cap) "
-
-#~ msgid "can not open /etc/sysconfig/autologin for reading: %s"
-#~ msgstr "no es pot obrir /etc/sysconfig/autologin per a lectura: %s"
-
-#~ msgid "Do you want to restart the network"
-#~ msgstr "Voleu reiniciar la xarxa"
-
-#~ msgid ""
-#~ "\n"
-#~ "Do you agree?"
-#~ msgstr ""
-#~ "\n"
-#~ "Hi esteu d'acord?"
-
-#~ msgid "I'm about to restart the network device:\n"
-#~ msgstr "Ara reiniciar el dispositiu de xarxa:\n"
-
-#~ msgid "I'm about to restart the network device %s. Do you agree?"
-#~ msgstr "Ara reiniciar el dispositiu de xarxa %s. Hi esteu d'acord?"
-
-#, fuzzy
-#~ msgid ""
-#~ "Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
-#~ "(primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
-#~ msgstr ""
-#~ "Tret que sapigueu expressament que s'ha d'indicar una altra cosa, "
-#~ "l'elecci\n"
-#~ "habitual s \"/dev/hda\" (el disc IDE mestre primari) o b \"/dev/sda\"\n"
-#~ "(el primer disc SCSI)."
-
-#, fuzzy
-#~ msgid "Connection timeout (in sec) [ beta, not yet implemented ]"
-#~ msgstr "Tipus de connexi: "
-
-#, fuzzy
-#~ msgid "Could not set \"%s\" as the default printer!"
-#~ msgstr "Escolliu l'usuari per omissi:"
-
-#, fuzzy
-#~ msgid "Test the mouse here."
-#~ msgstr "Si us plau, comproveu el ratol."
-
-#~ msgid ""
-#~ "Please choose your preferred language for installation and system usage."
-#~ msgstr ""
-#~ "Escolliu l'idioma que voleu utilitzar per a la installaci i per a l's "
-#~ "del sistema."
-
-#~ msgid ""
-#~ "You need to accept the terms of the above license to continue "
-#~ "installation.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Accept\" if you agree with its terms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Please click on \"Refuse\" if you disagree with its terms. Installation "
-#~ "will end without modifying your current\n"
-#~ "configuration."
-#~ msgstr ""
-#~ "Heu d'acceptar els termes de la llicncia de ms amunt per poder "
-#~ "continuar la installaci.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si us plau, feu clic a \"Accepto\" si hi esteu d'acord.\n"
-#~ "\n"
-#~ "\n"
-#~ "Feu clic a \"No accpeto\" si no hi esteu d'acord. La installaci "
-#~ "finalitzar sense modificar la installaci actual."
-
-#~ msgid "Choose the layout corresponding to your keyboard from the list above"
-#~ msgstr "Escolliu el vostre tipus de teclat de la llista inferior"
-
-#~ msgid ""
-#~ "If you wish other languages (than the one you choose at\n"
-#~ "beginning of installation) will be available after installation, please "
-#~ "chose\n"
-#~ "them in list above. If you want select all, you just need to select \"All"
-#~ "\"."
-#~ msgstr ""
-#~ "Si desitgeu que altres idiomes (a ms del que vau triar en\n"
-#~ "iniciar la installaci) estiguin disponibles desprs de la "
-#~ "installaci,\n"
-#~ "escolliu-los de la llista de ms amunt. Si els voleu seleccionar tots,\n"
-#~ "noms cal que seleccioneu \"Tots\"."
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!"
-#~ msgstr ""
-#~ "Seleccioneu:\n"
-#~ "\n"
-#~ " - Personalitzada: Si esteu familiaritzat amb el Linux, podreu\n"
-#~ "triar l's del sistema installat entre Normal, Desenvolupament o\n"
-#~ "Servidor. Trieu \"Normal\" per a una installaci per a un s\n"
-#~ "general del vostre ordinador, \"Desenvolupament\" si utilitzareu\n"
-#~ "l'ordinador principalment per a desenvolupament de programari,\n"
-#~ "o \"Servidor\" si voleu installar un servidor convencional (per\n"
-#~ "a correu, impressions...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Per a experts: Si domineu el GNU/Linux i voleu realitzar una\n"
-#~ "installaci totalment personalitzada, aquest s el vostre\n"
-#~ "tipus d'installaci. Podreu seleccionar l's del vostre sistema\n"
-#~ "com a \"Personalitzada\"."
-
-#~ msgid ""
-#~ "You must now define your machine usage. Choices are:\n"
-#~ "\n"
-#~ "* Workstation: this the ideal choice if you intend to use your machine "
-#~ "primarily for everyday use, at office or\n"
-#~ " at home.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Development: if you intend to use your machine primarily for software "
-#~ "development, it is the good choice. You\n"
-#~ " will then have a complete collection of software installed in order to "
-#~ "compile, debug and format source code,\n"
-#~ " or create software packages.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Server: if you intend to use this machine as a server, it is the good "
-#~ "choice. Either a file server (NFS or\n"
-#~ " SMB), a print server (Unix style or Microsoft Windows style), an "
-#~ "authentication server (NIS), a database\n"
-#~ " server and so on. As such, do not expect any gimmicks (KDE, GNOME, "
-#~ "etc.) to be installed."
-#~ msgstr ""
-#~ "Ara heu de decidir com utilitzareu l'ordinador. Les opcions sn:\n"
-#~ "\n"
-#~ "* Estaci de treball: l'elecci ideal si penseu utilitzar l'ordinador "
-#~ "bsicament per a l's quotidi, a la feina o\n"
-#~ " a casa.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Desenvolupament: si penseu utilitzar l'ordinador bsicament per a "
-#~ "desenvolupament de programari, aquesta s l'elecci ideal.\n"
-#~ " Tindreu installada una completa collecci de programari per poder "
-#~ "compilar, depurar i formatar codi font,\n"
-#~ " o crear paquets de programari.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Servidor: si penseu utilitzar l'ordinador com a servidor, aquesta s "
-#~ "l'elecci ideal, ja sigui un servidor de fitxers (NFS o\n"
-#~ " SMB), un servidor d'impressi (tipus Unix o Microsoft Windows), un "
-#~ "servidor d'autenticaci (NIS), un servidor\n"
-#~ " de bases de dades, etc. En canvi, no espereu que se us installin coses "
-#~ "com ara el KDE, el GNOME, etc.)"
-
-#~ msgid ""
-#~ "You may now select the group of packages you wish to\n"
-#~ "install or upgrade.\n"
-#~ "\n"
-#~ "\n"
-#~ "DrakX will then check whether you have enough room to install them all. "
-#~ "If not,\n"
-#~ "it will warn you about it. If you want to go on anyway, it will proceed "
-#~ "onto the\n"
-#~ "installation of all selected groups but will drop some packages of "
-#~ "lesser\n"
-#~ "interest. At the bottom of the list you can select the option \n"
-#~ "\"Individual package selection\"; in this case you will have to browse "
-#~ "through\n"
-#~ "more than 1000 packages..."
-#~ msgstr ""
-#~ "Ara podeu seleccionar el grup de paquets que voleu installar o "
-#~ "actualitzar.\n"
-#~ "\n"
-#~ "\n"
-#~ "El DrakX comprovar si teniu prou espai per installar-los tots i, si no, "
-#~ "us\n"
-#~ "ho avisar. Si voleu seguir igualment, continuar amb la installaci de "
-#~ "tots\n"
-#~ "els grups seleccionats per no n'installar alguns de menys inters. Al "
-#~ "final\n"
-#~ "de la llista podeu seleccionar l'opci \"Selecci individual de paquets"
-#~ "\", i\n"
-#~ "en aquest cas haureu de navegar per ms de 1.000 paquets..."
-
-#~ msgid ""
-#~ "You can now choose individually all the packages you\n"
-#~ "wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can expand or collapse the tree by clicking on options in the left "
-#~ "corner of\n"
-#~ "the packages window.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you prefer to see packages sorted in alphabetic order, click on the "
-#~ "icon\n"
-#~ "\"Toggle flat and group sorted\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want not to be warned on dependencies, click on \"Automatic\n"
-#~ "dependencies\". If you do this, note that unselecting one package may "
-#~ "silently\n"
-#~ "unselect several other packages which depend on it."
-#~ msgstr ""
-#~ "Ara podeu triar individualment tots els paquets que voleu installar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Podeu expandir o reduir l'arbre fent clic a les opcions del rac esquerre "
-#~ "de la finestra de paquets.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si preferiu veure els paquets ordenats alfabticament, feu clic a la "
-#~ "icona\n"
-#~ "\"Commuta entre ordenaci plana i per grups\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no voleu ser avisat pel que fa a les dependncies, feu clic a "
-#~ "\"Dependncies\n"
-#~ "automtiques\". Si ho feu, tingueu en compte que el fet de "
-#~ "desseleccionar\n"
-#~ "un paquet pot causar la desselecci d'altres paquets que en depenen, i "
-#~ "no\n"
-#~ "us n'assabentareu."
-
-#~ msgid ""
-#~ "If you have all the CDs in the list above, click Ok. If you have\n"
-#~ "none of those CDs, click Cancel. If only some CDs are missing, unselect "
-#~ "them,\n"
-#~ "then click Ok."
-#~ msgstr ""
-#~ "Si teniu tots els CD de la llista superior, feu clic a D'acord.\n"
-#~ "Si no teniu cap d'aquests CD, feu clic a Cancella.\n"
-#~ "Si noms falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-
-#~ msgid ""
-#~ "If you wish to connect your computer to the Internet or\n"
-#~ "to a local network please choose the correct option. Please turn on your "
-#~ "device\n"
-#~ "before choosing the correct option to let DrakX detect it automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you do not have any connection to the Internet or a local network, "
-#~ "choose\n"
-#~ "\"Disable networking\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you wish to configure the network later after installation, or if you "
-#~ "have\n"
-#~ "finished to configure your network connection, choose \"Done\"."
-#~ msgstr ""
-#~ "Si voleu connectar l'ordinador a Internet o a una xarxa local, "
-#~ "seleccioneu\n"
-#~ "l'opci corresponent, per abans recordeu engegar el dispositiu per tal "
-#~ "que\n"
-#~ "el DrakX el detecti automticament.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no teniu connexi a Internet ni a cap xarxa local, escolliu "
-#~ "\"Inhabilita el servei de xarxa\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu configurar la xarxa ms endavant, desprs de la installaci, o "
-#~ "si\n"
-#~ "heu acabat la configuraci de la connexi de xarxa, trieu \"Fet\"."
-
-#~ msgid ""
-#~ "No modem has been detected. Please select the serial port on which it is "
-#~ "plugged.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, the first serial port (called \"COM1\" under Microsoft\n"
-#~ "Windows) is called \"ttyS0\" under Linux."
-#~ msgstr ""
-#~ "No s'ha detectat cap mdem. Si us plau, seleccioneu el port srie on est "
-#~ "connectat.\n"
-#~ "\n"
-#~ "\n"
-#~ "Per a la vostra informaci, el primer port srie (anomenat \"COM1\" en "
-#~ "Microsoft Windows) s'anomena \"ttyS0\" en Linux."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you don't know\n"
-#~ "or are not sure what to enter, the correct informations can be obtained "
-#~ "from\n"
-#~ "your Internet Service Provider. If you do not enter the DNS (name "
-#~ "server)\n"
-#~ "information here, this information will be obtained from your Internet "
-#~ "Service\n"
-#~ "Provider at connection time."
-#~ msgstr ""
-#~ "Ara podeu introduir les opcions de marcatge. Si no sabeu qu heu "
-#~ "d'introduir,\n"
-#~ "o si no n'esteu segur, podreu aconseguir la informaci necessria del "
-#~ "vostre\n"
-#~ "provedor d'Internet. Si no introduu aqu la informaci del DNS "
-#~ "(servidor de\n"
-#~ "noms), aquesta informaci s'obtindr del provedor en el moment de "
-#~ "connectar."
-
-#~ msgid ""
-#~ "If your modem is an external modem, please turn on it now to let DrakX "
-#~ "detect it automatically."
-#~ msgstr ""
-#~ "Si el mdem que teniu s extern, engegueu-lo per tal que el DrakX el "
-#~ "detecti automticament."
-
-#~ msgid "Please turn on your modem and choose the correct one."
-#~ msgstr "Si us plau, engegueu el mdem i trieu-ne el correcte."
-
-#~ msgid ""
-#~ "If you are not sure if informations above are\n"
-#~ "correct or if you don't know or are not sure what to enter, the correct\n"
-#~ "informations can be obtained from your Internet Service Provider. If you "
-#~ "do not\n"
-#~ "enter the DNS (name server) information here, this information will be "
-#~ "obtained\n"
-#~ "from your Internet Service Provider at connection time."
-#~ msgstr ""
-#~ "Si no esteu segur de si la informaci de ms amunt s correcta, si no "
-#~ "sabeu\n"
-#~ "qu introduir o si no n'esteu segur, podreu aconseguir la informaci\n"
-#~ "necessria del vostre provedor d'Internet. Si no introduu aqu la\n"
-#~ "informaci del DNS (servidor de noms), aquesta informaci s'obtindr del\n"
-#~ "provedor en el moment de connectar."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, the correct informations can "
-#~ "be\n"
-#~ "obtained from your Internet Service Provider."
-#~ msgstr ""
-#~ "Ara podeu introduir el nom del vostre ordinador central. Si no esteu "
-#~ "segur del que hi\n"
-#~ "heu d'introduir, el vostre provedor us en donar la informaci correcta."
-
-#~ msgid ""
-#~ "You may now configure your network device.\n"
-#~ "\n"
-#~ " * IP address: if you don't know or are not sure what to enter, ask "
-#~ "your network administrator.\n"
-#~ " You should not enter an IP address if you select the option "
-#~ "\"Automatic IP\" below.\n"
-#~ "\n"
-#~ " * Netmask: \"255.255.255.0\" is generally a good choice. If you don't "
-#~ "know or are not sure what to enter,\n"
-#~ " ask your network administrator.\n"
-#~ "\n"
-#~ " * Automatic IP: if your network uses BOOTP or DHCP protocol, select "
-#~ "this option. If selected, no value is needed in\n"
-#~ " \"IP address\". If you don't know or are not sure if you need to "
-#~ "select this option, ask your network administrator."
-#~ msgstr ""
-#~ "Ara podeu configurar el voste dispositiu de xarxa.\n"
-#~ "\n"
-#~ " * Adrea IP: si no la sabeu, o no n'esteu segur, pregunteu-la a "
-#~ "l'administrador de la xarxa.\n"
-#~ " No heu d'introduir cap adrea IP si ms avall seleccioneu l'opci "
-#~ "\"IP automtica\".\n"
-#~ "\n"
-#~ " * Mscara de la xarxa: Normalment, \"255.255.255.0\" s una bona "
-#~ "elecci. Si no n'esteu segur, consulteu-ho a l'administrador de la "
-#~ "xarxa.\n"
-#~ "\n"
-#~ " * IP automtica: si la vostra xarxa utilitza els protocols BOOTP o "
-#~ "DHCP,\n"
-#~ "seleccioneu aquesta opci. Si es selecciona, no cal cap valor per a "
-#~ "\"Adrea IP\". Si no n'esteu segur, consulteu-ho a l'administrador de la "
-#~ "xarxa."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, ask your network administrator."
-#~ msgstr ""
-#~ "Ara podeu introduir el nom del vostre ordinador central, si cal. Si no "
-#~ "el\n"
-#~ "sabeu, o no esteu segur de qu heu d'introduir, consulteu a "
-#~ "l'administrador de la xarxa."
-
-#~ msgid ""
-#~ "You may now enter your host name if needed. If you\n"
-#~ "don't know or are not sure what to enter, leave blank."
-#~ msgstr ""
-#~ "Ara podeu introduir el nom del vostre ordinador central, si cal. Si no\n"
-#~ "el sabeu, o si esteu segur de qu introduir, deixeu-ho en blanc."
-
-#~ msgid ""
-#~ "You may now enter dialup options. If you're not sure what to enter, the\n"
-#~ "correct information can be obtained from your ISP."
-#~ msgstr ""
-#~ "Ara podeu introduir les opcions de marcatge. Si no esteu segur del que "
-#~ "hi\n"
-#~ "heu d'introduir, el vostre provedor us en donar la informaci correcta."
-
-#~ msgid ""
-#~ "If you will use proxies, please configure them now. If you don't know if\n"
-#~ "you should use proxies, ask your network administrator or your ISP."
-#~ msgstr ""
-#~ "Si teniu previst utilitzar proxys, configureu-los ara. Si no sabeu si\n"
-#~ "n'utilitzareu, consulteu-ho a l'administrador de la xarxa o al vostre\n"
-#~ "provedor."
-
-#~ msgid ""
-#~ "You can install cryptographic package if your internet connection has "
-#~ "been\n"
-#~ "set up correctly. First choose a mirror where you wish to download "
-#~ "packages and\n"
-#~ "after that select the packages to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "Note you have to select mirror and cryptographic packages according\n"
-#~ "to your legislation."
-#~ msgstr ""
-#~ "Podeu installar el paquet criptogrfic si la vostra connexi a Internet\n"
-#~ "s'ha configurat correctament. Escolliu primer una rpilca des de la qual\n"
-#~ "vulgueu descarregar paquets i desprs seleccioneu els paquets a "
-#~ "installar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tingueu en compte que heu de seleccionar la rplica i els paquets\n"
-#~ "criptogrfics segons la vostra legislaci."
-
-#~ msgid "You can now select your timezone according to where you live."
-#~ msgstr "Ara podeu seleccionar la zona horria segons el lloc on viviu."
-
-#~ msgid ""
-#~ "You can configure a local printer (connected to your computer) or remote\n"
-#~ "printer (accessible via a Unix, Netware or Microsoft Windows network)."
-#~ msgstr ""
-#~ "Podeu configurar una impressora local (connectada al vostre ordinador) o\n"
-#~ "remota (accessible mitjanant una xarxa Unix, Netware o Microsoft "
-#~ "Windows)."
-
-#~ msgid ""
-#~ "If you wish to be able to print, please choose one printing system "
-#~ "between\n"
-#~ "CUPS and LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "CUPS is a new, powerful and flexible printing system for Unix systems "
-#~ "(CUPS\n"
-#~ "means \"Common Unix Printing System\"). It is the default printing system "
-#~ "in\n"
-#~ "Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "LPR is the old printing system used in previous Mandrake Linux "
-#~ "distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't have printer, click on \"None\"."
-#~ msgstr ""
-#~ "Si voleu imprimir, trieu un sistema de impressi entre CUPS i LPR.\n"
-#~ "\n"
-#~ "\n"
-#~ "El CUPS s un nou sistema d'impressi, potent i flexible, per a sistemes "
-#~ "Unix\n"
-#~ "(CUPS significa \"Common Unix Printing System\"). s el sistema "
-#~ "d'impressi\n"
-#~ "per defecte en Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "L'LPR s l'antic sistema d'impressi utilitzat en distribucions anteriors "
-#~ "de\n"
-#~ "Mandrake Linux distributions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no teniu impressora, feu clic a \"Cap\"."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these types "
-#~ "requires\n"
-#~ "a different setup.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select \"Local\n"
-#~ "printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine, select\n"
-#~ "\"Remote printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Microsoft Windows "
-#~ "machine\n"
-#~ "(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
-#~ msgstr ""
-#~ "El GNU/Linux pot treballar amb molts tipus d'impressores, per cada un\n"
-#~ "d'aquests tipus requereix una configuraci diferent.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si teniu la impressora connectada fsicament a l'ordinador, seleccioneu\n"
-#~ "\"Impressora local\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora que es troba en un ordinador Unix "
-#~ "remot,\n"
-#~ "seleccioneu \"Impressora remota\".\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora que es troba en un ordinador Microsoft\n"
-#~ "Windows remot (o en un ordinador Unix que utilitza el protocol SMB),\n"
-#~ "seleccioneu \"SMB/Windows 95/98/NT\"."
-
-#~ msgid ""
-#~ "Please turn on your printer before continuing to let DrakX detect it.\n"
-#~ "\n"
-#~ "You have to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of printer: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you must have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer a more meaningful name, you "
-#~ "have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Description: this is optional but can be useful if several printers "
-#~ "are connected to your computer or if you allow\n"
-#~ " other computers to access to this printer.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Location: if you want to put some information on your\n"
-#~ " printer location, put it here (you are free to write what\n"
-#~ " you want, for example \"2nd floor\").\n"
+#~ "try to change some parameters"
#~ msgstr ""
-#~ "Si us plau, engegueu la impressora abans de continuar per tal que el "
-#~ "DrakX\n"
-#~ "la pugui detectar.\n"
-#~ "\n"
-#~ "Aqu heu d'introduir algunes dades.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Nom de la impressora: l'spool d'impressi utilitza \"lp\" com a nom "
-#~ "per\n"
-#~ "omissi de la impressora. Per tant, heu de tenir una impressora "
-#~ "anomenada\n"
-#~ "\"lp\".\n"
-#~ " Si noms teniu una impressora, podeu donar-li diversos;\n"
-#~ "noms; noms cal que els separeu amb el carcter \"|\". Per tant,\n"
-#~ "si preferiu un nom ms expressiu, l'heu d'indicar en primer lloc\n"
-#~ "(per exemple: \"La meva impressora|lp\").\n"
-#~ " La impressora que contingui \"lp\" al(s) nom(s) ser la impressora "
-#~ "per omissi.\n"
#~ "\n"
-#~ "\n"
-#~ " * Descripci: s opcional, per pot ser til si teniu diverses\n"
-#~ "impressores connectades a l'ordinador o si permeteu que altres\n"
-#~ "ordinadors accedeixin a aquesta impressora.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Ubicaci: si voleu incloure informaci sobre la ubicaci de la\n"
-#~ "impressora, feu-ho aqu (podeu escriure el que vulgueu, (per exemple,\n"
-#~ "\"2n pis\").\n"
+#~ "intenteu canviar alguns parmetres"
-#~ msgid ""
-#~ "You need to enter some informations here.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Name of queue: the print spooler uses \"lp\" as default printer "
-#~ "name. So, you need have a printer named \"lp\".\n"
-#~ " If you have only one printer, you can use several names for it. You "
-#~ "just need to separate them by a pipe\n"
-#~ " character (a \"|\"). So, if you prefer to have a more meaningful "
-#~ "name, you have to put it first, eg: \"My printer|lp\".\n"
-#~ " The printer having \"lp\" in its name(s) will be the default "
-#~ "printer.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Spool directory: it is in this directory that printing jobs are "
-#~ "stored. Keep the default choice\n"
-#~ " if you don't know what to use\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " If you want to access a printer located on a remote Unix machine, "
-#~ "select \"Remote lpd printer\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to access a printer located on a remote Microsoft "
-#~ "Windows machine (or on Unix machine using SMB\n"
-#~ " protocol), select \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ "\n"
-#~ " If you want to acces a printer located on NetWare network, select "
-#~ "\"NetWare\".\n"
-#~ msgstr ""
-#~ "Aqu heu d'introduir algunes dades.\n"
-#~ "\n"
-#~ "\n"
-#~ " * Nom de la cua: l'spool d'impressi utilitza \"lp\" com a nom per\n"
-#~ "omissi de la impressora. Per tant, heu de tenir una impressora "
-#~ "anomenada\n"
-#~ "\"lp\".\n"
-#~ " Si noms teniu una impressora, podeu donar-li diversos;\n"
-#~ "noms; noms cal que els separeu amb el carcter \"|\". Per tant,\n"
-#~ "si preferiu un nom ms expressiu, l'heu d'indicar en primer lloc\n"
-#~ "(per exemple: \"La meva impressora|lp\").\n"
-#~ " La impressora que contingui \"lp\" al(s) nom(s) ser la impressora "
-#~ "per omissi.\n"
-#~ "\n"
-#~ " \n"
-#~ " * Directori d'spool: les tasques d'impressi s'emmagatzemen en aquest "
-#~ "directori.Conserveu la opci predeterminada si no sabeu quina utilitzar\n"
-#~ "\n"
-#~ "\n"
-#~ " * Printer Connection: If your printer is physically connected to your "
-#~ "computer, select \"Local printer\".\n"
-#~ " Si voleu accedir a una impressora que es troba en un ordinador Unix\n"
-#~ "remot, seleccioneu \"Impressora lpd remota\".\n"
-#~ "\n"
-#~ "\n"
-#~ " Si voleu accedir a una impressora que es troba en un ordinador\n"
-#~ "Microsoft Windows remot (o en un ordinador Unix que utilitza el protocol\n"
-#~ "SMB), seleccioneu \"SMB/Windows 95/98/NT\".\n"
-#~ "\n"
-#~ " Si voleu accedir a una impressora que es troba en una xarxa "
-#~ "NetWare,\n"
-#~ "seleccioneu \"NetWare\".\n"
+#~ msgid "An error occurred:"
+#~ msgstr "S'ha produt un error:"
-#~ msgid ""
-#~ "Your printer has not been detected. Please enter the name of the device "
-#~ "on\n"
-#~ "which it is connected.\n"
-#~ "\n"
-#~ "\n"
-#~ "For information, most printers are connected on the first parallel port. "
-#~ "This\n"
-#~ "one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
-#~ "Windows."
-#~ msgstr ""
-#~ "No s'ha detectat la vostra impressora. Si us plau, introduu el nom del\n"
-#~ "dispositiu a qu est connectada.\n"
-#~ "\n"
-#~ "\n"
-#~ "Per a la vostra informaci, la majoria d'impressores estan connectades "
-#~ "al\n"
-#~ "primer port parallel, que s'anomena \"/dev/lp0\" en GNU/Linux i \"LPT1"
-#~ "\"\n"
-#~ "en Microsoft Windows."
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Sortida en %d segons"
-#~ msgid "You must now select your printer in the above list."
-#~ msgstr "Ara heu de seleccionar la vostra impressora a la llista superior."
+#~ msgid "Is this the correct setting?"
+#~ msgstr "s aquest el parmetre corrcte?"
-#~ msgid ""
-#~ "Please select the right options according to your printer.\n"
-#~ "Please see its documentation if you don't know what choose here.\n"
-#~ "\n"
-#~ "\n"
-#~ "You will be able to test your configuration in next step and you will be "
-#~ "able to modify it if it doesn't work as you want."
-#~ msgstr ""
-#~ "Si us plau, seleccioneu les opcions correctes segons la vostra "
-#~ "impressora;\n"
-#~ "consulteu-ne la documentaci si no sabeu qu heu de seleccionar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Podreu comprovar la configuraci en el pas segent i modificar-la si no\n"
-#~ "funciona exactament com voleu."
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "S'ha produt un error, intenteu canviar alguns parmetres"
-#~ msgid ""
-#~ "You can now enter the root password for your Mandrake Linux system.\n"
-#~ "The password must be entered twice to verify that both password entries "
-#~ "are identical.\n"
-#~ "\n"
-#~ "\n"
-#~ "Root is the system's administrator and is the only user allowed to modify "
-#~ "the\n"
-#~ "system configuration. Therefore, choose this password carefully. \n"
-#~ "Unauthorized use of the root account can be extemely dangerous to the "
-#~ "integrity\n"
-#~ "of the system, its data and other system connected to it.\n"
-#~ "\n"
-#~ "\n"
-#~ "The password should be a mixture of alphanumeric characters and at least "
-#~ "8\n"
-#~ "characters long. It should never be written down.\n"
-#~ "\n"
-#~ "\n"
-#~ "Do not make the password too long or complicated, though: you must be "
-#~ "able to\n"
-#~ "remember it without too much effort."
-#~ msgstr ""
-#~ "Ara podeu introduir la contrasenya de l'usuari 'root' del vostre\n"
-#~ "sistema Mandrake Linux. Ho heu de fer dos cops per verificar que\n"
-#~ "ambdues introduccions sn idntiques.\n"
-#~ "\n"
-#~ "\n"
-#~ "L'usuari 'root' s l'administrador del sistema, i s l'nic\n"
-#~ "autoritzat per modificar la configuraci del sistema; per tant,\n"
-#~ "trieu amb molta cura aquesta contrasenya. L's no autoritzat del\n"
-#~ "compte 'root' pot ser extremadament perills per a la integritat\n"
-#~ "del sistema, per a les seves dades, i per a altres sistema que hi\n"
-#~ "estan connectats.\n"
-#~ "\n"
-#~ "\n"
-#~ "La contrasenya s'ha de crear amb diversos carcters alfanumrics, ha de\n"
-#~ "tenir una llargada mnima de 8 carcters, i mai no s'ha d'anotar enlloc.\n"
-#~ "\n"
-#~ "\n"
-#~ "No obstant aix, no creeu una contrasenya excessivament llarga o\n"
-#~ "complicada: heu de poder recordar-la sense problemes."
+#~ msgid "XFree86 server: %s"
+#~ msgstr "Servidor xFree86: %s"
-#~ msgid ""
-#~ "You may now create one or more \"regular\" user account(s), as\n"
-#~ "opposed to the \"privileged\" user account, root. You can create\n"
-#~ "one or more account(s) for each person you want to allow to use\n"
-#~ "the computer. Note that each user account will have its own\n"
-#~ "preferences (graphical environment, program settings, etc.)\n"
-#~ "and its own \"home directory\", in which these preferences are\n"
-#~ "stored.\n"
-#~ "\n"
-#~ "\n"
-#~ "First of all, create an account for yourself! Even if you will be the "
-#~ "only user\n"
-#~ "of the machine, you may NOT connect as root for daily use of the system: "
-#~ "it's a\n"
-#~ "very high security risk. Making the system unusable is very often a typo "
-#~ "away.\n"
-#~ "\n"
-#~ "\n"
-#~ "Therefore, you should connect to the system using the user account\n"
-#~ "you will have created here, and login as root only for administration\n"
-#~ "and maintenance purposes."
-#~ msgstr ""
-#~ "Ara podeu crear un o ms comptes \"normals\" d'usuari, en\n"
-#~ "contraposici al compte \"privilegiat\", el 'root'. Podeu crear\n"
-#~ "un o ms comptes per a cada una de les persones a qui permetreu\n"
-#~ "utilitzar l'ordinador. Tingueu en compte que cada compte d'usuari\n"
-#~ "tindr les seves prpies preferncies (entorn grfic, parmetres\n"
-#~ "del programa. etc.) i el seu propi \"directori inicial\", on\n"
-#~ "s'emmagatzemen aquestes preferncies.\n"
-#~ "\n"
-#~ "\n"
-#~ "Primer de tot, creeu-vos un compte propi! Encara que sigueu l'nic\n"
-#~ "usuari de l'ordinador, NO us connecteu com a 'root'\n"
-#~ "per a l's quotidi del sistema: s un risc de seguretat molt alt.\n"
-#~ "Tot sovint, fer el sistema inutilitzable depn d'un simple error\n"
-#~ "tipogrfic.\n"
-#~ "\n"
-#~ "\n"
-#~ "Per tant, connecteu-vos al sistema amb el compte d'usuari que heu\n"
-#~ "creat, i entreu-hi com a 'root' noms per a tasques d'administraci\n"
-#~ "i manteniment."
+#~ msgid "Show all"
+#~ msgstr "Mostra'ls tots"
-#~ msgid ""
-#~ "Creating a boot disk is strongly recommended. If you can't\n"
-#~ "boot your computer, it's the only way to rescue your system without\n"
-#~ "reinstalling it."
-#~ msgstr ""
-#~ "s molt recomanable crear un disc d'arrencada. Si no podeu arrencar "
-#~ "l'ordinador,\n"
-#~ "s l'nica manera de solucionar-ho sense haver de reinstallar-ho tot."
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "S'est preparant la configuraci de l'X-Window"
-#~ msgid ""
-#~ "LILO and grub main options are:\n"
-#~ " - Boot device: Sets the name of the device (e.g. a hard disk\n"
-#~ "partition) that contains the boot sector. Unless you know specifically\n"
-#~ "otherwise, choose \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Video mode: This specifies the VGA text mode that should be selected\n"
-#~ "when booting. The following values are available: \n"
-#~ "\n"
-#~ " * normal: select normal 80x25 text mode.\n"
-#~ "\n"
-#~ " * <number>: use the corresponding text mode.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories\n"
-#~ "stored in \"/tmp\" when you boot your system, select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the\n"
-#~ "BIOS about the amount of RAM present in your computer. As consequence, "
-#~ "Linux may\n"
-#~ "fail to detect your amount of RAM correctly. If this is the case, you "
-#~ "can\n"
-#~ "specify the correct amount or RAM here. Please note that a difference of "
-#~ "2 or 4\n"
-#~ "MB between detected memory and memory present in your system is normal."
-#~ msgstr ""
-#~ "Les opcions principals del LILO i del Grub sn:\n"
-#~ " - Dispositiu d'arrencada: Defineix el nom del dispositiu (p.\n"
-#~ "ex., una partici del disc dur) que cont el sector d'arrencada.\n"
-#~ "Tret que sapigueu expressament que s'ha d'indicar una altra cosa,\n"
-#~ "trieu \"/dev/hda\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Temps d'espera abans d'arrencar la imatge per defecte: Especifica el\n"
-#~ "temps, en dcimes de segon, que el carregador d'arrencada ha\n"
-#~ "d'esperar abans de carregar la primera imatge.\n"
-#~ "Aix s til en sistemes que arrenquen immediatament des del disc\n"
-#~ "dur desprs d'habilitar el teclat. El carregador d'arrencada no\n"
-#~ "esperar si s'omet el \"temps d'espera\" o si se li dna el valor zero.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Mode de vdeo: Amb aix s'especifica el mode de text VGA que\n"
-#~ "cal seleccionar en arrencar. Es poden utilitzar els valors\n"
-#~ "segents:\n"
-#~ " * normal: selecciona el mode de text 80x25 normal.\n"
-#~ " * <nmero>: utilitza el mode de text corresponent.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Neteja de \"/tmp\" en cada arrencada: si voleu suprimir tots els "
-#~ "fitxers i\n"
-#~ "directoris emmagatzemats a \"/tmp\" en arrencar el sistame, seleccioneu\n"
-#~ "aquesta opci.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Si cal, indicaci de la mida exacta de la RAM: malauradament, no hi "
-#~ "cap\n"
-#~ "mtode estndard per preguntar al BIOS la quantitat de RAM que teniu a\n"
-#~ "l'ordinador. Per tant, s possible que el Linux no pugui detectar\n"
-#~ "correctament la quantitat de RAM installada. Si s aquest el cas, en "
-#~ "podeu\n"
-#~ "indicar aqu la quantitat correcta, per penseu que una diferncia de 2 o "
-#~ "4\n"
-#~ "MB entre la memria detectada i la memria real s normal."
-
-#~ msgid ""
-#~ "SILO is a bootloader for SPARC: it is able to boot\n"
-#~ "either GNU/Linux or any other operating system present on your computer.\n"
-#~ "Normally, these other operating systems are correctly detected and\n"
-#~ "installed. If this is not the case, you can add an entry by hand in this\n"
-#~ "screen. Be careful as to choose the correct parameters.\n"
-#~ "\n"
-#~ "\n"
-#~ "You may also want not to give access to these other operating systems to\n"
-#~ "anyone, in which case you can delete the corresponding entries. But\n"
-#~ "in this case, you will need a boot disk in order to boot them!"
-#~ msgstr ""
-#~ "El SILO s un carregador d'arrencada per a l'SPARC: pot arrencar el\n"
-#~ "GNU/Linux o qualsevol altre sistema operatiu que tingueu a l'ordinador.\n"
-#~ "Normalment, aquests altres sistemes operatius es detecten i installen\n"
-#~ "correctament, per si no s aix, podeu afegir-los manualment en aquesta\n"
-#~ "pantalla. Aneu amb compte de triar els parmetres correctes.\n"
-#~ "\n"
-#~ "\n"
-#~ "Tamb s possible que no volgueu donar accs a tothom a aquests sistemes\n"
-#~ "operatius; en aquest cas podeu suprimir les entrades corresponents, per\n"
-#~ "aleshores us caldr un disc d'arrencada per poder-los arrencar!"
-
-#~ msgid ""
-#~ "SILO main options are:\n"
-#~ " - Bootloader installation: Indicate where you want to place the\n"
-#~ "information required to boot to GNU/Linux. Unless you know exactly\n"
-#~ "what you are doing, choose \"First sector of drive (MBR)\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Delay before booting default image: Specifies the number in tenths\n"
-#~ "of a second the boot loader should wait before booting the first image.\n"
-#~ "This is useful on systems that immediately boot from the hard disk after\n"
-#~ "enabling the keyboard. The boot loader doesn't wait if \"delay\" is\n"
-#~ "omitted or is set to zero."
-#~ msgstr ""
-#~ "Les opcions principals del SILO sn:\n"
-#~ " - Installaci del carregador d'arrencada: indica on voleu situar la\n"
-#~ "informaci necessria per arrencar el GNU/Linux. Tret que sapigueu\n"
-#~ "exactament qu esteu fent, seleccioneu \"Primer sector de la unitat\n"
-#~ "(MBR)\".\n"
-#~ " \n"
-#~ "\n"
-#~ " - Temps d'espera abans d'arrencar la imatge per defecte: Especifica el\n"
-#~ "temps, en dcimes de segon, que el carregador d'arrencada ha\n"
-#~ "d'esperar abans de carregar la primera imatge.\n"
-#~ "Aix s til en sistemes que arrenquen immediatament des del disc\n"
-#~ "dur desprs d'habilitar el teclat. El carregador d'arrencada no\n"
-#~ "esperar si s'omet el \"temps d'espera\" o si se li dna el valor zero."
-
-#~ msgid ""
-#~ "Now it's time to configure the X Window System, which is the\n"
-#~ "core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
-#~ "you must configure your video card and monitor. Most of these\n"
-#~ "steps are automated, though, therefore your work may only consist\n"
-#~ "of verifying what has been done and accept the settings :)\n"
-#~ "\n"
-#~ "\n"
-#~ "When the configuration is over, X will be started (unless you\n"
-#~ "ask DrakX not to) so that you can check and see if the\n"
-#~ "settings suit you. If they don't, you can come back and\n"
-#~ "change them, as many times as necessary."
-#~ msgstr ""
-#~ "Ara cal configurar el sistema X Window, que s el nucli del GUI\n"
-#~ "(Interfcie grfica d'usuari) del GNU/Linux. Per a aix, heu de\n"
-#~ "configurar la vostra targeta grfica i el monitor. No obstant\n"
-#~ "aix, la majoria d'aquests passos estan automatitzats, aix que pot\n"
-#~ "ser que la vostra feina es limiti a verificar qu s'ha fet i a\n"
-#~ "acceptar els parmetres :)\n"
-#~ "\n"
-#~ "\n"
-#~ "Quan la configuraci hagi acabat s'iniciar X (tret que demaneu al\n"
-#~ "Drakx que no ho faci), i podreu verificar si els parmetres us\n"
-#~ "convenen. Si no, podreu tornar enrere i canviar-los tantes vegades\n"
-#~ "com calgui."
-
-#~ msgid ""
-#~ "If something is wrong in X configuration, use these options to correctly\n"
-#~ "configure the X Window System."
-#~ msgstr ""
-#~ "Si hi ha algun problema a la configuraci X, utilitzeu aquestes opcions\n"
-#~ "per configurar correctament l'X Window System."
-
-#~ msgid ""
-#~ "If you prefer to use a graphical login, select \"Yes\". Otherwise, "
-#~ "select\n"
-#~ "\"No\"."
-#~ msgstr ""
-#~ "Si preferiu utilitzar una entrada grfica, seleccioneu \"S\". En cas\n"
-#~ "contrari, seleccioneu \"No\"."
-
-#~ msgid ""
-#~ "You can choose a security level for your system. Please refer to the "
-#~ "manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ msgstr ""
-#~ "Podeu triar un nivell de seguretat per al vostre sistema. Si us plau,\n"
-#~ "consulteu el manual per obtenir informaci completa. Bsicament, si no\n"
-#~ "sabeu qu triar, conserveu l'opci per defecte.\n"
-
-#~ msgid ""
-#~ "Your system is going to reboot.\n"
-#~ "\n"
-#~ "After rebooting, your new Mandrake Linux system will load automatically.\n"
-#~ "If you want to boot into another existing operating system, please read\n"
-#~ "the additional instructions."
-#~ msgstr ""
-#~ "Ara, el sistema es tornar a arrencar.\n"
-#~ "\n"
-#~ "Desprs d'aix, el sistema Mandrake Linux es carregar\n"
-#~ "automticament. Si voleu arrencar un altre sistema operatiu existent,\n"
-#~ "llegiu les instruccions addicionals."
-
-#~ msgid "Czech (Programmers)"
-#~ msgstr "Txec (Programadors)"
-
-#~ msgid "Slovakian (Programmers)"
-#~ msgstr "Eslovac (Programadors)"
-
-#~ msgid "Name of the profile to create:"
-#~ msgstr "Nom del perfil a crear:"
-
-#~ msgid "Write /etc/fstab"
-#~ msgstr "Escriu a /etc/fstab"
-
-#~ msgid "Format all"
-#~ msgstr "Formata-ho tot"
-
-#~ msgid "After formatting all partitions,"
-#~ msgstr "Desprs de formatar totes les particions,"
-
-#~ msgid "all data on these partitions will be lost"
-#~ msgstr "totes les dades d'aquestes particions s'hauran perdut"
-
-#~ msgid "Reload"
-#~ msgstr "Torna a carregar"
-
-#~ msgid ""
-#~ "Do you want to generate an auto install floppy for linux replication?"
-#~ msgstr ""
-#~ "Voleu generar un disquet d'installaci automtica per fer cpies del "
-#~ "Linux?"
-
-#~ msgid "ADSL configuration"
-#~ msgstr "Configuraci de l'ADSL"
-
-#~ msgid ""
-#~ "With a remote CUPS server, you do not have to configure\n"
-#~ "any printer here; printers will be automatically detected\n"
-#~ "unless you have a server on a different network; in the\n"
-#~ "latter case, you have to give the CUPS server IP address\n"
-#~ "and optionally the port number."
-#~ msgstr ""
-#~ "Amb un servidor CUPS remot, aqu no us cal configurar cap\n"
-#~ "impressora; les impressores es detectaran automticament,\n"
-#~ "tret que tingueu un servidor en una altra xarxa; en aquest\n"
-#~ "cas, heu d'indicar l'adrea IP, i opcionalment el nmero de\n"
-#~ "port, al servidor CUPS."
-
-#~ msgid "Remote queue"
-#~ msgstr "Cua remota"
-
-#, fuzzy
-#~ msgid "Remote queue name missing!"
-#~ msgstr "Cua remota"
-
-#, fuzzy
-#~ msgid "Command line"
-#~ msgstr "Nom de domini"
-
-#, fuzzy
-#~ msgid "Modify printer"
-#~ msgstr "Cap impressora"
-
-#~ msgid "Network Monitoring"
-#~ msgstr "Monitoritzaci de la xarxa"
-
-#~ msgid "Profile "
-#~ msgstr "Perfil "
-
-#~ msgid "Statistics"
-#~ msgstr "Estadstiques"
-
-#~ msgid "Sending Speed:"
-#~ msgstr "S'est enviant la velocitat: "
-
-#~ msgid "Receiving Speed:"
-#~ msgstr "S'est rebent la velocitat: "
-
-#, fuzzy
-#~ msgid "Connection Time: "
-#~ msgstr "Tipus de connexi: "
-
-#~ msgid "Connecting to Internet "
-#~ msgstr "S'est establint la connexi a Internet"
-
-#~ msgid "Disconnecting from Internet "
-#~ msgstr "S'est realitzant la desconnexi d'Internet"
-
-#~ msgid "Disconnection from Internet failed."
-#~ msgstr "No s'ha pogut realitzar la desconnexi d'Internet"
-
-#~ msgid "Disconnection from Internet complete."
-#~ msgstr "La desconnexi d'Internet ha finalitzat"
-
-#~ msgid "Connection complete."
-#~ msgstr "La connexi ha finalitzat."
-
-#~ msgid ""
-#~ "Connection failed.\n"
-#~ "Verify your configuration in the Mandrake Control Center."
-#~ msgstr ""
-#~ "No s'ha pogut establir la connexi.\n"
-#~ "Comproveu la configuraci al Centre de control de Mandrake."
-
-#~ msgid "sent: "
-#~ msgstr "enviat: "
-
-#~ msgid "received: "
-#~ msgstr "rebut: "
-
-#, fuzzy
-#~ msgid "average"
-#~ msgstr "escombraries"
-
-#, fuzzy
-#~ msgid "Default Runlevel"
-#~ msgstr "Predeterminat"
-
-#~ msgid "NetWare"
-#~ msgstr "NetWare"
-
-#~ msgid "Config file content could not be interpreted."
-#~ msgstr "No s'ha pogut interpretar el contingut del fitxer de configuraci."
-
-#~ msgid "Unrecognized config file"
-#~ msgstr "Fitxer de configuraci no reconegut"
-
-#~ msgid "Adapter"
-#~ msgstr "Adaptador"
-
-#~ msgid "Disable network"
-#~ msgstr "Inhabilita el sistema de xarxa"
-
-#, fuzzy
-#~ msgid "Enable network"
-#~ msgstr "Inhabilita el sistema de xarxa"
-
-#~ msgid ""
-#~ "You can now test your mouse. Use buttons and wheel to verify\n"
-#~ "if settings are good. If not, you can click on \"Cancel\" to choose "
-#~ "another\n"
-#~ "driver."
-#~ msgstr ""
-#~ "Ara podeu provar el ratol. Utilitzeu els botons i la bola per comprovar "
-#~ "que\n"
-#~ "els parmetres sn correctes; si no ho sn, feu clic a \"Cancella\" per\n"
-#~ "seleccionar un altre controlador."
-
-#~ msgid "DSL (or ADSL) connection"
-#~ msgstr "Connexi per DSL (o ADSL)"
-
-#, fuzzy
-#~ msgid "Choose"
-#~ msgstr "Tanca"
-
-#~ msgid "You can specify directly the URI to access the printer with CUPS."
-#~ msgstr ""
-#~ "Podeu indicar directament l'URI per accedir a la impressora amb CUPS."
-
-#~ msgid "Yes, print ASCII test page"
-#~ msgstr "S, imprimeix una pgina ASCII de prova"
-
-#~ msgid "Yes, print PostScript test page"
-#~ msgstr "S, imprimeix una pgina PostScript de prova"
-
-#~ msgid "Paper Size"
-#~ msgstr "Mida del paper"
-
-#~ msgid "Eject page after job?"
-#~ msgstr "Voleu expulsar la pgina desprs de la tasca?"
-
-#~ msgid "Uniprint driver options"
-#~ msgstr "Opcions del programa de control Uniprint"
-
-#~ msgid "Color depth options"
-#~ msgstr "Opcions de profunditat del color"
-
-#~ msgid "Print text as PostScript?"
-#~ msgstr "Voleu imprimir el text com a PostScript?"
-
-#~ msgid "Fix stair-stepping text?"
-#~ msgstr "Voleu ajustar el text 'stair-stepping'?"
-
-#~ msgid "Number of pages per output pages"
-#~ msgstr "Nombre de pgines per pgines de sortida"
-
-#~ msgid "Right/Left margins in points (1/72 of inch)"
-#~ msgstr "Marges dret/esquerra en punts (1/72 de polzada)"
-
-#~ msgid "Top/Bottom margins in points (1/72 of inch)"
-#~ msgstr "Marges superior/inferior en punts (1/72 de polzada)"
-
-#~ msgid "Extra GhostScript options"
-#~ msgstr "opcions addicionals del GhostScript"
-
-#~ msgid "Extra Text options"
-#~ msgstr "Opcions addicionals per al text"
-
-#~ msgid "Reverse page order"
-#~ msgstr "Inverteix l'ordre de les pgines"
-
-#~ msgid "Select Remote Printer Connection"
-#~ msgstr "Seleccioneu la connexi de la impressora remota"
-
-#~ msgid ""
-#~ "Every printer need a name (for example lp).\n"
-#~ "Other parameters such as the description of the printer or its location\n"
-#~ "can be defined. What name should be used for this printer and\n"
-#~ "how is the printer connected?"
-#~ msgstr ""
-#~ "Cada impressora necessita un nom (p.ex. lp).\n"
-#~ "Es poden definir altres parmetres, com ara la descripci de la "
-#~ "impressora\n"
-#~ "o la seva ubicaci. Quin nom cal utilitzar per a aquesta impressora, i "
-#~ "com\n"
-#~ "est connectada?"
-
-#~ msgid ""
-#~ "Every print queue (which print jobs are directed to) needs a\n"
-#~ "name (often lp) and a spool directory associated with it. What\n"
-#~ "name and directory should be used for this queue and how is the printer "
-#~ "connected?"
-#~ msgstr ""
-#~ "Cada cua d'impressi (a qu s'adrecen les tasques d'impressi) necessita\n"
-#~ "un nom (sovint lp) i un directori d'spool associada amb ell. Quin nom i\n"
-#~ "directori cal utilitzar per a aquesta cua, i com est connectada la "
-#~ "impressora?"
-
-#~ msgid "Name of queue"
-#~ msgstr "Nom de la cua"
-
-#~ msgid "Spool directory"
-#~ msgstr "Directori d'spool"
-
-#~ msgid "Disable"
-#~ msgstr "Inhabilita"
-
-#~ msgid "Enable"
-#~ msgstr "Habilita"
-
-#~ msgid ""
-#~ "To enable a more secure system, you should select \"Use shadow file\" "
-#~ "and\n"
-#~ "\"Use MD5 passwords\"."
-#~ msgstr ""
-#~ "Per habilitar un sistema ms segur, seleccioneu \"Utilitza el\n"
-#~ "fitxer d'ombra\" i \"Utilitza les contrasenyes MD5\"."
-
-#~ msgid ""
-#~ "If your network uses NIS, select \"Use NIS\". If you don't know, ask "
-#~ "your\n"
-#~ "network administrator."
-#~ msgstr ""
-#~ "Si la vostra xarxa utilitza NIS, seleccioneu \"Utilitza NIS\". Si no ho\n"
-#~ "sabeu, consulteu a l'administrador de la xarxa."
-
-#~ msgid "yellow pages"
-#~ msgstr "pgines grogues"
-
-#, fuzzy
-#~ msgid "Light configuration"
-#~ msgstr "Configuraci de la LAN"
-
-#~ msgid "Provider dns 1"
-#~ msgstr "DNS 1 del provedor"
+#~ msgid "What do you want to do?"
+#~ msgstr "Qu voleu fer?"
-#~ msgid "Provider dns 2"
-#~ msgstr "DNS 2 del provedor"
+#~ msgid "Change Monitor"
+#~ msgstr "Canvia el monitor"
-#~ msgid "How do you want to connect to the Internet?"
-#~ msgstr "Com us voleu connectar a Internet?"
+#~ msgid "Change Graphics card"
+#~ msgstr "Canvia la targeta grfica"
-#~ msgid "cannot fork: "
-#~ msgstr "no es pot bifurcar: "
+#~ msgid "Change Server options"
+#~ msgstr "Canvia les opcions del servidor"
-#~ msgid "Configure..."
-#~ msgstr "Configura..."
+#~ msgid "Change Resolution"
+#~ msgstr "Canvia la resoluci"
-#~ msgid "Selected size %d%s"
-#~ msgstr "S'ha seleccionat la mida %d%s"
+#~ msgid "Show information"
+#~ msgstr "Mostra la informaci"
-#~ msgid "Opening your connection..."
-#~ msgstr "S'est obrint la connexi..."
+#~ msgid "Test again"
+#~ msgstr "Torna-ho a comprovar"
-#~ msgid "This startup script try to load your modules for your usb mouse."
-#~ msgstr "Aquest script d'inici intenta carregar els mduls del ratol USB."
+#~ msgid "Setting security level"
+#~ msgstr "S'est establint el nivell de seguretat"
-#~ msgid "Configuration de Lilo/Grub"
-#~ msgstr "Configuraci del LILO/Grub"
+#~ msgid "Graphics card"
+#~ msgstr "Targeta grfica"
-#~ msgid "Boot style configuration"
-#~ msgstr "Configuraci del tipus d'arrencada"
+#~ msgid "Select a graphics card"
+#~ msgstr "Seleccioneu una targeta grfica"
-#~ msgid ""
-#~ "Now that your Internet connection is configured,\n"
-#~ "your computer can be configured to share its Internet connection.\n"
-#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
-#~ "(LAN).\n"
-#~ "\n"
-#~ "Would you like to setup the Internet Connection Sharing?\n"
+#~ msgid "Warning: testing this graphics card may freeze your computer"
#~ msgstr ""
-#~ "Ara que ja teniu configurada la connexi a Internet,\n"
-#~ "podeu configurar l'ordinador per tal que la comparteixi.\n"
-#~ "Nota: per configurar una xarxa d'rea local (LAN), us cal un adaptador de "
-#~ "xarxa dedicat.\n"
-#~ "\n"
-#~ "Voleu configurar la connexi a Internet compartida?\n"
-
-#~ msgid "Welcome to the Internet Connection Sharing utility!"
-#~ msgstr "Benvingut a la utilitat de compartici de la connexi a Internet!"
+#~ "Avs: la comprovaci d'aquesta targeta grfica pot penjar-vos l'ordinador"
-#~ msgid "Automatic dependencies"
-#~ msgstr "Dependncies automtiques"
+#~ msgid "Standard VGA, 640x480 at 60 Hz"
+#~ msgstr "VGA estndard, 640x480 a 60 Hz"
-#~ msgid "Configure LILO/GRUB"
-#~ msgstr "Configura el LILO/GRUB"
+#~ msgid "Super VGA, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 800x600 a 60 Hz"
-#~ msgid "Create a boot floppy"
-#~ msgstr "Crea un disquet d'arrencada"
+#~ msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
+#~ msgstr "Compatible 8514, 1024x768 a 87 Hz entrellaada (no 800x600)"
-#~ msgid "Choice"
-#~ msgstr "Elecci"
+#~ msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
+#~ msgstr "Super VGA, 1024x768 a 87 Hz entrellaada, 800x600 a 56 Hz"
-#~ msgid "horizontal nice looking aurora"
-#~ msgstr "aurora horitzontal amb bon aspecte"
+#~ msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
+#~ msgstr "Super VGA ampliada, 800x600 a 60 Hz, 640x480 a 72 Hz"
-#~ msgid "vertical traditional aurora"
-#~ msgstr "aurora vertical tradicional"
-
-#~ msgid "gMonitor"
-#~ msgstr "gMonitor"
-
-#~ msgid ""
-#~ "You can now select some miscellaneous options for your system.\n"
-#~ "\n"
-#~ "* Use hard drive optimizations: this option can improve hard disk "
-#~ "performance but is only for advanced users. Some buggy\n"
-#~ " chipsets can ruin your data, so beware. Note that the kernel has a "
-#~ "builtin blacklist of drives and chipsets, but if\n"
-#~ " you want to avoid bad surprises, leave this option unset.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Choose security level: you can choose a security level for your system. "
-#~ "Please refer to the manual for complete\n"
-#~ " information. Basically, if you don't know what to choose, keep the "
-#~ "default option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Precise RAM if needed: unfortunately, there is no standard method to "
-#~ "ask the BIOS about the amount of RAM present in\n"
-#~ " your computer. As consequence, Linux may fail to detect your amount of "
-#~ "RAM correctly. If this is the case, you can\n"
-#~ " specify the correct amount or RAM here. Please note that a difference "
-#~ "of 2 or 4 MB between detected memory and memory\n"
-#~ " present in your system is normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Removable media automounting: if you would prefer not to manually mount "
-#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
-#~ " typing \"mount\" and \"umount\", select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Clean \"/tmp\" at each boot: if you want delete all files and "
-#~ "directories stored in \"/tmp\" when you boot your system,\n"
-#~ " select this option.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Enable num lock at startup: if you want NumLock key enabled after "
-#~ "booting, select this option. Please note that you\n"
-#~ " should not enable this option on laptops and that NumLock may or may "
-#~ "not work under X."
-#~ msgstr ""
-#~ "Ara podeu seleccionar diverses opcions per al vostre sistema.\n"
-#~ "\n"
-#~ "* Utilitzaci de l'optimitzaci del disc dur: Aquesta opci pot millorar "
-#~ "el\n"
-#~ "rendiment del disc dur, per s noms per a usuaris avanats. Alguns "
-#~ "xips\n"
-#~ "amb errors poden fer malb les vostres dades, aix que aneu amb compte. "
-#~ "El\n"
-#~ "nucli inclou una \"llista negra\" d'unitats i jocs de xips, per, si "
-#~ "voleu\n"
-#~ "evitar-vos sorpreses desagradables, no activeu aquesta opci.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Selecci d'un nivell de seguretat: Podeu escollir un nivell de\n"
-#~ "seguretat per al sistema. Si us plau, consulteu el manual per a ms\n"
-#~ "informaci. Bsicament, si no n'esteu segur, trieu l'opci "
-#~ "predeterminada.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Si cal, indicaci de la mida exacta de la RAM: malauradament, no hi "
-#~ "cap\n"
-#~ "mtode estndard per preguntar al BIOS la quantitat de RAM que hi ha a\n"
-#~ "l'ordinador. Per tant, s possible que el Linux no pugui detectar\n"
-#~ "correctament la quantitat de RAM installada. Si s aquest el cas, en "
-#~ "podeu\n"
-#~ "indicar aqu la quantitat correcta, per penseu que una diferncia de 2 o "
-#~ "4\n"
-#~ "MB entre la memria detectada i la memria real s normal.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Muntatge automtic de suports extrables: Si preferiu no haver\n"
-#~ "de muntar manualment les unitats extrables (CD-ROM, disquet, Zip)\n"
-#~ "escrivint \"mount\" i \"umount\", seleccioneu aquesta opci.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Neteja de \"/tmp\" en cada arrencada: si voleu suprimir tots els "
-#~ "fitxers\n"
-#~ "i directoris que hi ha emmagatzemats a \"/tmp\" quan arranqueu el "
-#~ "sistema,\n"
-#~ "seleccioneu aquesta opci.\n"
-#~ "\n"
-#~ "\n"
-#~ "* Habilitaci de BlocNum a l'inici: Si voleu que BlocNum s'habiliti "
-#~ "desprs\n"
-#~ "de l'arrencada, seleccioneu aquesta opci. Tingueu en compte que no heu\n"
-#~ "d'habilitar aquesta opci en porttils i que BlocNum pot funcionar o pot "
-#~ "no\n"
-#~ "funcionar sota X."
-
-#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
-#~ msgstr ""
-#~ "Si us plau, tingueu pacincia; la configuraci del correu encara no est "
-#~ "implementada."
+#~ msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
+#~ msgstr "SVGA no entrellaada, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-#~ msgid ""
-#~ "Welcome to The Network Configuration Wizard.\n"
-#~ "Which components do you want to configure?\n"
-#~ msgstr ""
-#~ "Benvingut a l'Auxiliar de configuraci de la xarxa.\n"
-#~ "Quins components voleu configurar?\n"
+#~ msgid "High Frequency SVGA, 1024x768 at 70 Hz"
+#~ msgstr "SVGA d'alta freqncia, 1024x768 a 70 Hz"
-#~ msgid "Internet/Network access"
-#~ msgstr "Accs a Internet/xarxa"
+#~ msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
+#~ msgstr "Multi-freqncia que pot fer 1280x1024 a 60 Hz"
-#~ msgid "Miscellaneous"
-#~ msgstr "Miscellnia"
+#~ msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
+#~ msgstr "Multi-freqncia que pot fer 1280x1024 a 74 Hz"
-#~ msgid "Miscellaneous questions"
-#~ msgstr "Preguntes diverses"
+#~ msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
+#~ msgstr "Multi-freqncia que pot fer 1280x1024 a 76 Hz"
-#~ msgid "Can't use supermount in high security level"
-#~ msgstr "No es pot utilitzar supermount en un nivell d'alta seguretat"
+#~ msgid "Monitor that can do 1600x1200 at 70 Hz"
+#~ msgstr "Monitor que pot fer 1600x1200 a 70 Hz"
-#~ msgid ""
-#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
-#~ "More generally, do not expect to use your machine for anything but as a "
-#~ "server.\n"
-#~ "You have been warned."
-#~ msgstr ""
-#~ "Atenci: EN AQUEST NIVELL DE SEGURETAT NO ES POT ENTRAR COM A ROOT A LA "
-#~ "CONSOLA!\n"
-#~ "Si voleu ser root, heu d'entrar com a usuari i aleshores utilitzar \"su"
-#~ "\".\n"
-#~ "En general, no espereu utilitzar l'ordinador per a altre cosa que com a "
-#~ "servidor.\n"
-#~ "Esteu avisat."
+#~ msgid "Monitor that can do 1600x1200 at 76 Hz"
+#~ msgstr "Monitor que pot fer 1600x1200 a 76 Hz"
#~ msgid ""
-#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
+#~ "The total size for the groups you have selected is approximately %d MB.\n"
#~ msgstr ""
-#~ "Aneu amb compte; si teniu BlocNm habilitat, moltes tecles donaran\n"
-#~ "nmeros en comptes de lletres (p.ex., si premeu la `p' obtindreu un `6')"
-
-#~ msgid "not connected"
-#~ msgstr "sense connexi"
-
-#~ msgid "Scientific applications"
-#~ msgstr "Aplicacions cientfiques"
-
-#~ msgid "File/Print/Samba"
-#~ msgstr "Servidor, Fitxer/Impressi/Samba"
-
-#~ msgid "DNS/DHCP "
-#~ msgstr "Servidor, DNS/DHCP "
-
-#~ msgid "First DNS Server"
-#~ msgstr "Servidor DNS primari"
-
-#~ msgid "Second DNS Server"
-#~ msgstr "Servidor DNS secundari"
-
-#~ msgid "using module"
-#~ msgstr "s'est utilitzant el mdul"
-
-#~ msgid "Development, Database"
-#~ msgstr "Desenvolupament, base de dades"
-
-#~ msgid "Development, Integrated Environment"
-#~ msgstr "Desenvolupament, entorn integrat"
-
-#~ msgid "Development, Standard tools"
-#~ msgstr "Desenvolupament, eines estndard"
+#~ "La mida total dels grups que heu seleccionat es d'aproximadament %d MB.\n"
#~ msgid ""
+#~ "If you wish to install less than this size,\n"
+#~ "select the percentage of packages that you want to install.\n"
#~ "\n"
-#~ "Warning:\n"
-#~ "Applying the changes while running may crash your X environnement."
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of 100%% will install all selected packages."
#~ msgstr ""
+#~ "Si no voleu installar tants MB, seleccioneu el percentatge de paquets\n"
+#~ "que voleu installar.\n"
#~ "\n"
-#~ "Avs:\n"
-#~ "Si apliquu els canvis durant l'execuci, s possible que l'entorn X "
-#~ "caigui."
+#~ "Un percentatge baix installar noms els paquets ms importants;\n"
+#~ "un percentatge del 100%% installar tots els paquets seleccionats."
#~ msgid ""
+#~ "You have space on your disk for only %d%% of these packages.\n"
#~ "\n"
-#~ "If you continue, I will shut down your %s environnement"
+#~ "If you wish to install less than this,\n"
+#~ "select the percentage of packages that you want to install.\n"
+#~ "A low percentage will install only the most important packages;\n"
+#~ "a percentage of %d%% will install as many packages as possible."
#~ msgstr ""
+#~ "Noms teniu prou espai al disc per a %d%% d'aquests paquets.\n"
#~ "\n"
-#~ "Si continueu, tancar l'entorn %s"
+#~ "Si en voleu installar menys, seleccioneu el percentatge de paquets\n"
+#~ "que voleu installar.\n"
+#~ "Un percentatge baix installar noms els paquets ms importants;\n"
+#~ "un percentatge del %d%% installar tants paquets com sigui possible."
-#~ msgid "loopback"
-#~ msgstr "loopback"
+#~ msgid "You will be able to choose them more specifically in the next step."
+#~ msgstr "Podreu fer una elecci ms concreta al pas segent"
-#~ msgid "Which bootloader(s) do you want to use?"
-#~ msgstr "Quin(s) carregador(s) d'arrencada voleu utilitzar?"
+#~ msgid "Percentage of packages to install"
+#~ msgstr "Percentatge de paquets per installar"
-#~ msgid "Auto install floppy"
-#~ msgstr "Disquet d'installaci automtica"
+#~ msgid "Please choose the desired security level."
+#~ msgstr "Escolliu el nivell de seguretat"
-#~ msgid "Try to find a modem?"
-#~ msgstr "Voleu que intenti trobar un mdem?"
+#~ msgid "hide expert mode"
+#~ msgstr "oculta el mode expert"
-#~ msgid "Configure an ISDN connection"
-#~ msgstr "Configura una connexi per XDSI"
-
-#~ msgid "Disable Internet Connection"
-#~ msgstr "Inhabilita la connexi a Internet"
-
-#~ msgid "Configure local network"
-#~ msgstr "Configura la xarxa local"
-
-#~ msgid "Configure the Internet connection / Configure local Network"
-#~ msgstr "Configura la connexi a Internet / Configura la xarxa local"
+#~ msgid "show expert mode"
+#~ msgstr "mostra el mode expert"
#~ msgid ""
-#~ "Local networking has already been configured.\n"
-#~ "Do you want to:"
+#~ "If '%s' is a removable peripheral,\n"
+#~ " verify that a media is inserted."
#~ msgstr ""
-#~ "La xarxa local ja s'ha configurat.\n"
-#~ "Voleu:"
-
-#~ msgid "Graphics Manipulation"
-#~ msgstr "Manipulaci de grfics"
-
-#~ msgid "Sciences"
-#~ msgstr "Cincies"
+#~ "Si '%s' s un perifric extrable,\n"
+#~ " comproveu que hi ha un suport present."
#~ msgid ""
-#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and "
-#~ "file transfer tools"
+#~ "WARNING! This will format '%s'.\n"
+#~ "All data will be erased on the peripheral '%s'.\n"
+#~ "If you want to continue, press OK. "
#~ msgstr ""
-#~ "Programes de xat (IRC o missatgeria instantnia) com ara xchat, licq, "
-#~ "gaim, i eines de transferncia de fitxers"
-
-#~ msgid "Communication facilities"
-#~ msgstr "Installacions de comunicaci"
-
-#~ msgid "KDE"
-#~ msgstr "KDE"
-
-#~ msgid "Gnome"
-#~ msgstr "Gnome"
-
-#~ msgid "Internet Tools"
-#~ msgstr "Eines d'Internet"
-
-#~ msgid "Databases clients and servers (mysql and postgresql)"
-#~ msgstr "Clients de bases de dades i servidors (mysql i postgresql)"
-
-#~ msgid "Development C/C++"
-#~ msgstr "Desenvolupament C/C++"
-
-#~ msgid "Configure timezone"
-#~ msgstr "Zona horria"
-
-#~ msgid "(may cause data corruption)"
-#~ msgstr "(pot malmetre les dades)"
-
-#~ msgid "Enable num lock at startup"
-#~ msgstr "Habilita la tecla Bloc Num en iniciar"
-
-#~ msgid "Confirm Password"
-#~ msgstr "Confirmeu la contrasenya"
+#~ "ATENCI! Amb aix formatareu '%s'.\n"
+#~ "S'esborraran totes les dades del perifric '%s'.\n"
+#~ "Si voleu continuar, premeu D'acord. "
-#~ msgid "default"
-#~ msgstr "predeterminat"
+#~ msgid "unknown"
+#~ msgstr "desconegut"
-#~ msgid "What is your system used for?"
-#~ msgstr "Amb quina finalitat utilitzeu el sistema?"
-
-#~ msgid "Select the size you want to install"
-#~ msgstr "Seleccioneu la mida que voleu installar"
-
-#~ msgid "Use diskdrake"
-#~ msgstr "Utilitza el diskdrake"
-
-#~ msgid "Customized"
-#~ msgstr "Personalitzada"
-
-#~ msgid ""
-#~ "Are you sure you are an expert? \n"
-#~ "You will be allowed to make powerful but dangerous things here.\n"
-#~ "\n"
-#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-#~ "are you ready to answer that kind of questions?"
-#~ msgstr ""
-#~ "Esteu segur que sou un expert? \n"
-#~ "Aqu podreu fer coses molt potents, per tamb perilloses.\n"
-#~ "\n"
-#~ "Us preguntaran coses com: ``Voleu utilitzar un fitxer d'ombres per a les "
-#~ "contrasenyes?'',\n"
-#~ "Sou capa de respondre aquest tipus de preguntes?"
-
-#~ msgid "Use shadow file"
-#~ msgstr "Utilitza el fitxer d'ombra"
-
-#~ msgid "MD5"
-#~ msgstr "MD5"
-
-#~ msgid "Use MD5 passwords"
-#~ msgstr "Utilitza les contrasenyes MD5"
-
-#~ msgid "Search"
-#~ msgstr "Cerca"
-
-#~ msgid "Package"
-#~ msgstr "Paquet"
-
-#~ msgid "Tree"
-#~ msgstr "Arbre"
-
-#~ msgid "Sort by"
-#~ msgstr "Ordena per"
+#~ msgid "Select a module or write his name:"
+#~ msgstr "Seleccioneu un mdul o escriviu-ne el nom:"
#~ msgid "Category"
#~ msgstr "Categoria"
-#~ msgid "Installed packages"
-#~ msgstr "Paquets installats"
-
-#~ msgid "Available packages"
-#~ msgstr "Paquets disponibles"
-
-#~ msgid "Show only leaves"
-#~ msgstr "Mostra noms les fulles"
-
-#~ msgid "Expand all"
-#~ msgstr "Expandeix-ho tot"
-
-#~ msgid "Collapse all"
-#~ msgstr "Redueix-ho tot"
-
-#~ msgid "Add location of packages"
-#~ msgstr "Afegeix la ubicaci dels paquets"
-
-#~ msgid "Update location"
-#~ msgstr "Actualitza la ubicaci"
-
-#~ msgid "Find Package"
-#~ msgstr "Cerca el paquet"
-
-#~ msgid "Find Package containing file"
-#~ msgstr "Cerca el paquet que cont el fitxer"
-
-#~ msgid "Toggle between Installed and Available"
-#~ msgstr "Commuta entre Installats i Disponibles"
-
-#~ msgid "Checking dependencies"
-#~ msgstr "S'estan comprovant les dependncies"
-
-#~ msgid "The following packages are going to be uninstalled"
-#~ msgstr "Ara es desinstallaran els paquets segents"
-
-#~ msgid "Regexp"
-#~ msgstr "Regexp"
-
-#~ msgid "Which package are looking for"
-#~ msgstr "Quin paquet esteu cercant"
-
-#~ msgid "No match"
-#~ msgstr "Cap coincidncia"
-
-#~ msgid "No more match"
-#~ msgstr "Cap altra coincidncia"
-
-#~ msgid ""
-#~ "rpmdrake is currently in ``low memory'' mode.\n"
-#~ "I'm going to relaunch rpmdrake to allow searching files"
-#~ msgstr ""
-#~ "Actualment, l'rpmdrake est en el mode ``poca memria''.\n"
-#~ "Ara tornar a reiniciar l'rpmdrake per permetre la recerca de fitxers"
-
-#~ msgid "Which file are you looking for?"
-#~ msgstr "Quin fitxer esteu cercant?"
-
-#~ msgid "What are looking for?"
-#~ msgstr "Qu esteu cercant?"
-
-#~ msgid "Give a name (eg: `extra', `commercial')"
-#~ msgstr "Introduu un nom (p.ex. `extra', `comercial')"
-
-#~ msgid "Directory"
-#~ msgstr "Directori"
-
-#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
-#~ msgstr "No hi ha cap CD-ROM disponible (no hi ha res a /mnt/cdrom)"
-
-#~ msgid "URL of the directory containing the RPMs"
-#~ msgstr "L'URL del directori que cont els RPM"
-
-#~ msgid ""
-#~ "For FTP and HTTP, you need to give the location for hdlist\n"
-#~ "It must be relative to the URL above"
-#~ msgstr ""
-#~ "Per a FTP i HTTP, us cal introduir la ubicaci de hdlist\n"
-#~ "Ha de ser relativa a l'URL superior"
-
-#~ msgid "Please submit the following information"
-#~ msgstr "Si us plau, trameteu la informaci segent"
-
-#~ msgid "%s is already in use"
-#~ msgstr "%s ja s en s"
-
-#~ msgid "Updating the RPMs base"
-#~ msgstr "S'est actualitzant la base dels RPM"
-
-#~ msgid "Going to remove entry %s"
-#~ msgstr "Ara s'eliminar l'entrada %s"
-
-#~ msgid "Finding leaves"
-#~ msgstr "S'estan cercant les fulles"
-
-#~ msgid "Finding leaves takes some time"
-#~ msgstr "Cal una mica de temps per cercar les fulles"
-
-#~ msgid "I have found an ISDN Card:\n"
-#~ msgstr "He trobat una targeta XDSI:\n"
-
-#~ msgid "Other countries"
-#~ msgstr "Altres pasos"
-
-#~ msgid "In which country are you located ?"
-#~ msgstr "A quin pas us trobeu?"
-
-#~ msgid "Alcatel modem"
-#~ msgstr "Mdem Alcatel"
-
-#~ msgid "ECI modem"
-#~ msgstr "Mdem ECI"
-
-#~ msgid ""
-#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-#~ msgstr ""
-#~ "Si el vostre mdem adsl s un mdem Alcatel, seleccioneu Alcatel. Si no, "
-#~ "ECI."
-
-#~ msgid "don't use pppoe"
-#~ msgstr "no utilitzis pppoe"
-
-#~ msgid "i18n (important)"
-#~ msgstr "i18n (important)"
-
-#~ msgid "i18n (very nice)"
-#~ msgstr "i18n (molt bonic)"
-
-#~ msgid "i18n (nice)"
-#~ msgstr "i18n (bonic)"
-
-#~ msgid "Which serial port is your mouse connected to?"
-#~ msgstr "A quin port srie est connectat el vostre ratol?"
-
-#~ msgid "KDE, QT, Gnome, GTK+"
-#~ msgstr "KDE, QT, Gnome, GTK+"
-
-#~ msgid "Python, Perl, libraries, tools"
-#~ msgstr "Python, Perl, biblioteques, eines"
-
-#~ msgid "Czech"
-#~ msgstr "Txec"
-
-#~ msgid "Slovakian"
-#~ msgstr "Eslovac"
-
-#~ msgid "Could not install ipchains RPM with urpmi."
-#~ msgstr "No s'ha pogut installar el RPM d'ipchains amb l'urpmi."
-
-#~ msgid "Could not install dhcp RPM with urpmi."
-#~ msgstr "No s'ha pogut installar el RPM de dhcp amb l'urpmi."
-
-#~ msgid "Could not install linuxconf RPM with urpmi."
-#~ msgstr "No s'ha pogut installar el RPM de linuxconf amb l'urpmi."
-
-#~ msgid "Could not install bind RPM with urpmi."
-#~ msgstr "No s'ha pogut installar el RPM de bind amb l'urpmi."
-
-#~ msgid "Could not install caching-nameserver RPM with urpmi."
-#~ msgstr "No s'ha pogut installar el RPM de caching-nameserver amb l'urpmi"
-
-#~ msgid "Reconfigure local network"
-#~ msgstr "Torna a configurar la xarxa local"
-
-#~ msgid ""
-#~ " Introduction\n"
-#~ "\n"
-#~ "The operating system and the different components available in the "
-#~ "Mandrake 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 Mandrake Linux distribution.\n"
-#~ "\n"
-#~ "\n"
-#~ "1. License Agreement\n"
-#~ "\n"
-#~ "Please read carefully this document. This document is a license agreement "
-#~ "between you and \n"
-#~ "MandrakeSoft S.A., 43, rue d'Aboukir, 75002 Paris - France, which applies "
-#~ "to the Software Products.\n"
-#~ "By installing, duplicating or using the Software Products in any manner, "
-#~ "you explicitly \n"
-#~ "accept and fully agree to conform to the terms and conditions of this "
-#~ "License. \n"
-#~ "If you disagree with any portion of the License, you are not allowed to "
-#~ "install, duplicate or use \n"
-#~ "the Software Products. \n"
-#~ "Any attempt to install, duplicate or use the Software Products in a "
-#~ "manner which does not comply \n"
-#~ "with the terms and conditions of this License is void and will terminate "
-#~ "your rights under this \n"
-#~ "License. Upon termination of the License, you must immediately destroy "
-#~ "all copies of the \n"
-#~ "Software Products.\n"
-#~ "\n"
-#~ "\n"
-#~ "2. The GPL License and Related Licenses\n"
-#~ "\n"
-#~ "The Software Products consist of components created by different persons "
-#~ "or entities. Most \n"
-#~ "of these components are governed under the terms and conditions of the "
-#~ "GNU General Public \n"
-#~ "Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
-#~ "licenses allow you to use, \n"
-#~ "duplicate, adapt or redistribute the components which they cover. Please "
-#~ "read carefully the terms \n"
-#~ "and conditions of the license agreement for each component before using "
-#~ "any component. Any question \n"
-#~ "on a component license should be addressed to the component author and "
-#~ "not to MandrakeSoft.\n"
-#~ "The programs developed by MandrakeSoft S.A. are governed by the GPL "
-#~ "License. Documentation written \n"
-#~ "by MandrakeSoft S.A. is governed by a specific license. Please refer to "
-#~ "the documentation for \n"
-#~ "further details.\n"
-#~ "Some versions of the Software Products may contain components which are "
-#~ "not governed by the GPL \n"
-#~ "License or similar agreements. Each such component is then governed by "
-#~ "the terms and conditions \n"
-#~ "of its own specific license. Please read carefully and comply with such "
-#~ "specific licenses before \n"
-#~ "you install, use or redistribute the said components. Such licenses will "
-#~ "in general prevent the \n"
-#~ "transfer, duplication (except for backup purposes), redistribution, "
-#~ "reverse engineering, \n"
-#~ "de-assembly, \n"
-#~ "de-compilation or modification of the component. Any breach of agreement "
-#~ "will immediately terminate \n"
-#~ "your rights under the specific license. Unless the specific license terms "
-#~ "grant you such rights, \n"
-#~ "you usually cannot install the programs on more than one system, or adapt "
-#~ "it to be used on a \n"
-#~ "network. \n"
-#~ "In doubt, please contact directly the distributor or editor of the "
-#~ "component. Transfer to third \n"
-#~ "parties or copying of such components including the documentation is "
-#~ "usually forbidden.\n"
-#~ "\n"
-#~ "\n"
-#~ "3. Intellectual Property Rights\n"
-#~ "\n"
-#~ "All rights to the components of the Software Products belong to their "
-#~ "respective authors and are \n"
-#~ "protected by intellectual property and copyright laws applicable to "
-#~ "software programs.\n"
-#~ "MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
-#~ "Products, as a whole or in \n"
-#~ "parts,\n"
-#~ "by all means and for all purposes.\n"
-#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
-#~ "MandrakeSoft S.A. All rights \n"
-#~ "are \n"
-#~ "reserved. The duplication is forbidden without prior written consent by "
-#~ "MandrakeSoft S.A.\n"
-#~ "\n"
-#~ "\n"
-#~ "4. Limited Warranty\n"
-#~ "\n"
-#~ "The Software Products and attached documentation are provided \"as is\", "
-#~ "with no warranty, to the \n"
-#~ "extent permitted by law. Should the Software Products be defective, "
-#~ "MandrakeSoft S.A. will at its \n"
-#~ "own will either replace the Software Products, or reimburse the paid "
-#~ "fee.\n"
-#~ "This limited warranty is void if you fail to comply to the "
-#~ "recommendations, instructions and \n"
-#~ "conditions \n"
-#~ "of use listed in the documentation or license agreements of the Software "
-#~ "Products.\n"
-#~ "To the extent permitted by law, MandrakeSoft S.A. will in no "
-#~ "circumstances be liable for any \n"
-#~ "special, \n"
-#~ "incidental, direct or indirect damages whatsoever (including without "
-#~ "limitation damages for loss of \n"
-#~ "business, interruption of business, financial loss, legal fees and "
-#~ "penalties resulting from a court \n"
-#~ "judgement, or any other consequential loss) arising out of the use or "
-#~ "inability to use the \n"
-#~ "Software \n"
-#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility "
-#~ "or occurance of such \n"
-#~ "damages.\n"
-#~ "\n"
-#~ "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN "
-#~ "SOME COUNTRIES\n"
-#~ "\n"
-#~ "To the extent permitted by law, MandrakeSoft S.A. or its distributors "
-#~ "will, in no circumstances, be \n"
-#~ "liable for any special, incidental, direct or indirect damages whatsoever "
-#~ "(including without \n"
-#~ "limitation \n"
-#~ "damages for loss of business, interruption of business, financial loss, "
-#~ "legal fees and penalties \n"
-#~ "resulting from a court judgement, or any other consequential loss) "
-#~ "arising out of the possession \n"
-#~ "and \n"
-#~ "use of software components or arising out of downloading software "
-#~ "components from one of \n"
-#~ "Mandrake Linux \n"
-#~ "sites which are prohibited or restricted in some countries by local "
-#~ "laws. This limited liability \n"
-#~ "applies to, but is not restricted to, the strong cryptography components "
-#~ "included in the Software \n"
-#~ "Products.\n"
-#~ "\n"
-#~ "\n"
-#~ "5. Governing Laws \n"
-#~ "\n"
-#~ "If any portion of this agreement is held void, illegal or inapplicable by "
-#~ "a court judgement, this \n"
-#~ "portion is excluded from this contract. You remain bound by the other "
-#~ "applicable sections of the \n"
-#~ "agreement.\n"
-#~ "The terms and conditions of this License are governed by the Laws of "
-#~ "France.\n"
-#~ "All disputes on the terms of this license will preferably be settled out "
-#~ "of court. As a last \n"
-#~ "resort, \n"
-#~ "the dispute will be referred to the appropriate Courts of Law of Paris - "
-#~ "France.\n"
-#~ "For any question on this document, please contact MandrakeSoft S.A., \n"
-#~ "43, rue d'Aboukir, 75002 Paris - France\n"
-#~ msgstr ""
-#~ " Introducci\n"
-#~ "\n"
-#~ "D'ara endavant, el sistema operatiu i els diferents components que "
-#~ "s'inclouen\n"
-#~ "a la distribuci Mandrake Linux s'anomenaran els \"Productes de programari"
-#~ "\".\n"
-#~ "Els Productes de programari inclouen, per no es limiten a, el conjunt "
-#~ "de\n"
-#~ "programes, mtodes, regles i documentaci relativa al sistema operatiu i "
-#~ "als\n"
-#~ "diferents components de la distribuci Mandrake Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ "1. Acord de Llicncia\n"
-#~ "\n"
-#~ "Si us plau, llegiu aquest document atentament. Aquest document s un "
-#~ "acord\n"
-#~ "de llicncia entre vs i MandrakeSoft S.A., 43, rue d'Aboukir, 75002 "
-#~ "Pars,\n"
-#~ "Frana, que s'aplica als Productes de programari.\n"
-#~ "Pel fet d'installar, duplicar o utilitzar els Productes de programari, "
-#~ "en \n"
-#~ "qualsevol manera, accepteu i esteu totalment d'acord, de manera "
-#~ "explcita, en\n"
-#~ "sometre-us als termes i condicions d'aquesta Llicncia. Si no esteu "
-#~ "d'acord amb\n"
-#~ "qualsevol part d'aquesta Llicncia, no esteu autoritzat a installar, "
-#~ "duplicar\n"
-#~ "ni utilitzar els Productes de programari. Qualsevol intent d'installar,\n"
-#~ "duplicar o utilitzar els Productes de programari d'una manera no conforme "
-#~ "als\n"
-#~ "termes i condicions d'aquesta Llicncia s invlid i conclour els "
-#~ "vostres\n"
-#~ "drets sota aquesta Llicncia. En concloure la Llicncia, heu de destruir\n"
-#~ "immediatament totes les cpies dels Productes de programari.\n"
-#~ "\n"
-#~ "\n"
-#~ "2. la Llicncia GPL i Llicncies relacionades\n"
-#~ "\n"
-#~ "Els Productes de programari sn components creats per diferents persones "
-#~ "o\n"
-#~ "entitats. La majoria d'aquests components estan coberts pels termes i\n"
-#~ "condicions de la Llicncia General Pblica de GNU (d'ara endavant \"GPL"
-#~ "\"), o\n"
-#~ "de llicncies similars. La majoria d'aquestes llicncies us permeten "
-#~ "utilitzar,\n"
-#~ "duplicar, adaptar o redistribuir els components que cobreixen. Si us "
-#~ "plau,\n"
-#~ "llegiu atentament els termes i condicions de l'acord de llicncia de "
-#~ "cada\n"
-#~ "component abans d'utilitzar-lo. Qualsevol pregunta sobre un component "
-#~ "s'ha\n"
-#~ "d'adrear al seu autor i no a MandrakeSoft. Els programes desenvolupats "
-#~ "per\n"
-#~ "MandrakeSoft S.A. estan coberts per la Llicncia GPL. La documentaci "
-#~ "escrita\n"
-#~ "per MandrakeSoft S.A. est coberta per una llicncia especfica. Si us "
-#~ "plau,\n"
-#~ "consulteu la documentaci per a ms informaci. Algunes versions dels "
-#~ "Productes\n"
-#~ "de programari poden incloure components que no estiguin coberts per la\n"
-#~ "Llicncia GPL o llicncies similars; en aquest cas, cada un d'aquests\n"
-#~ "components estar cobert pels termes i condicions de la seva prpia "
-#~ "llicncia\n"
-#~ "especfica. Si us plau, llegiu atentament i respecteu aquestes "
-#~ "llicncies\n"
-#~ "especfiques abans d'installar, utilitzar o redistribuir els components\n"
-#~ "esmentats. En general, aquestes llicncies impediran la transferncia,\n"
-#~ "duplicaci (excepte amb la finalitat de fer cpies de seguretat),\n"
-#~ "redistribuci, enginyeria inversa, desensamblatge, decompilaci o "
-#~ "modificaci\n"
-#~ "del component. Qualsevol ruptura de l'acord conclour immediatament els "
-#~ "vostres\n"
-#~ "drets sota la llicncia especfica. Tret que els termes de la llicncia\n"
-#~ "especfica us ho autoritzin, normalment no podreu installar els "
-#~ "programes en\n"
-#~ "ms d'un sistema ni adaptar-lo per al seu s en xarxa. Si hi teniu "
-#~ "dubtes,\n"
-#~ "poseu-vos en contacte directament amb el distribudor o editor del "
-#~ "component.\n"
-#~ "Normalment, est prohibida la transferncia a terceres parts i la cpia\n"
-#~ "d'aquests components, incloent la documentaci.\n"
-#~ "\n"
-#~ "\n"
-#~ "3. Drets de propietat intellectual\n"
-#~ "\n"
-#~ "Tots els drets dels components dels Productes de programari pertanyen als "
-#~ "seus\n"
-#~ "autors respectius i estan protegits per la propietat intellectual i les "
-#~ "lleis\n"
-#~ "de copyright aplicables al programari. MandrakeSoft S.A. es reserva els "
-#~ "drets\n"
-#~ "de modificar o adaptar els Productes de programari, ja sigui parcialment "
-#~ "o\n"
-#~ "totalment, per tots els mitjans i per a totes les finalitats. \"Mandrake"
-#~ "\",\n"
-#~ "\"Mandrake Linux\" i els logotips associats son marques registrades de\n"
-#~ "MandrakeSoft S.A. Tots els drets reservats. Es prohibeix la duplicaci "
-#~ "sense\n"
-#~ "consentiment previ per escrit de MandrakeSoft S.A.\n"
-#~ "\n"
-#~ "\n"
-#~ "4. Garantia limitada\n"
-#~ "\n"
-#~ "Els Productes de programari i la documentaci que s'hi adjunta es "
-#~ "subministren\n"
-#~ "\"tal com sn\", sense cap garantia, fins al punt perms per la llei. En "
-#~ "cas\n"
-#~ "que els Productes de programari siguin defectuosos, MandrakeSoft S.A., a\n"
-#~ "criteri seu, decidir si reemplaa els Productes de programari o si en\n"
-#~ "reemborsa el preu pagat. Aquesta garantia limitada s nulla si no "
-#~ "compliu les\n"
-#~ "recomanacions, instruccions i condicions d's que s'indiquen a la "
-#~ "documentaci\n"
-#~ "o als acords de llicncia dels Productes de programari. Fins al punt "
-#~ "perms per\n"
-#~ "la llei, MandrakeSoft S.A. no ser, en cap circumstncia, responsable de "
-#~ "cap\n"
-#~ "dany especial, incidental, directe o indirecte (incloent, per sense "
-#~ "limitar-se\n"
-#~ "a, danys per prdua de negocis, interrupci de negocis, prdues "
-#~ "financeres,\n"
-#~ "honoraris i multes legals que resultin per un judici i qualsevol altre "
-#~ "prdua\n"
-#~ "important) que resulti de l's o impossibilitat d'utilitzar els Productes "
-#~ "de\n"
-#~ "programari, fins i tot si s'ha notificat a MandrakeSoft S.A. la "
-#~ "possibilitat de\n"
-#~ "que es produeixin aquests danys.\n"
-#~ "\n"
-#~ "RESPONSABILITAT LIMITADA LLIGADA A LA POSESSI O UTILITZACI DE "
-#~ "PROGRAMARI PROHIBIT EN ALGUNES PASOS\n"
-#~ "\n"
-#~ "Fins al put perms per la llei, MandrakeSoft S.A. i els seus "
-#~ "distribudors no\n"
-#~ "seran, sota cap circumstncia, responsables de cap dany especial, "
-#~ "incidental,\n"
-#~ "directe o indirecte (incloent, per sense limitar-se a, danys per prdua "
-#~ "de\n"
-#~ "negocis, interrupci de negocis, prdues financeres, honoraris i multes "
-#~ "legals\n"
-#~ "que resultin per un judici i qualsevol altre prdua important) que "
-#~ "resultin de\n"
-#~ "la possessi i s de components de programari o de la descrrega de "
-#~ "components\n"
-#~ "de programari d'algun dels llocs web de Mandrake Linux que estiguin "
-#~ "prohibits o\n"
-#~ "restringits en alguns pasos per lleis locals. Aquesta responsabilitat "
-#~ "limitada\n"
-#~ "s'aplica, per no est restringida a, els potents components de "
-#~ "criptografia\n"
-#~ "inclosos en els Productes de programari.\n"
-#~ "\n"
-#~ "\n"
-#~ "5. Lleis aplicables \n"
-#~ "\n"
-#~ "Si qualsevol part d'aquest acord s declarat nul, illegal o inaplicable "
-#~ "en un\n"
-#~ "judici, aquesta part s'exclou del contracte, per seguiu obligat per les "
-#~ "altres\n"
-#~ "seccions aplicables de l'acord. Els termes i condicions d'aquesta "
-#~ "Llicncia\n"
-#~ "estan coberts per les lleis de Frana. Preferiblement, tots els desacords "
-#~ "sobre\n"
-#~ "els termes d'aquesta Llicncia es resoldran fora dels tribunals. Com a "
-#~ "ltim\n"
-#~ "recurs, el plet es dirimir en els tribunals de Pars, Frana.\n"
-#~ "Per a qualsevol pregunta sobre aquest document, poseu-vos en contacte "
-#~ "amb\n"
-#~ "MandrakeSoft S.A., 43, rue d'Aboukir, 75002 Pars, Frana.\n"
-
-#~ msgid ""
-#~ "Your computer can be configured to share its Internet connection.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Es pot configurar el vostre ordinador per tal que comparteixi la connexi "
-#~ "a Internet.\n"
-#~ "\n"
-
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "S'ha configurat tot.\n"
-
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Connecta't a Internet amb un mdem normal"
-
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Connecta't a Internet mitjanant XDSI"
-
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Connecta't a Internet mitjanant DSL (o ADSL)"
-
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Connecta't a Internet mitjanant cable"
-
-#~ msgid ""
-#~ "Time (secs) of inactivity after which\n"
-#~ "it hangs up. (leave blank to disable it)"
-#~ msgstr ""
-#~ "Temps (en segons) d'inactivitat desprs del qual\n"
-#~ "penjar (deixeu-ho en blanc per inhabilitar-ho)."
-
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Alemanya (1TR6)"
-
-#~ msgid "What do you wish to do?"
-#~ msgstr "Qu voleu fer?"
-
-#~ msgid "Install/Rescue"
-#~ msgstr "Installa/Rescata"
-
-#~ msgid "Rescue"
-#~ msgstr "Rescata"
-
-#~ msgid "Which partition type do you want?"
-#~ msgstr "Quin tipus de partici voleu?"
-
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "Choose \"Rescue\" if you wish to rescue a version of Mandrake Linux "
-#~ "already installed.\n"
-#~ "\n"
-#~ "\n"
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed GNU/Linux before, choose "
-#~ "this.\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!\n"
-#~ msgstr ""
-#~ "Escolliu \"Installaci\" si no hi ha installada cap versi anterior de "
-#~ "GNU/Linux,\n"
-#~ "o si voleu utilitzar diverses distribucions o versions.\n"
-#~ "\n"
-#~ "Escolliu \"Rescat\" si voleu rescatar una versi anterior de\n"
-#~ "Mandrake Linux ja installada.\n"
-#~ "\n"
-#~ "\n"
-#~ "Seleccioneu:\n"
-#~ "\n"
-#~ " - Recomanada: Si mai no heu installat el GNU/Linux,\n"
-#~ " escolliu aquesta opci.\n"
-#~ " - Personalitzada: Si esteu prou familiaritzat amb el GNU/Linux, podeu\n"
-#~ " triar l's principal del vostre ordinador. Consulteu-ne els detalls\n"
-#~ " ms avall.\n"
-#~ "\n"
-#~ " - Per a experts: S'assumeix que domineu el GNU/Linux i voleu realitzar "
-#~ "una\n"
-#~ " installaci altament personalitzada. Com en el cas del tipus\n"
-#~ " d'installaci \"Personalitzada\", podreu seleccionar l's del "
-#~ "vostre\n"
-#~ " sistema.\n"
-#~ " Per, si us plau, sobretot NO TRIEU AQUESTA OPCI TRET QUE SAPIGUEU "
-#~ "QU ESTEU FENT!\n"
-
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Mandrake Linux system if they have been already defined (from a\n"
-#~ "previous install of GNU/Linux or from another partitioning tool). In "
-#~ "other\n"
-#~ "cases, hard drive partitions must be defined. This operation consists of\n"
-#~ "logically dividing the computer's hard drive capacity into separate\n"
-#~ "areas for use.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have to create new partitions, use \"Auto allocate\" to "
-#~ "automatically\n"
-#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
-#~ "by\n"
-#~ "clicking on \"hda\" for the first IDE drive,\n"
-#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Two common partition are: the root partition (/), which is the starting\n"
-#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
-#~ "all files necessary to start the operating system when the\n"
-#~ "computer is first turned on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Because the effects of this process are usually irreversible, "
-#~ "partitioning\n"
-#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-#~ "simplifies the process so that it must not be. Consult the documentation\n"
-#~ "and take your time before proceeding.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can reach any option using the keyboard: navigate through the "
-#~ "partitions\n"
-#~ "using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
-#~ "\n"
-#~ "- Ctrl-c to create a new partition (when an empty partition is "
-#~ "selected)\n"
-#~ "\n"
-#~ "- Ctrl-d to delete a partition\n"
-#~ "\n"
-#~ "- Ctrl-m to set the mount point\n"
-#~ msgstr ""
-#~ "En aquest moment podeu decidir quina(es) partici(ns) voleu utilitzar\n"
-#~ "per installar el sistema Mandrake Linux, si s que ja es va(n)\n"
-#~ "definir (en una installaci anterior del GNU/Linux o mitjanant una\n"
-#~ "altra eina de partici). En altres casos, s'han de definir les\n"
-#~ "particions del disc dur: aquesta operaci consisteix en dividir el\n"
-#~ "disc dur de l'ordinador en rees lgiques separades.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si heu de crear noves particions, utilitzeu \"Assignaci\n"
-#~ "automtica\" per crear particions per al GNU/Linux de manera automtica.\n"
-#~ "Podeu triar el disc on s'hi han de fer les particions fent clic a\n"
-#~ "\"hda\" per a la primera unitat IDE, \"hdb\" per a la segona, o\n"
-#~ "\"sda\" per a la primera unitat SCSI, i aix successivament.\n"
-#~ "\n"
-#~ "\n"
-#~ "Dues particions habituals sn: la partici root (/), que s el punt\n"
-#~ "d'inici de la jerarquia de directoris del sistema de fitxers, i\n"
-#~ "/boot, que cont tots els fitxers necessaris per iniciar el sistema\n"
-#~ "operatiu quan s'arrenca l'ordinador per primer cop.\n"
-#~ "\n"
-#~ "\n"
-#~ "Donat que aquest procs sol ser irreversible, la partici d'un disc\n"
-#~ "s sovint un procs que espanta als usuaris sense experincia, per\n"
-#~ "el DiskDrake simplifica molt aquest procs. Consulteu la documentaci\n"
-#~ "i preneu-vos tant temps com sigui necessari abans de realitzar la\n"
-#~ "partici.\n"
-#~ "\n"
-#~ "Podeu accedir a qualsevol opci mitjanant el teclat: desplaceu-vos per "
-#~ "les particions amb el tabulador i les fletxes amunt i avall. Quan se "
-#~ "selecciona una partici, podeu utilitzar:\n"
-#~ "\n"
-#~ "- Ctrl-c per crear una nova partici (quan se selecciona una partici "
-#~ "buida)\n"
-#~ "\n"
-#~ "- Ctrl-d per suprimir una partici\n"
-#~ "\n"
-#~ "- Ctrl-m per definir el punt de muntatge\n"
-
-#~ msgid ""
-#~ "Any partitions that have been newly defined must be formatted for\n"
-#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
-#~ "wish to re-format some already existing partitions to erase the data\n"
-#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
-#~ "partitions, particularly if they contain files or data you wish to keep.\n"
-#~ "Typically retained are /home and /usr/local."
-#~ msgstr ""
-#~ "Cal formatar les particions que s'acaben de definir per poder-les\n"
-#~ "utilitzar ('formatar' significa 'crear un sistema de fitxers').\n"
-#~ "En aquest punt podeu, si voleu, tornar a formatar particions\n"
-#~ "existents per eliminar les dades que contenen. Nota: no s\n"
-#~ "necessari tornar a formatar les particions existents, especialment\n"
-#~ "si contenen fitxers o dades que voleu conservar.\n"
-#~ "Els directoris que es solen conservar sn /home i /usr/local."
-
-#~ msgid ""
-#~ "The packages selected are now being installed. This operation\n"
-#~ "should take a few minutes unless you have chosen to upgrade an\n"
-#~ "existing system, in that case it can take more time even before\n"
-#~ "upgrade starts."
-#~ msgstr ""
-#~ "Ara s'estan installant els paquets seleccionats. Aquesta operaci\n"
-#~ "trigar pocs minuts, tret que hagueu escollit actualitzar un\n"
-#~ "sistema existent; en aquest cas trigar ms temps, fins i tot\n"
-#~ "abans que s'inici la installaci."
-
-#~ msgid ""
-#~ "If DrakX failed to find your mouse, or if you want to\n"
-#~ "check what it has done, you will be presented the list of mice\n"
-#~ "above.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
-#~ "Otherwise you may choose the mouse that more closely matches your own\n"
-#~ "from the menu above.\n"
-#~ "\n"
-#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Si el DrakX no ha pogut trobar el ratol, o si voleu comprovar qu\n"
-#~ "ha fet, a la part superior apareixer la llista de ratolins.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si esteu d'acord amb els parmetres del DrakX, feu clic a 'D'acord'.\n"
-#~ "Si no, escolliu, al men superior, el tipus de ratol que us sembli ms "
-#~ "semblant al vostre.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si es tracta d'un ratol srie, tamb us caldr indicar al DrakX a\n"
-#~ "quin port srie est connectat."
-
-#~ msgid ""
-#~ "This section is dedicated to configuring a local area\n"
-#~ "network (LAN) or a modem.\n"
-#~ "\n"
-#~ "Choose \"Local LAN\" and DrakX will\n"
-#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
-#~ "should be found and initialized automatically.\n"
-#~ "However, if your peripheral is ISA, autodetection will not work,\n"
-#~ "and you will have to choose a driver from the list that will appear "
-#~ "then.\n"
-#~ "\n"
-#~ "\n"
-#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
-#~ "in the first time, otherwise you will have to specify the options\n"
-#~ "to the driver that you will have fetched from documentation of your\n"
-#~ "hardware.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you install a Mandrake Linux system on a machine which is part\n"
-#~ "of an already existing network, the network administrator will\n"
-#~ "have given you all necessary information (IP address, network\n"
-#~ "submask or netmask for short, and hostname). If you're setting\n"
-#~ "up a private network at home for example, you should choose\n"
-#~ "addresses.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
-#~ "a modem will be configured. DrakX will try to find your modem,\n"
-#~ "if it fails you will have to select the right serial port where\n"
-#~ "your modem is connected to."
-#~ msgstr ""
-#~ "Aquesta secci est dedicada a la configuraci d'una xarxa local\n"
-#~ "(LAN) o d'un mdem.\n"
-#~ "\n"
-#~ "Escolliu \"LAN local\" i el DrakX intentar trobar un adaptador\n"
-#~ "Ethernet al vostre ordinador. El sistema trobar i inicialitzar\n"
-#~ "automticament els adaptadors PCI.\n"
-#~ "No obstant aix, si el vostre perifric s ISA, la detecci\n"
-#~ "no funcionar, i us caldr escollir un programa de control a la\n"
-#~ "llista que apareixer.\n"
-#~ "\n"
-#~ "\n"
-#~ "Com en el cas dels adaptadors SCSI, podeu deixar que, d'entrada,\n"
-#~ "el programa de control comprovi l'adaptador; si no ho feu aix, us\n"
-#~ "caldr especificar les opcions del programa de control que haureu\n"
-#~ "d'anar a buscar a la documentaci del vostre maquinari.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si installeu un sistema Mandrake Linux en un ordinador que forma\n"
-#~ "part d'una xarxa existent, l'administrador de la xarxa us haur de\n"
-#~ "facilitar la informaci necessria (l'adrea IP, la submscara de\n"
-#~ "xarxa i el nom de l'ordinador central). Si esteu configurant una\n"
-#~ "xarxa privada, com ara a casa, haureu d'escollir les adreces.\n"
-#~ "\n"
-#~ "\n"
-#~ "Escolliu \"Marcatge amb mdem\" i es configurar la connexi a\n"
-#~ "Internet amb un mdem. El DrakX intentar trobar el mdem, per,\n"
-#~ "si no se'n surt, us caldr seleccionar el port srie al qual est\n"
-#~ "connectat."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these\n"
-#~ "types require a different setup. Note however that the print\n"
-#~ "spooler uses 'lp' as the default printer name; so you\n"
-#~ "must have one printer with such a name; but you can give\n"
-#~ "several names, separated by '|' characters, to a printer.\n"
-#~ "So, if you prefer to have a more meaningful name you just have\n"
-#~ "to put it first, eg: \"My Printer|lp\".\n"
-#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your printer is physically connected to your computer, select\n"
-#~ "\"Local printer\". You will then have to tell which port your\n"
-#~ "printer is connected to, and select the appropriate filter.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine,\n"
-#~ "you will have to select \"Remote lpd\". In order to make\n"
-#~ "it work, no username or password is required, but you will need\n"
-#~ "to know the name of the printing queue on this server.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you want to access a SMB printer (which means, a printer located\n"
-#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
-#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-#~ "plus the username, workgroup and password required in order to\n"
-#~ "access the printer, and of course the name of the printer. The same goes\n"
-#~ "for a NetWare printer, except that you need no workgroup information."
-#~ msgstr ""
-#~ "El GNU/Linux pot treballar amb molts tipus d'impressores. Per a cada\n"
-#~ "un d'aquests tipus, per, cal una configuraci diferent. Tingueu\n"
-#~ "en compte, per, que l'spooler utilitza 'lp' com a nom d'impressora\n"
-#~ "per defecte, de manera que heu de tenir una impressora amb aquest nom.\n"
-#~ "No obstant aix, podeu donar diferents noms a una impressora, separant-\n"
-#~ "los amb el carcter '|'. D'aquesta manera, si voleu donar-li un nom ms\n"
-#~ "aclaridor noms us caldr indicar-lo en primer lloc, p.ex. \"La meva\n"
-#~ "impressora|lp\".\n"
-#~ "La impressora que contingui \"lp\" al(s) nom(s) ser la impressora per\n"
-#~ "defecte\n"
-#~ "\n"
-#~ "\n"
-#~ "Si la vostra impressora est connectada directament a l'ordinador,\n"
-#~ "seleccioneu \"Impressora local\". Haureu d'indicar a quin port\n"
-#~ "est connectada i seleccionar-ne el filtre corresponent.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora que es troba a un ordinador Unix\n"
-#~ "remot, seleccioneu \"lpd remot\". Per poder-la fer funcionar no\n"
-#~ "cal cap nom d'usuari ni contrasenya, per us caldr saber el nom\n"
-#~ "de la cua d'impressi del servidor remot.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si voleu accedir a una impressora SMB (s a dir, una impressora\n"
-#~ "que es troba a un ordinador remot amb Windows 9x/NT), per poder-ho\n"
-#~ "fer haureu d'indicar el seu nom SMB (que no s el seu nom TCP/IP)\n"
-#~ "i possiblement la seva adrea IP, nom d'usuari, grup de treball,\n"
-#~ "contrasenya, i, evidentment, el nom de la impressora. El mateix\n"
-#~ "per a una impressora NetWare, per en aquest cas no us caldr la\n"
-#~ "informaci del grup de treball."
-
-#~ msgid ""
-#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
-#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
-#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
-#~ "boot into GNU/Linux any more."
-#~ msgstr ""
-#~ "s molt recomanable que respongueu \"S\" aqu. Si ms endavant\n"
-#~ "installeu Microsoft Windows, sobreescriur el sector d'arrencada.\n"
-#~ "Tret que hagueu fet el disc d'arrencada com es\n"
-#~ "recomana, ja no podreu tornar a arrencar el GNU/Linux."
-
-#~ msgid "Move your wheel!"
-#~ msgstr "Moveu la bola!"
-
-#~ msgid "Forget the changes?"
-#~ msgstr "Voleu descartar els canvis?"
-
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "De quin tipus s el vostre ratol?"
-
-#~ msgid "Automatic resolutions"
-#~ msgstr "Resolucions automtiques"
-
-#~ msgid ""
-#~ "To find the available resolutions I will try different ones.\n"
-#~ "Your screen will blink...\n"
-#~ "You can switch if off if you want, you'll hear a beep when it's over"
-#~ msgstr ""
-#~ "Per saber quines resolucions estan disponibles, en provar algunes.\n"
-#~ "La pantalla parpellejar...\n"
-#~ "Ho podeu desactivar si voleu; sentireu un avs sonor quan estigui llest"
-
-#~ msgid ""
-#~ "I can try to find the available resolutions (eg: 800x600).\n"
-#~ "Sometimes, though, it may hang the machine.\n"
-#~ "Do you want to try?"
-#~ msgstr ""
-#~ "Puc mirar de trobar les resolucions disponibles (p.ex. 800x600).\n"
-#~ "De vegades, per, aix pot penjar l'ordinador.\n"
-#~ "Us hi voleu arriscar?"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "No s'han trobat modes vlids\n"
-#~ "Intenteu-ho amb una altra targeta de vdeo o monitor"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Recerca automtica de resolucions"
-
-#~ msgid "dhcpd"
-#~ msgstr "dhcpd"
-
-#~ msgid "pump"
-#~ msgstr "pump"
-
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
-
-#~ msgid "dhcp-client"
-#~ msgstr "dhcp-client"
-
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB Mouse"
-
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB Mouse (2 botons)"
-
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB Mouse (3 o ms botons)"
-
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USB Mouse"
-
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USB Mouse (2 botons)"
-
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USB Mouse (3 o ms botons)"
-
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
-
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI Bus Mouse"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft Bus Mouse"
-
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logitech Bus Mouse"
-
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB Mouse (3 o ms botons)"
-
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A o superior (srie)"
-
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (srie)"
-
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (srie)"
-
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (srie)"
-
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Generic Mouse (srie)"
-
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Compatible Microsoft (srie)"
-
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Ratol Generic de 3 botons (srie)"
-
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Ratol Kensington Thinking (srie)"
-
-#~ msgid ""
-#~ "I need to configure your network adapter to be able to connect to "
-#~ "internet."
-#~ msgstr ""
-#~ "Necessito configurar el vostre adaptador de xarxa por poder connectar a "
-#~ "Internet."
-
-#~ msgid "nfs mount failed"
-#~ msgstr "ha fallat el muntatge de l'nfs"
-
-#~ msgid "Socket"
-#~ msgstr "Scol"
-
-#~ msgid ""
-#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-#~ "By default, the 4.0 server is used unless your card is not supported.\n"
-#~ "\n"
-#~ "Do you want to keep XFree 3.3?"
-#~ msgstr ""
-#~ "El DrakX generar els fitxers de configuraci tant per a l'XFree 3.3 com "
-#~ "per a l'Xfree 4.0.\n"
-#~ "Per defecte, s'utilitza el servidor 4.0, tret que no funcioni per a la "
-#~ "vostra targeta.\n"
-#~ "\n"
-#~ "Voleu conservar l'Xfree 3.3?"
-
-#~ msgid "tie"
-#~ msgstr "lla"
-
-#~ msgid "brunette"
-#~ msgstr "morena"
-
-#~ msgid "girl"
-#~ msgstr "noia"
-
-#~ msgid "woman-blond"
-#~ msgstr "dona-rossa"
-
-#~ msgid "automagic"
-#~ msgstr "automagic"
-
-#~ msgid "Cryptographic"
-#~ msgstr "Criptogrfic"
-
-#~ msgid "Take over the hard drive"
-#~ msgstr "Encarrega't del disc dur"
-
-#~ msgid "Do not set up networking"
-#~ msgstr "No configuris la xarxa"
-
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Voleu configurar la xarxa local per al vostre sistema?"
-
-#~ msgid "Have you been provided with a hostname?"
-#~ msgstr "Us han donat un nom d'ordinador central?"
-
-#~ msgid "Show less"
-#~ msgstr "Mostra'n menys"
-
-#~ msgid "Show more"
-#~ msgstr "Mostra'n ms"
-
-#~ msgid "URI for Local printer"
-#~ msgstr "URI per a la impressora local"
-
-#~ msgid "URI for Network printer"
-#~ msgstr "URI per a la impressora de xarxa"
-
-#~ msgid "Local Printer Device (URI)"
-#~ msgstr "Dispositiu de la impressora local (URI)"
-
-#~ msgid ""
-#~ "What URI device is your printer connected to\n"
-#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
-#~ msgstr ""
-#~ "A quin dispositiu URI est connectada la vostra impressora?\n"
-#~ "(tingueu en compte que parallel:/dev/lp0 equival a LPT1:)"
-
-#~ msgid "Network Printer Options (URI)"
-#~ msgstr "Opcions de la impressora de xarxa (URI)"
-
-#~ msgid ""
-#~ "Choose the right Device URI for a network printer or a local file. "
-#~ "Examples:\n"
-#~ " file:/path/to/filename.prn\n"
-#~ " http://hostname:631/ipp/port1\n"
-#~ " ipp://hostname/ipp/port1\n"
-#~ " lpq://hostname/queue\n"
-#~ " socket://hostname\n"
-#~ " socket://hostname:9100"
-#~ msgstr ""
-#~ "Seleccioneu l'URI de dispositiu correcte per a una impressora de xarxa o "
-#~ "un fitxer local. Exemples:\n"
-#~ " file:/cam/al/nomdefitxer.prn\n"
-#~ " http://ordinadorcentral:631/ipp/port1\n"
-#~ " ipp://ordinadorcentral/ipp/port1\n"
-#~ " lpq://ordinadorcentral/cua\n"
-#~ " socket://ordinadorcentral\n"
-#~ " socket://ordinadorcentral:9100"
-
-#~ msgid "Local Area Network specification"
-#~ msgstr "Especificaci de la xarxa d'rea local"
-
-#~ msgid "You may now decide which class C network to use.\n"
-#~ msgstr "Ara podeu decidir quina xarxa de classe C voleu utilitzar.\n"
-
-#~ msgid "Internet Connection Sharing - setup of %s"
-#~ msgstr "Connexi a Internet compartida: configuraci de %s"
-
-#~ msgid ""
-#~ "The following interface is about to be configured:\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Ara es configurar la interfcie segent:\n"
-#~ "\n"
-#~ "%s\n"
-#~ "\n"
-
-#~ msgid "Everything configured!"
-#~ msgstr "S'ha configurat tot!"
-
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Quina s la disposici del vostre teclat?"
-
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Voleu que intenti trobar targetes PCMCIA?"
-
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Voleu que intenti trobar els dispositius %s?"
-
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr ""
-#~ "Voleu configurar el marcatge amb xarxa per mdem per al vostre sistema?"
-
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Voleu que intenti trobar dispositius PCI?"
-
-#~ msgid "Searching root partition."
-#~ msgstr "S'est cercant la partici arrel."
-
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr ""
-#~ "%s: Aquesta partici no s arrel; si us plau, seleccioneu-ne una altra."
-
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "Si us plau, seleccioneu una partici per utilitzar-la com a arrel."
-
-#~ msgid "You don't have any windows partitions!"
-#~ msgstr "No teniu cap partici de Windows!"
-
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "No teniu prou espai per al Lnx4win"
-
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
-
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-#~ msgid ""
-#~ "Welcome to LILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or wait %d seconds "
-#~ "for default boot.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Benvingut al LILO, la utilitat que us permet triar el sistema operatiu!\n"
-#~ "\n"
-#~ "Per obtenir una llista de les eleccions possibles, premeu <TAB>.\n"
-#~ "\n"
-#~ "Per carregar-ne una, escriviu-ne el nom i premeu <INTRO> o espereu %d "
-#~ "segons\n"
-#~ "fins a l'arrencada predeterminada.\n"
-
-# NOTE: this message will be displayed by SILO at boot time; that is
-# only the ascii charset will be available
-# so use only 7bit for this message
-#
-#~ msgid ""
-#~ "Welcome to SILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or\n"
-#~ "wait %d seconds for default boot.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Benvingut al SILO, la utilitat que us permet triar el sistema operatiu!\n"
-#~ "\n"
-#~ "Per obtenir una llista de les eleccions possibles, premeu <TAB>.\n"
-#~ "\n"
-#~ "Per carregar-ne una, escriviu-ne el nom i premeu <INTRO> o espereu %d "
-#~ "segons\n"
-#~ "fins a l'arrencada predeterminada.\n"
-
-#~ msgid "SILO main options"
-#~ msgstr "Opcions principals del SILO"
-
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "Aquestes sn les entrades segents del SILO.\n"
-#~ "Podeu afegir-ne algunes ms o canviar-ne les existents."
-
-#~ msgid "This label is already in use"
-#~ msgstr "Aquesta etiqueta ja est en s"
-
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "Ha fallat la installaci del SILO. S'ha produt l'error segent:"
-
-#~ msgid ""
-#~ "DrakX will attempt at first to look for one or more PCI\n"
-#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-#~ "to use, it will insert it (them) automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-#~ "doesn't know which driver to use for this card, or if you have no\n"
-#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
-#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
-#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
-#~ "will have to select one.\n"
-#~ "\n"
-#~ "\n"
-#~ "After you have selected the driver, DrakX will ask if you\n"
-#~ "want to specify options for it. First, try and let the driver\n"
-#~ "probe for the hardware: it usually works fine.\n"
-#~ "\n"
-#~ "\n"
-#~ "If not, do not forget the information on your hardware that you\n"
-#~ "could get from your documentation or from Windows (if you have it\n"
-#~ "on your system), as suggested by the installation guide. These\n"
-#~ "are the options you will need to provide to the driver."
-#~ msgstr ""
-#~ "En primer lloc, el DrakX intentar trobar un o ms adaptadors SCSI\n"
-#~ "PCI. Si en troba, i sap quin(s) programa(es) de control utilitzar,\n"
-#~ "l'inserir o els inserir automticament.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si el vostre adaptador SCSI s una targeta ISA, o si s PCI per\n"
-#~ "el DrakX no sap amb quin programa de control ha d'utilitzar-la, o\n"
-#~ "si no teniu cap adaptador SCSI, se us preguntar si en teniu un o\n"
-#~ "no. Si no en teniu cap, respongueu \"No\". Si en teniu un o ms,\n"
-#~ "respongueu \"S\". Apareixer una llista de programes de control,\n"
-#~ "de la qual n'haureu de triar un.\n"
-#~ "\n"
-#~ "\n"
-#~ "Un cop hagueu triat el programa de control, el DrakX us preguntar\n"
-#~ "si voleu establir-ne les opcions. Primer, per, deixeu que el\n"
-#~ "programa de control explori el maquinari: normalment funciona b.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no, no oblideu la informaci sobre el vostre maquinari que\n"
-#~ "pugueu aconseguir a la documentaci o al Windows (si el teniu al\n"
-#~ "sistema), com aconsella la guia d'installaci. Aquestes sn les\n"
-#~ "opcions que haureu de proporcionar al programa de control."
-
-#~ msgid "Shutting down"
-#~ msgstr "S'est tancant l'ordinador"
-
-#~ msgid ""
-#~ "Some true type fonts from windows have been found on your computer.\n"
-#~ "Do you want to use them? Be sure you have the right to use them under "
-#~ "Linux."
-#~ msgstr ""
-#~ "S'han trobat alguns tipus de lletra \"true type\" del Windows a "
-#~ "l'ordinador.\n"
-#~ "Voleu utilitzar-les? Assegureu-vos que esteu autoritzat a utilitzar-les "
-#~ "sota Linux."
-
-#~ msgid "useless"
-#~ msgstr "intil"
-
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-#~ "Linux:\n"
-#~ "5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-#~ "2000\n"
-#~ "or 7.0 (Air)."
-#~ msgstr ""
-#~ "Escolliu \"Installa\" si no hi ha installada cap versi anterior de "
-#~ "Linux,\n"
-#~ "o si voleu utilitzar diverses distribucions o versions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Escolliu \"Actualitzaci\" si voleu actualitzar una versi anterior de\n"
-#~ "Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen) 6.0 (Venus),\n"
-#~ "6.1 (Helios), Gold 2000 o 7.0 (Air)."
+#~ msgid "preload module"
+#~ msgstr "mdul de pre-crrega"
-#~ msgid ""
-#~ "(a user ``mandrake'' with password ``mandrake'' has been automatically "
-#~ "added)"
-#~ msgstr ""
-#~ "(s'ha afegit automticament un usuari ``mandrake'' amb contrasenya "
-#~ "``mandrake'')"
+#~ msgid "click on a category"
+#~ msgstr "feu clic a una categoria"
-#~ msgid "Do you want to use LILO?"
-#~ msgstr "Voleu utilitzar el LILO?"
-
-#~ msgid ""
-#~ "You may now select the packages you wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "First you can select group of package to install or upgrade. After that\n"
-#~ "you can select more packages according to the total size you wish to\n"
-#~ "select.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are in expert mode, you can select packages individually.\n"
-#~ "Please note that some packages require the installation of others.\n"
-#~ "These are referred to as package dependencies. The packages you select,\n"
-#~ "and the packages they require will be automatically selected for\n"
-#~ "install. It is impossible to install a package without installing all\n"
-#~ "of its dependencies."
-#~ msgstr ""
-#~ "Ara podeu seleccionar els paquets que voleu installar.\n"
-#~ "\n"
-#~ "\n"
-#~ "En primer lloc, podeu seleccionar el grup del paquet a installar\n"
-#~ "o actualitzar. Desprs, podeu seleccionar ms paquets segons la\n"
-#~ "mida total que voleu seleccionar.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si treballeu amb el mode expert, podeu seleccionar els paquets\n"
-#~ "individualment.\n"
-#~ "Tingueu en compte, per, que alguns paquets necessiten que altres\n"
-#~ "tamb estiguin installats.\n"
-#~ "Aix s'anomena 'dependncia de paquets'. Els paquets que\n"
-#~ "seleccioneu, i els que aquests necessitin, es seleccionaran\n"
-#~ "automticament per a la installaci. No s possible installar un\n"
-#~ "paquet sense installar-ne tots els dependents."
-
-#~ msgid ""
-#~ "LILO (the LInux LOader) can boot Linux and other operating systems.\n"
-#~ "Normally they are correctly detected during installation. If you don't\n"
-#~ "see yours detected, you can add one or more now.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't want that everybody could access at one of them, you can "
-#~ "remove\n"
-#~ "it now (a boot disk will be needed to boot it)."
-#~ msgstr ""
-#~ "El LILO (el carregador de Linux) pot arrencar el Linux i altres sistemes\n"
-#~ "operatius, que normalment es detecten correctament durant la "
-#~ "installaci.\n"
-#~ "Si veieu que el vostre no s'ha detectat, ara podeu afegir-ne un o ms.\n"
-#~ "\n"
-#~ "\n"
-#~ "Si no voleu que tothom pugui accedir a algun d'ells, podeu\n"
-#~ "eliminar-lo ara (caldr un disc d'arrencada per arrencar-lo)."
-
-#~ msgid ""
-#~ "Now that you've selected desired groups, please choose \n"
-#~ "how many packages you want, ranging from minimal to full \n"
-#~ "installation of each selected groups."
-#~ msgstr ""
-#~ "Ara que ja heu seleccionat els grups desitjats, seleccioneu \n"
-#~ "quants paquets voleu, ordenant-los des de la installaci mnima \n"
-#~ "fins a la installaci completa de cadascun dels grups seleccionats."
-
-#~ msgid ""
-#~ "You need %dMB for a full install of the groups you selected.\n"
-#~ "You can go on anyway, but be warned that you won't get all packages"
-#~ msgstr ""
-#~ "Us calen %dMB per a una instalaci completa dels grups que heu "
-#~ "seleccionat.\n"
-#~ "Podeu continuar igualment, per tingueu en compte que no tindreu tots els "
-#~ "paquets"
-
-#~ msgid "Choose other CD to install"
-#~ msgstr "Escolliu un altre CD per installar"
-
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed Linux before.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Customized: If you are familiar with Linux, you will be able to \n"
-#~ "select the usage for the installed system between normal, development or\n"
-#~ "server. Choose \"Normal\" for a general purpose installation of your\n"
-#~ "computer. You may choose \"Development\" if you will be using the "
-#~ "computer\n"
-#~ "primarily for software development, or choose \"Server\" if you wish to\n"
-#~ "install a general purpose server (for mail, printing...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: If you are fluent with GNU/Linux and want to perform\n"
-#~ "a highly customized installation, this Install Class is for you. You "
-#~ "will\n"
-#~ "be able to select the usage of your installed system as for \"Customized"
-#~ "\"."
-#~ msgstr ""
-#~ "Seleccioneu:\n"
-#~ "\n"
-#~ " - Recomanada: Si mai no heu installat el Linux.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Personalitzada: Si esteu familiaritzat amb el Linux, podreu\n"
-#~ "triar l's del sistema installat entre Normal, Desenvolupament o\n"
-#~ "Servidor. Trieu \"Normal\" per a una installaci per a un s\n"
-#~ "general del vostre ordinador, \"Desenvolupament\" si utilitzareu\n"
-#~ "l'ordinador principalment per a desenvolupament de programari,\n"
-#~ "o \"Servidor\" si voleu installar un servidor convencional (per\n"
-#~ "a correu, impressions...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Per a experts: Si domineu el GNU/Linux i voleu realitzar una\n"
-#~ "installaci totalment personalitzada, aquest s el vostre\n"
-#~ "tipus d'installaci. Podreu seleccionar l's del vostre sistema\n"
-#~ "com a \"Personalitzada\"."
-
-#~ msgid "Downloading cryptographic packages"
-#~ msgstr "S'estan descarregant els paquets criptogrfics"
-
-#~ msgid "Setup SCSI"
-#~ msgstr "Configura el SCSI"
-
-#~ msgid "Installation CD Nr %s"
-#~ msgstr "CD d'installaci Nr %s"
-
-#~ msgid ""
-#~ "Update installation image!\n"
-#~ "\n"
-#~ "Ask your system administrator or reboot to update your installation image "
-#~ "to include\n"
-#~ "the Cd-Rom image labelled \"%s\". Press Ok if image has been updated or "
-#~ "press Cancel\n"
-#~ "to avoid installation from this Cd-Rom image."
-#~ msgstr ""
-#~ "Actualitzeu la imatge de la installaci!\n"
-#~ "\n"
-#~ "Consulteu a l'administrador del sistema o torneu a arrencar per "
-#~ "actualitzar\n"
-#~ "la imatge de la installaci per incloure la imatge en CD-ROM etiquetada "
-#~ "com\n"
-#~ "\"%s\". Premeu D'acord si la imatge s'ha actualitzat o premeu Cancella "
-#~ "per\n"
-#~ "no fer la installaci des d'aquesta imatge en Cd-ROM."
-
-#~ msgid "Which language do you want?"
-#~ msgstr "Quin idioma voleu?"
-
-#~ msgid "Hurt me plenty"
-#~ msgstr "Fes-me molt de mal"
-
-#~ msgid "What usage do you want?"
-#~ msgstr "Quina utilitzaci voleu?"
-
-#~ msgid "Choose install or upgrade"
-#~ msgstr "Installaci o actualitzaci"
-
-#~ msgid "Enter a floppy (all data will be lost)"
-#~ msgstr ""
-#~ "Inseriu un disquet a la unitat\n"
-#~ "(Se'n perdran totes les dades)"
-
-#~ msgid "Going to install %d MB. You can choose to install more programs"
-#~ msgstr "Ara s'installaran %d MB. Podeu triar installar ms programes"
-
-#~ msgid "Too many packages chosen: %dMB doesn't fit in %dMB"
-#~ msgstr "S'han escollit massa paquets: %dMB no cap a %dMB"
-
-#~ msgid "Bad kickstart file %s (failed %s)"
-#~ msgstr "Fitxer d'inici rpid %s incorrecte (ha fallat %s)"
-
-#~ msgid "Size: %s MB"
-#~ msgstr "Mida: %s MB"
-
-#~ msgid "US Keyboard"
-#~ msgstr "Teclat EU"
-
-#~ msgid "resizing"
-#~ msgstr "s'est canviant la mida"
-
-#~ msgid "changing type of"
-#~ msgstr "s'est canviant el tipus de"
-
-#~ msgid "After %s partition %s,"
-#~ msgstr "Desprs de %s partici %s,"
-
-#~ msgid "linear"
-#~ msgstr "lineal"
-
-#~ msgid "Linear (needed for some SCSI drives)"
-#~ msgstr "Lineal (necessari per a algunes unitats SCSI)"
-
-#~ msgid "beginner"
-#~ msgstr "principiant"
-
-#~ msgid "developer"
-#~ msgstr "desenvolupador"
-
-#~ msgid "Password:"
-#~ msgstr "Contrasenya:"
-
-#~ msgid "User name:"
-#~ msgstr "Nom d'usuari:"
-
-#~ msgid ""
-#~ "Failed to create an HTP boot floppy.\n"
-#~ "You may have to restart installation and give ``%s'' at the prompt"
-#~ msgstr ""
-#~ "No s'ha pogut crear un disquet d'arrencada HTP.\n"
-#~ "Potser us caldr reiniciar la installaci i introduir \"%s\" a "
-#~ "l'indicador"
-
-#~ msgid "It is necessary to restart installation with the new parameters"
-#~ msgstr "Cal reiniciar la installaci amb els nous parmetres"
+#~ msgid "Remove"
+#~ msgstr "Elimina"
-#~ msgid "It is necessary to restart installation booting on the floppy"
-#~ msgstr "Cal reiniciar la installaci arrencant des del disquet"
+#~ msgid "Tool for boot disk creation"
+#~ msgstr "Eina per a la creaci de discs d'arrencada"
-#~ msgid ""
-#~ "Enter a floppy to create an HTP enabled boot\n"
-#~ "(all data on floppy will be lost)"
-#~ msgstr ""
-#~ "Introduu un disquet per una arrencada habilitada per a HTP\n"
-#~ "(es perdran totes les dades del disquet)"
+#~ msgid "Show expert mode"
+#~ msgstr "Mostra el mode expert"
-#~ msgid ""
-#~ "Linux does not yet fully support ultra dma 66.\n"
-#~ "As a work-around i can make a custom floppy giving access the hard drive "
-#~ "on ide2 and ide3"
-#~ msgstr ""
-#~ "El Linux encara no suporta completament l'ultra dma 66.\n"
-#~ "Com a alternativa, puc fer un disquet personalitzat que doni accs a tot "
-#~ "el disc dur a ide2 i ide3"
+#~ msgid "modules"
+#~ msgstr "mduls"
-#~ msgid "A entry %s already exists"
-#~ msgstr "Ja existeix una entrada %s"
+#~ msgid "Boot disk maker. Still in early stage.\n"
+#~ msgstr "Creador de discs d'arrencada. Encara en una fase primerenca.\n"
-#~ msgid "Installation CD Nr 1"
-#~ msgstr "CD d'installaci Nr 1"
+#~ msgid "experts only"
+#~ msgstr "noms experts"
-#~ msgid "Local LAN"
-#~ msgstr "LAN local"
+#~ msgid "/File/_Preferences"
+#~ msgstr "/Fitxer/_Preferncies"
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 3b88dd7d4..9d1a5c392 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -1,39 +1,69 @@
-# Czech messages for DrakX.
+# Czech messages for drakbootdisk.
# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (C) 1999 MandrakeSoft
-# Vladimr Marek <vlmarek@volny.cz>, 2000
-# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000
+# Radek Vybiral <Radek.Vybiral@vsb.cz>, 2000, 2001.
+# Michal Bukovjan <michal.bukovjan@openone.cz>, 2002
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-13 14:25GMT+0100\n"
-"Last-Translator: Radek Vybral <Radek.Vybiral@vsb.cz>\n"
-"Language-Team: Czech <cs@li.org>\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-07-29 14:57GMT\n"
+"Last-Translator: Michal Bukovjan <michal.bukovjan@openone.cz>\n"
+"Language-Team: etina <de@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 0.9.5\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Konfigurovat vechny monitory nezvisle"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Pout rozen Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Konfigurovat pouze kartu \"%s\" (%s)"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "64 MB nebo vce"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Zvolte X server"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "X server"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Konfigurace dvou monitor"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -41,41 +71,44 @@ msgstr ""
"V systm podporuje zobrazen na dvou monitorech.\n"
"Co chcete dlat?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Grafick karta"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Kolik pamti je na va grafick kart ?"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Zvolte typ va grafick karty"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Nastaven XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Zvolte X server"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Kter XFree by jste chtli pout?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "X server"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Konfigurovat vechny monitory nezvisle"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Zvolte ovlada pro X server"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Pout rozen Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Ovlada pro X"
+#: ../../Xconfig/card.pm_.c:379
+#, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Konfigurovat pouze kartu \"%s\"%s"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Kter XFree by jste chtli pout?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s s hardwarovou 3D akcelerac"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,32 +118,17 @@ msgstr ""
"Pokud pouijete XFree %s, mete na druhou stranu doshnout lepch vsledk "
"ve 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "S XFree %s me vae karta vyut 3D hardwarov akcelerace."
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s s hardwarovou 3D akcelerac"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"S XFree %s me vae karta vyut 3D hardwarov akcelerace.\n"
-" TOTO JE POUZE EXPERIMENTLN VERZE, A MٮE VST K NESTABILIT SYSTMU."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s s EXPERIMENTLN 3D hardwarovou akcelerac"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -121,31 +139,57 @@ msgstr ""
"TOTO JE POUZE EXPERIMENTLN VERZE, A MٮE VST K NESTABILIT SYSTMU.\n"
"Vae karta je podporovna i v XFree %s, kde me mt lep podporu pro 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"S XFree %s me vae karta vyut 3D hardwarov akcelerace.\n"
+" TOTO JE POUZE EXPERIMENTLN VERZE, A MٮE VST K NESTABILIT SYSTMU."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalan ovlada pro obrazovku)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Nastaven XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Kolik pamti je na va grafick kart ?"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Zvolte monosti pro dan X server"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Zachovat zmny?\n"
+"Aktuln konfigurace je:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Zvolte typ svho monitoru"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Vlastn"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Obecn"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+msgid "Vendor"
+msgstr "Dodavatel"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -169,511 +213,326 @@ msgstr ""
"jist\n"
"zvolte radji typ s nimi schopnostmi."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Horizontln(dkov) synchronizace"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Vertikln(obrazovkov) synchronizace"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor nen nastaven"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Grafick karta jet nen nastavena"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Jet nejsou zvolena rozlien"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Chcete si vyzkouet nastaven?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Varovn: na tto grafick kart je testovn nebezpen"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Vyzkouet nastaven"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 barev (8 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"zkuste zmnit nkter parametry"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 tisc barev (15 bit)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Vyskytla se tato chyba:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 tisc barev (16 bit)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Test skon automaticky za %d sekund"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 milin barev (24 bit)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Je to sprvn nastaven?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 miliardy barev (32 bit)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Vyskytla se chyba, zkuste zmnit nkter parametry"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Rozlien"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Rozlien"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Vyberte si rozlien a barevnou hloubku"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Grafick karta: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "XFree86 server: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Vce"
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Zruit"
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Expertn reim"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Ukzat ve"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Chcete si vyzkouet nastaven?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Rozlien"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Vyzkouet nastaven"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Rozloen klvesnice: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Typ myi: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Ppojen myi: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Horizontln frekvence monitoru: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Vertikln frekvence monitoru: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Grafick karta: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Identifikace grafick karty: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
-#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Pam na gr. kart: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Barevn hloubka: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Rozlien: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ovlada: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Pipravuji nastaven X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Co chcete dlat?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Zmnit monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Zmnit grafickou kartu"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Zmnit parametry X Serveru"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Zmnit rozlien"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Zobrazit informace"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Znovu vyzkouet nastaven X"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Konec"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Zachovat zmny?\n"
-"Aktuln konfigurace je:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "Spout se X"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Mu nastavit v pota tak, aby automaticky spustil X pi startu.\n"
"Chcete aby pota po zapnut spustil grafick reim?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Pro aktivaci zmn se prosm znovu pihlaste na %s"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Prosm odhlaste se a pak stisknte Ctrl-Alt-Backspace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 barev (8 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 tisc barev (15 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 tisc barev (16 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 milin barev (24 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 miliardy barev (32 bit)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "64 MB nebo vce"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "Klasick VGA, 640x480 pi 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Super VGA, 800x600 pi 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Kompatibiln s 8514, 1024x768 pi 87 Hz prokldan (ne 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 pi 87 Hz prokldan, 800x600 pi 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Lep Super VGA, 800x600 pi 60 Hz, 640x480 pi 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Neprokldan SVGA, 1024x768 pi 60 Hz, 800x600 pi 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Vysokofrekvenn SVGA, 1027x768 pi 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Multifrekvenn kter um 1280x1024 pi 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Multifrekvenn, kter um 1280x1024 pi 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Multifrekvenn, kter um 1280x1024 pi 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor, kter um 1600x1200 pi 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor, kter um 1600x1200 pi 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Prvn sektor zavdcho diskovho oddlu"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Prvn sektor disku (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Instalace SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Kam chcete nainstalovat zavdc program?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Instalace LILO/Grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO s textovou nabdkou"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "LILO s grafickou nabdkou"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Sputn s DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Zkladn nastaven zavdcho programu"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Zavdc program"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Instalace zavdcho programu"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Startovac zazen"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nefunguje se starm BIOSem)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Kompaktn"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "kompaktn"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Textov reim"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Prodleva ped automatickm sputnm"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Heslo"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Heslo (podruh)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Omezen nastaven z pkazov dky"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "omezen"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Vyistit /tmp pi kadm startu"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Pokud je teba, upesnte velikost pamti (nalezeno %d MB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Povolit vce profil"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Zadejte velikost pamti v MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Volba ''Omezen nastaven z pkazov dky'' je bezpedmtn bez hesla"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Zkuste to znovu, prosm"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Hesla nejsou shodn"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "vodn zprva"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Prodleva pro firmware"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Prodleva pi sputn"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Povolit sputn z CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Povolit zavad OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Vchoz OS?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -687,83 +546,83 @@ msgstr ""
"\n"
"Ze kterho disku spoutte systm?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Tady jsou vechny zznamy.\n"
"Mete pidat dal nebo zmnit stvajc."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Pidat"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Hotovo"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Zmnit"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Jak typ zznamu chcete pidat?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Jin systm (SunOs...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Jin systm (MacOs...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Jin systm (Windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Obraz(image)"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Koenov(root)"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Pipojit"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Pro ten i zpis"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabulka"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Nejist"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Znaka"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Vchoz"
@@ -795,53 +654,77 @@ msgstr "Muste zadat koenov oddl"
msgid "This label is already used"
msgstr "Tato znaka se ji pouv"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Nael jsem %s %s rozhran"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Mte jet njak jin?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Mte njak %s rozhran?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Ano"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Ukzat informace o hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaluji ovlada pro %s kartu %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
+#: ../../any.pm_.c:697
+#, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Nyn lze zadat volby pro modul %s.\n"
+"Pozn.: kad adresa by mla bt ve tvaru 0x nap. '0x123'"
+
+#: ../../any.pm_.c:703
+#, 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 ""
+"Nyn mete poskytnout modulu %s dal parametry.\n"
+"Volby se zadvaj ve tvaru ''jmno=hodnota jmno2=hodnota2 ...''.\n"
+"Napklad, ''io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Volby modulu:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kter %s ovlada mm zkusit?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -857,43 +740,19 @@ msgstr ""
"njak doplujc monosti, nebo radji nechte ovlada samostatn "
"prozkoumat\n"
"hardware vaeho potae, aby zskal informace kter potebuje? Zkoumn\n"
-"hardware me ve vyjmench ppadech zpsobit zamrznut potae, ale "
+"hardware me ve vjimench ppadech zpsobit zamrznut potae, ale "
"nemlo\n"
"by v dnm ppad zpsobit jin kody."
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Automatick prozkoumn"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Zadejte monosti"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Nyn lze zadat volby pro pslun modul %s.\n"
-"Pozn.: kad adresa by mla bt ve tvaru 0x nap. '0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Nyn mete poskytnout modulu %s dal parametry.\n"
-"Volby se zadvaj ve tvaru ''jmno=hodnota jmno2=hodnota2 ...''.\n"
-"Napklad, ''io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Volby modulu:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -902,49 +761,53 @@ msgstr ""
"Sputn modulu %s selhalo.\n"
"Chcete to zkusit s jinmi parametry?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "pstup k programm v X prosted"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "pstup k rpm nstrojm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "povolit \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "pstup k administrativnm souborm"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(u byl pidn %s)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Toto heslo je pli jednoduch"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Prosm zadejte uivatelsk jmno"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Uivatelsk jmno me obsahovat pouze mal psmena, sla, '-' a '_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+msgid "The user name is too long"
+msgstr "Toto uivatelsk jmno je pli dlouh"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Toto uivatelsk jmno u bylo pidno"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Pidat uivatele"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -953,32 +816,32 @@ msgstr ""
"Zadejte uivatele\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Vytvoit uivatele"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Skuten jmno"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Uivatelsk jmno"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Automatick pihlen"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -987,56 +850,58 @@ msgstr ""
"uivatele.\n"
"Chcete pout tuto monost?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Zvolte standardnho uivatele :"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Vyberte si, kter sprvce oken m bt spoutn:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Prosm zvolte si jazyk, kter chcete pouvat."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Mete si zvolit dal jazyky, kter budou dostupn po instalaci"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Vechno"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Povolit vem uivatelm"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Vlastn"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Nesdlet"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Balek %s mus bt nainstalovn. Chcete ho nainstalovat?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
-msgstr "Nyn lze provst export pes NFS nebo Samba protokol. Kter chcete"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
+msgstr ""
+"Nyn lze provst export pes protokol NFS nebo Samba. Vyberte prosm, kter "
+"chcete pout."
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Chyb potebn balek %s"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"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"
@@ -1045,67 +910,47 @@ msgstr ""
"Chcete povolit uivatelm, aby si mohli sdlet adrese ve svm domovskm "
"adresi?\n"
"Pokud to povolte, uivatelm sta pouze kliknout na \"Sdlet\" v "
-"aplikacch konqueror a nautilus.\n"
+"aplikacch Konqueror a Nautilus.\n"
"\n"
"Lze tak provst \"Vlastn\" povolen pro jednotliv uivatele.\n"
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Zruit"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
-msgstr "Spustit userdrake"
+msgstr "Spustit UserDrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
msgstr ""
"Sdlen mezi uivateli pouv skupinu \"fileshare\". \n"
-"Uivatele lze do tto skupiny pidat pomoc nstroje userdrake."
+"Uivatele lze do tto skupiny pidat pomoc nstroje UserDrake."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Dvee dokon"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Slab"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Standardn"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Vysok"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Vy"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoidn"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1116,14 +961,14 @@ msgstr ""
"systm, ale na druhou stranu je velmi citliv: Nesm bt pouit pro\n"
"pota pipojen k Internetu. Pro pihlen nen zapoteb dn heslo."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Hesla jsou nyn aktivn, ale stle nedoporuuji pout tento pota na sti."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1131,60 +976,62 @@ msgstr ""
"Toto je standardn rove zabezpeen pro pota, kter je pouvn jako "
"klient pro pipojen k internetu."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
"Existuj zde nkter omezen a kadou noc jsou sputny automatick testy."
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
-"S touto bezpenostn rovn je mon pouvat pota jako server.\n"
-"Bezpenost je nyn dostaten pro server s pipojenm mnoha klient.\n"
-"Poznmka: pokud je pota pouvn pouze jako klient pro pipojen k "
-"Internetu, je lep zvolit ni rove."
+"S touto bezpenostn rovn je mon pouvat systm jako server.\n"
+"Bezpenost je nyn dostaten vysok, aby bylo mon pouvat systm jako "
+"server, ke ktermu\n"
+"je mon pipojit mnoho klient. Poznmka: pokud je pota pouvn pouze "
+"jako klient pro pipojen k Internetu, je lep zvolit ni rove."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Tato rove m vlastnosti pedchoz rovn, ale systm je pln uzaven.\n"
"Zabezpeen je nastaveno na maximum."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Zvolte si rove zabezpeen"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "rove zabezpeen"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Pout libsafe pro servery"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Knihovna, kter zabrauje tokm proti peteen bufferu nebo proti patnmu "
"formtovn etzc."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr "Administrtor bezpenosti (pihlaovac jmno nebo email)"
+
# 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_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1208,7 +1055,7 @@ msgstr ""
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Vita Vas GRUB, program pro vyber operacniho systemu"
@@ -1221,7 +1068,7 @@ msgstr "Vita Vas GRUB, program pro vyber operacniho systemu"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Pro vyber polozek pouzijte klavesy %c a %c."
@@ -1235,7 +1082,7 @@ msgstr "Pro vyber polozek pouzijte klavesy %c a %c."
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Stisknete ENTER pro start vybranho OS, 'e' pro upravu"
@@ -1248,33 +1095,33 @@ msgstr "Stisknete ENTER pro start vybranho OS, 'e' pro upravu"
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "spoustecich parametru, nebo 'c' pro prikazovou radku."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Vybrana polozka bude automaticky spustena za %d sekund."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "nen dost msta v adresi /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Pracovn plocha"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Nabdka Start"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Zavdc program nelze nainstalovat na oddl %s\n"
@@ -1287,15 +1134,19 @@ msgstr "npovda zatm nedostupn.\n"
msgid "Boot Style Configuration"
msgstr "Nastaven stylu zavdn"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
-msgstr "_Soubor"
+msgstr "/_Soubor"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
-msgstr "/Soubor/_Konec"
+msgstr "/Soubor/U_konit"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>K"
@@ -1313,7 +1164,7 @@ msgstr "Tradin monitor"
#: ../../bootlook.pm_.c:94
msgid "Traditional Gtk+ Monitor"
-msgstr "Tradin Gtk+ monitor"
+msgstr "Tradin GTK+ monitor"
#: ../../bootlook.pm_.c:95
msgid "Launch Aurora at boot time"
@@ -1330,14 +1181,14 @@ msgstr "Reim Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Jako sprvce spoutn nyn pouvte %s.\n"
"Pokud chcete spustit prvodce nastavenm, kliknte na Konfigurovat."
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Konfigurovat"
@@ -1347,7 +1198,7 @@ msgid "System mode"
msgstr "Systmov reim"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Spustit X-Window pi startu"
#: ../../bootlook.pm_.c:148
@@ -1358,14 +1209,16 @@ msgstr "Ne, nechci automatick pihlen"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ano, chci automatick pihlen s tmto (uivatelem, desktopem)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "OK"
@@ -1411,9 +1264,9 @@ msgstr "Nelze provst sejmut obrazovky ped rozdlenm disk"
#: ../../common.pm_.c:166
#, c-format
msgid "Screenshots will be available after install in %s"
-msgstr "Sejmut obrazovvky budou dostupn po instalaci v adresi %s"
+msgstr "Sejmut obrazovky budou dostupn po instalaci v adresi %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Francie"
@@ -1421,7 +1274,7 @@ msgstr "Francie"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Belgie"
@@ -1445,11 +1298,12 @@ msgstr "Norsko"
msgid "Sweden"
msgstr "vdsko"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Nizozem"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Itlie"
@@ -1457,7 +1311,7 @@ msgstr "Itlie"
msgid "Austria"
msgstr "Rakousko"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Spojen stty americk"
@@ -1465,8 +1319,8 @@ msgstr "Spojen stty americk"
msgid "Please make a backup of your data first"
msgstr "Zlohujte si nejdv sv data, prosm"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "tte pozorn!"
@@ -1479,11 +1333,12 @@ msgstr ""
"Jestlie chcete pouvat aboot, muste nechat voln msto na zatku disku\n"
"(2048 sektor sta)"
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Chyba"
@@ -1491,11 +1346,11 @@ msgstr "Chyba"
msgid "Wizard"
msgstr "Prvodce"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Co udlte ?"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1503,181 +1358,186 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
"Mte jeden velik oddl FAT\n"
-"(vtinou pouvan Microsoft Dos/Windows).\n"
+"(vtinou pouvan Microsoft DOS/Windows).\n"
"Doporuuji vm nejprve zmenit tento oddl\n"
"(klepnte na nj a potom na\n"
"\"Zmnit velikost\")"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Prosm klepnte na oddl"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Detaily"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "urnlovac FS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOs"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Odkldac (swap)"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Przdn"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Dal"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Souborov systmy:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Vytvoit"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Zmnit typ"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Msto toho pouijte ``%s''"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Smazat"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Nejprve pouijte ``Odpojit''"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Tm e zmnte typ oddlu %s pijdete o vechna jeho data"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Vyberte oddl"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Vyberte jin oddl"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Konec"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Pepnout se do mdu 'expert'"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Pepnout se do mdu 'normln'"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Zpt"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Pesto chcete pokraovat?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Konec bez uloen"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Chcete skonit bez zapsn do tabulky oddl?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
-msgstr "Chcete uloit modifikaci souboru /etc/fstab?"
+msgstr "Chcete uloit pravy souboru /etc/fstab?"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Automaticky rozmstit"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Ve smazat"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Vce"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
-msgstr "Informace o hardisku"
+msgstr "Informace o pevnm disku"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Vechny primrn oddly (partitions) jsou pouvny"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Nemu pidat dn dal oddl"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Abyste mohli mt vce oddl, muste smazat jeden existujc a na jeho "
"mst\n"
-"vytvoit rozen(extended) oddl"
+"vytvoit rozen (extended) oddl"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Uloit tabulku oddl"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Obnovit tabulku oddl"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Zchrana tabulky oddl"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Znovu nast tabulku oddl"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Automatick pipojovn pro vyjmateln mdia"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Zvolit soubor"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1685,11 +1545,11 @@ msgstr ""
"Zlon tabulka oddl nem stejnou velikost\n"
"Chcete pesto chcete pokraovat?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Varovn"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1697,122 +1557,129 @@ msgstr ""
"Vlote disketu do mechaniky\n"
"Vechna data na tto disket budou smazna"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Pokoum se obnovit tabulku oddl"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Podrobn informace"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Ppojn bod"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Volby"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Zmnit velikost"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Pesunout"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Formtovat"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Pipojit"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Pidat do RAIDu"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Pidat do LVMu"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Odpojit"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Odebrat z RAIDu"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Odebrat z LVMu"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Zmnit RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Pout loopback"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Vytvoit nov oddl"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Poten sektor: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Velikost v MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Souborov systm: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Adres pipojen (mount point): "
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Nastaven: "
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Odstranit soubor loopbacku?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Zmnit typ oddlu"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Kter souborov systm chcete pout?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Pepnm z ext2 na ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kam chcete pipojit loopback %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kam chcete pipojit zazen %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1820,125 +1687,130 @@ msgstr ""
"Nemu smazat ppojn bod, protoe tento oddl je pouvn pro loopback.\n"
"Odstrate nejprve loopback"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Potm hranice souborovho systmu fat"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Mnm velikost"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Na tomto diskovm oddlu nelze mnit velikost"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Vechna data z tohoto oddlu by mla bt zlohovna"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Kdy zmnte velikost oddlu %s, ztratte tm vechna jeho data"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Zvolte novou velikost"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Nov velikost v MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Na kter disk chcete oddl pesunout?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Na kter sektor chcete oddl pesunout?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Pesouvm"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Pesouvm oddl..."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Zvolte existujc RAID pro pidn"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "nov"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Zvolte existujc LVM pro pidn"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Jmno pro LVM?"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Tento oddl neme bt pouit pro loopback"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Nzev souboru loopbacku:"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Zadejte jmno souboru"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr "Soubor u je pouvn jinm loopbackem, zvolte si jin"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Soubor u existuje. Mm ho pout?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Volby pro pipojen"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Dal"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "zazen"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "rove"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
-msgstr "Velikost bloku(chunk)"
+msgstr "Velikost bloku (chunk)"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Bute opatrn: tato akce je nebezpen."
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Jak typ diskovho oddlu?"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Balek %s mus bt nainstalovn. Chcete ho nainstalovat?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1950,20 +1822,20 @@ msgstr ""
"Buto pouijete LILO a nebude to fungovat, nebo nepouijete LILO a tedy "
"nepotebujete /boot"
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-"Oddl kter jste zvolili jako koenov (root - /) je na disku fyzicky za "
-"cylindrem 1024,\n"
-"a pitom nemte /boot oddl. Jestlie chcete pout sprvce bootu (boot "
+"Oddl kter jste zvolili jako koenov (root - /) je na disku fyzicky "
+"umstn za cylindrem 1024,\n"
+"a pitom nemte /boot oddl. Jestli chcete pout sprvce bootu LILO (boot "
"manager),\n"
"pidejte jet /boot oddl"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1973,129 +1845,129 @@ msgstr ""
"S tm se nen schopn vypodat dn zavdc program bez pouit oddlu\n"
"/boot. Ujistte se prosm, e tento oddl mte."
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Nov tabulka oddl na disku %s bude zapsna!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Aby se zmny uplatnily budete muset restartovat pota"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Kdy naformtujete oddl %s, ztratte tm vechna jeho data"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Formtuji"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formtuji soubor loopbacku %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Formtuji oddl %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Schovat soubory"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Pesunout soubory na nov diskov oddl"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Adres %s ji obsahuje njak data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Pesunuji soubory na nov diskov oddl"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Kopruji %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Odstrauji %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "oddl %s je nyn rozpoznn jako %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Zazen: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Psmeno v DOSu: %s (jenom odhad)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Typ: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Jmno: "
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Zatek: sektor %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Velikost: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Od cylindru %d do cylindru %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Naformtovan\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Nenaformtovan\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Pipojen\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2104,7 +1976,7 @@ msgstr ""
"Loopback soubor(y): \n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2112,27 +1984,27 @@ msgstr ""
"Standardn startovac oddl\n"
" (Pro MS-DOS, ne pro LILO)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "rove %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Velikost bloku(chunk) %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID disky %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback soubor: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2144,7 +2016,7 @@ msgstr ""
"s ovladai, je lep\n"
"no nechat neporuen.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2156,62 +2028,62 @@ msgstr ""
"oddl je pro sputn\n"
"dalho systmu.\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Velikost: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s cylindr, %s hlav, %s sektor\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Informace: "
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "LVM disky %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Typ tabulky oddl: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
+#: ../../diskdrake/interactive.pm_.c:1143
#, c-format
-msgid "on bus %d id %d\n"
-msgstr "na sbrnici %d id %d\n"
+msgid "on channel %d id %d\n"
+msgstr "na kanle %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Volby: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Kl pro kryptovan souborov systm"
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Vyberte si kryptovac kl pro souborov systm"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr "Tento kl je pli jednoduch (mus bt alespo %d znak dlouh)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Kryptovac kle se neshoduj"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Kryptovac kl"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Kryptovac kl (znovu)"
@@ -2220,35 +2092,62 @@ msgid "Change type"
msgstr "Zmnit typ"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Prosm klepnte na zdroj"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr "Nelze se pihlsit pod uivatelskm jmnem %s (chybn heslo?)"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+msgid "Domain Authentication Required"
+msgstr "Vyadovno Oven Domny"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Another one"
+msgstr "Dal"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+msgid "Which username"
+msgstr "Kter uivatelsk jmno"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+"Prosm zadejte sv uivatelsk jmno, heslo a nzev domny, pod ktermi "
+"chcete pistupovat k tomuto potai."
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+msgid "Username"
+msgstr "Uivatelsk jmno"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+msgid "Domain"
+msgstr "Domna"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Vyhledat servery"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formtovn %s skonilo chybou"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "nevm jak naformtovat %s na typ %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "pipojen oddlu %s v adresi %s selhalo"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "selhal bh fsck s nvratovm kdem %d nebo signlem %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "chyba odpojovn %s: %s"
@@ -2265,68 +2164,310 @@ msgstr "s /usr"
msgid "server"
msgstr "server"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Nemete pout JFS pro oddl men ne 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Nemete pout ReiserFS pro oddl men ne 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Ppojn body (mount points) mus zanat '/'"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Oddl s ppojnm bodem %s u existuje\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Nelze pout LVM Logickho disku na pipojen bod %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Tento adres mus krom koenovho souborovho systmu zstat"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
-"Pro tento ppojn bod potebujete opravdov souborov systm (Ext2, "
-"ReiserFS)\n"
+"Pro tento ppojn bod potebujete opravdov souborov systm (ext2/ext3, "
+"ReiserFS, XFS nebo JFS)\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Nelze pout kryptovan souborov systm na pipojen bod %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nen dostatek msta pro automatick rozdlen disku"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Nic nedlat"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Chyba pi otevrn %s pro zpis: %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"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 ""
"Stala se chyba - nebylo nalezeno dn zazen na kterm by se daly "
"vytvoit nov souborov systmy. Zkontrolujte prosm hardware"
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Nemte dn oddly!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+msgid "Auto-detect"
+msgstr "Autodetekce"
+
+#: ../../harddrake/bttv.pm_.c:64
+msgid "Unknown|Generic"
+msgstr "Neznm|Obecn"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr "Neznm|CPH05X (bt878) [vce dodavatel]"
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr "Neznm|CPH06X (bt878) [vce dodavatel]"
+
+#: ../../harddrake/bttv.pm_.c:193
+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 ""
+"Modul bttv jdra operanho systmu GNU/Linux nalezne sprvn parametry "
+"automaticky pro vtinu modernch TV karet.\n"
+"Je-li vae karta patn detekovna, lze nastavit sprvn typ karty a tuneru "
+"run zde. Pokud je to poteba, vyberte tak parametry va TV karty."
+
+#: ../../harddrake/bttv.pm_.c:196
+msgid "Card model :"
+msgstr "Model karty :"
+
+#: ../../harddrake/bttv.pm_.c:197
+msgid "PLL setting :"
+msgstr "Nastaven PLL :"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr "Poet buffer pro zachycen :"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr "Poet buffer pro zachycen systmem mmap"
+
+#: ../../harddrake/bttv.pm_.c:199
+msgid "Tuner type :"
+msgstr "Typ tuneru :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr "Podpora rdia :"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr "Zapnout podporu rdia"
+
+#: ../../harddrake/ui.pm_.c:12
+msgid "/_Quit"
+msgstr "/_Konec"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Npovda"
+
+#: ../../harddrake/ui.pm_.c:14
+msgid "/_Help..."
+msgstr "/_Npovda..."
+
+#: ../../harddrake/ui.pm_.c:15
+msgid "/_About..."
+msgstr "/_O aplikaci..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Model karty :"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Zruit"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr "Sbrnice"
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "Module"
+msgstr "Modul"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr "Tda mdi"
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Popis"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+msgid "Bus identification"
+msgstr "Identifikace sbrnice"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr "Umstn sbrnice"
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Zvolit soubor"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Zazen brny(gateway)"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 tlatka"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+msgid "Harddrake2 version "
+msgstr "Verze Harddrake2 "
+
+#: ../../harddrake/ui.pm_.c:122
+msgid "Detected hardware"
+msgstr "Nalezen hardware"
+
+#: ../../harddrake/ui.pm_.c:136
+msgid "Informations"
+msgstr "Informace"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr "Spustit nstroj pro nastaven"
+
+#: ../../harddrake/ui.pm_.c:158
+msgid "Configure module"
+msgstr "Nastavit modul"
+
+#: ../../harddrake/ui.pm_.c:168
+msgid "Detection in progress"
+msgstr "Probh detekce"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Prosm pokejte"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr "primrn"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "secondary"
+msgstr "sekundrn"
+
+#: ../../harddrake/ui.pm_.c:260
+#, c-format
+msgid "Running \"%s\" ..."
+msgstr "Spoutm \"%s\" ..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr "O aplikaci HardDrake"
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+"Toto je HardDrake, nstroj spolenosti Mandrake pro nastaven hardware.\n"
+"Verze:"
+
+#: ../../harddrake/ui.pm_.c:281
+msgid "Author:"
+msgstr "Autor:"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr "Npovda pro HardDrake"
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2340,7 +2481,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2373,7 +2514,7 @@ msgstr ""
"\n"
"Jako prvn zadejte reln jmno. Nen to povinn, take mete zadat co "
"chcete\n"
-"a drakX pouije prvn slovo jako uivatelsk jmno, pod kterm se bude "
+"a DrakX pouije prvn slovo jako uivatelsk jmno, pod kterm se bude "
"uivatel\n"
"hlsit do systmu. Je mon ho nsledn zmnit. Dle se zadv heslo pro\n"
"uivatele. Volba hesla pro normln uivatele sice nen tak kritick jako\n"
@@ -2466,9 +2607,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2587,7 +2727,7 @@ msgid ""
"another installation. See the second tip of last step on how to create such\n"
"a floppy."
msgstr ""
-"V zvislosti na tom, zda jste zvolili individuln vbt balk, nabdne\n"
+"V zvislosti na tom, zda jste zvolili individuln vbr balk, nabdne\n"
"se stromov struktura, obsahujc vechny balky organizovan do skupin.\n"
"Pi prochzen stromu mete vybrat jednotliv balky nebo cel skupiny.\n"
"\n"
@@ -2718,7 +2858,7 @@ msgstr ""
"hodin\n"
"pipojenm se k asovmu serveru na internetu. Vyberte si v seznamu ten "
"server,\n"
-"kter je vm nejbl. Je zamoejm, e pro sprvnou funkci muste mt "
+"kter je vm nejbl. Je samozejm, e pro sprvnou funkci muste mt "
"fukn\n"
"pipojen k internetu. Na pota se tak nainstaluje asov server, kter\n"
"mohou pouvat jin potae ve va lokln sti."
@@ -2745,7 +2885,7 @@ msgid ""
"after 10 seconds, restoring the screen."
msgstr ""
"X Window System (zkrcen X) je srdcem grafickho rozhran GNU/Linuxu,\n"
-"na kterm jsou provozovny grafick prosted (KDE,Gnome,AfterStep, "
+"na kterm jsou provozovny grafick prosted (KDE, Gnome, AfterStep, "
"WindowMaker)\n"
"V tto sekci se DrakX pokus nakonfigurovat X automaticky.\n"
"\n"
@@ -2806,7 +2946,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2818,9 +2958,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2890,21 +3029,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2920,9 +3058,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"V tomto bod si muste definovat, na kter diskov oddly budete\n"
"instalovat nov operan systm Mandrake Linux. Pokud je disk przdn\n"
@@ -2936,7 +3074,7 @@ msgstr ""
"Jet ped zapoetm rozdlovn disku si protte manul.\n"
"\n"
"Pokud mte zvolen Expertn reim, spustil se nstroj na prci s diskem: "
-"Diskdrake, kter umouje lpe nastavit diskov oddly. Pokud chcete pout\n"
+"DiskDrake, kter umouje lpe nastavit diskov oddly. Pokud chcete pout\n"
"prvodce, kliknte na tlatko \"Prvodce\".\n"
"\n"
"Pokud mte ji vytvoeny diskov oddly z pedchozch instalac nebo\n"
@@ -2999,9 +3137,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3097,7 +3234,7 @@ msgstr ""
"Kliknte na \"Zruit\" pokud chcete vybrat jin oddly pro instalaci\n"
"systmu Mandrake Linux.\n"
"\n"
-"Kliknutm na \"Rozen\" mete vybrat, kter oddlz budou otestovny\n"
+"Kliknutm na \"Rozen\" mete vybrat, kter oddly budou otestovny\n"
"na vadn bloky."
#: ../../help.pm_.c:404
@@ -3175,8 +3312,8 @@ msgstr ""
"pota vyuvn a m cennj data obsahuje, tm je poteba zvolit vy\n"
"rove. Na druhou stranu, vy rove znesnaduje nkter obvykl postupy.\n"
"Vce informac o rovnch bezpenosti se dotete v kapitole MSEC v "
-"referenn\n"
-"pruce. \n"
+"referenn pruce.\n"
+"\n"
"Pokud nevte co vybrat, ponechte vchoz nastaven."
#: ../../help.pm_.c:442
@@ -3201,38 +3338,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3320,7 +3451,7 @@ msgstr ""
"\n"
"Pokud instalujete na pota PPC, je poteba vytvoit mal oddl HPFS,\n"
"tzv. \"bootstrap\" o minimln velikosti 1MB, kter bude pouit pro zavad\n"
-"yaboot. Pokud vytvote tento oddl vt, nap. 50 MB, je to dobr msto "
+"Yaboot. Pokud vytvote tento oddl vt, nap. 50 MB, je to dobr msto "
"pro\n"
"uloen ramdisku a jdra pro situace zchrany disku."
@@ -3402,11 +3533,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3464,7 +3595,7 @@ msgstr ""
"ty, kte nemaj velmi dobr znalosti GNU/Linuxu.\n"
"Nevolte tuto volbu, pokud pesn nevte, co dlte."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3492,7 +3623,7 @@ msgstr ""
"Pokud mte klvesnici pro jin jazyk, kliknte na tlatko \"Vce\"\n"
"a zobraz se kompletn seznam vech podporovanch rozloen klvesnic."
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3521,7 +3652,7 @@ msgstr ""
"Pokud mte jazyk vybrn, kliknte na \"OK\" a instalace bude pokraovat\n"
"dalm krokem."
-#: ../../help.pm_.c:609
+#: ../../help.pm_.c:610
msgid ""
"DrakX generally detects the number of buttons your mouse has. If not, it\n"
"assumes you have a two-button mouse and will set it up for third-button\n"
@@ -3536,9 +3667,9 @@ msgid ""
"correct. If the mouse is not working well, press the space bar or [Return]\n"
"to \"Cancel\" and choose again."
msgstr ""
-"DrakX zjistil, e mte dvou tlatkovou my a nastav emulaci pro tet "
+"DrakX zjistil, e mte dvoutlatkovou my a nastav emulaci pro tet "
"tlatko.\n"
-"Taky um rozpoznat, zda je my PS/2, USB nebo sriov.\n"
+"Tak um rozpoznat, zda je my PS/2, USB nebo sriov.\n"
"\n"
"Pokud chcete zadat jin typ myi, vyberte odpovdajc typ se seznamu.\n"
"\n"
@@ -3549,7 +3680,7 @@ msgstr ""
"Pokud my nepracuje sprvn, stisknte mezernk nebo ENTER na \"Zruit\"\n"
"a vyberte jin typ."
-#: ../../help.pm_.c:623
+#: ../../help.pm_.c:624
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
@@ -3557,23 +3688,23 @@ msgstr ""
"Vyberte prosm sprvn port. Napklad \"COM1\" pod MS Windows se\n"
"v Linuxu jmenuje \"ttyS0\"."
-#: ../../help.pm_.c:627
+#: ../../help.pm_.c:628
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
-"guess DrakX will tell you if it is too easy. As you can see, you can choose\n"
-"not to enter a password, but we strongly advise you against this if only\n"
-"for one reason: do not think that because you booted GNU/Linux that your\n"
-"other operating systems are safe from mistakes. Since \"root\" can overcome\n"
-"all limitations and unintentionally erase all data on partitions by\n"
-"carelessly accessing the partitions themselves, it is important for it to\n"
-"be difficult to become \"root\".\n"
+"guess - DrakX will tell you if it is too easy. As you can see, you can\n"
+"choose not to enter a password, but we strongly advise you against this if\n"
+"only for one reason: do not think that because you booted GNU/Linux that\n"
+"your other operating systems are safe from mistakes. Since \"root\" can\n"
+"overcome all limitations and unintentionally erase all data on partitions\n"
+"by carelessly accessing the partitions themselves, it is important for it\n"
+"to be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
-"characters long. Never write down the \"root\" password it makes it too\n"
+"characters long. Never write down the \"root\" password - it makes it too\n"
"easy to compromise a system.\n"
"\n"
"However, please do not make the password too long or complicated because\n"
@@ -3618,7 +3749,7 @@ msgstr ""
"Heslo se zadv dvakrt pro oven toho, zda nedolo k peklepu pi prvnm\n"
"pokusu. Tak je mon heslo opravit a zadat dvakrt stejn.\n"
"\n"
-"V expertnm reimu budete dotzni na to, zda se m pout autentikan\n"
+"V expertnm reimu budete dotzni na to, zda se m pout autentizan\n"
"server, jako je NIS nebo LDAP.\n"
"\n"
"Pokud se ve va sti pouv protokol LDAP (nebo NIS) pro ovovn\n"
@@ -3626,9 +3757,9 @@ msgstr ""
"zeptejte se administrtora st.\n"
"\n"
"Pokud nen pota pipojen do dn administrovan st, zvolte\n"
-"\"Lokln soubory\" pro autentikaci."
+"\"Lokln soubory\" pro autentizaci."
-#: ../../help.pm_.c:663
+#: ../../help.pm_.c:664
msgid ""
"LILO and grub are GNU/Linux bootloaders. This stage, normally, is totally\n"
"automated. In fact, DrakX analyzes the disk boot sector and acts\n"
@@ -3650,7 +3781,7 @@ msgid ""
" * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
-" * \"LILO with text menu\": if you prefer LILO with its text menu "
+" * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
@@ -3658,7 +3789,7 @@ msgid ""
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": when rebooting the computer,\n"
-"this is the delay granted to the user to choose in the bootloader menu,\n"
+"this is the delay granted to the user to choose - in the bootloader menu,\n"
"another boot entry than the default one.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
@@ -3678,13 +3809,13 @@ msgid ""
"remove it; \"Add\" creates a new entry; and \"Done\" goes on to the next\n"
"installation step."
msgstr ""
-"LILO a grub jsou zavade systmu. Tato st je normln pln automatick.\n"
+"LILO a Grub jsou zavade systmu. Tato st je normln pln automatick.\n"
"DrakX analyzuje boot sektor a zachov se podle toho, co nalezne:\n"
"\n"
-" * pokud nalezne boot sektor Windows, pepe ho sektorem pro LILO/grub aby\n"
+" * pokud nalezne boot sektor Windows, pepe ho sektorem pro LILO/Grub aby\n"
"bylo mon spoutt jak Windows tak i Linux;\n"
"\n"
-" * pokud nalezne boot sektor pro LILO nebo grub, tak jej pepe.\n"
+" * pokud nalezne boot sektor pro LILO nebo Grub, tak jej pepe.\n"
"\n"
"Pokud jsou njak pochybnosti, je zobrazen dialog s vbrem monost.\n"
"\n"
@@ -3723,7 +3854,7 @@ msgstr ""
"i danou nabdku odebrat. K dalmu kroku se dostanete kliknutm na \"Hotovo"
"\"."
-#: ../../help.pm_.c:711
+#: ../../help.pm_.c:713
msgid ""
"LILO (the LInux LOader) and grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3735,7 +3866,7 @@ msgid ""
"anyone. In which case, you can delete the corresponding entries. But then,\n"
"you will need a boot disk in order to boot those other operating systems!"
msgstr ""
-"LILO (the LInux LOader) a grub jsou zavade systmu, kter mohou spustit\n"
+"LILO (the LInux LOader) a Grub jsou zavade systmu, kter mohou spustit\n"
"bu GNU/Linux nebo jin operan systm nainstalovan na potai.\n"
"Ve vtin ppad jsou tyto systmu sprvn detekovny. Pokud se tak\n"
"nestane, mte monost je run pidat v tto obrazovce. Vnujte opatrnost\n"
@@ -3745,7 +3876,7 @@ msgstr ""
"je z nabdky odstranit. Ale v tom ppad muste mt spoutc disketu, ze\n"
"kter je mon tento operan systm spustit!"
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:724
msgid ""
"You must indicate where you wish to place the information required to boot\n"
"to GNU/Linux.\n"
@@ -3759,29 +3890,28 @@ msgstr ""
"\n"
"Pokud pesn nevte co zadat, ponechte \"Prvn sektor na disku (MBR)\"."
-#: ../../help.pm_.c:729
+#: ../../help.pm_.c:731
msgid ""
"Here, we select a printing system for your computer. Other OSs may offer\n"
"you one, but Mandrake Linux offers three.\n"
"\n"
-" * \"pdq\" which means ``print, don't queue'', is the choice if you have a\n"
-"direct connection to your printer and you want to be able to panic out of\n"
+" * \"pdq\" - which means ``print, don't queue'', is the choice if you have\n"
+"a direct connection to your printer and you want to be able to panic out of\n"
"printer jams, and you do not have networked printers. It will handle only\n"
"very simple network cases and is somewhat slow for networks. Pick \"pdq\"\n"
"if this is your maiden voyage to GNU/Linux. You can change your choices\n"
"after installation by running PrinterDrake from the Mandrake Control Center\n"
"and clicking the expert button.\n"
"\n"
-" * \"CUPS\"``Common Unix Printing System'', is excellent at printing to "
-"your\n"
-"local printer and also halfway-around the planet. It is simple and can act\n"
-"as a server or a client for the ancient \"lpd\" printing system. Hence, it\n"
-"is compatible with the systems that went before. It can do many tricks, but\n"
-"the basic setup is almost as easy as \"pdq\". If you need this to emulate\n"
-"an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
+" * \"CUPS\" - ``Common Unix Printing System'', is excellent at printing to\n"
+"your local printer and also halfway-around the planet. It is simple and can\n"
+"act as a server or a client for the ancient \"lpd\" printing system. Hence,\n"
+"it is compatible with the systems that went before. It can do many tricks,\n"
+"but the basic setup is almost as easy as \"pdq\". If you need this to\n"
+"emulate an \"lpd\" server, you must turn on the \"cups-lpd\" daemon. It has\n"
"graphical front-ends for printing or choosing printer options.\n"
"\n"
-" * \"lprNG\"``line printer daemon New Generation''. This system can do\n"
+" * \"lprNG\" - ``line printer daemon New Generation''. This system can do\n"
"approximately the same things the others can do, but it will print to\n"
"printers mounted on a Novell Network, because it supports the IPX protocol,\n"
"and it can print directly to shell commands. If you have need of Novell or\n"
@@ -3805,7 +3935,7 @@ msgstr ""
"\"lpd\"\n"
"systmu, take je s nimi kompatibiln. Je mon nastavit spoustu voleb,\n"
"ale zkladn nastaven je velmi jednoduch. Pokud potebujete emulovat\n"
-"\"lpd\" server, stai spustit dmona \"cups-lpd\". M tak grafick "
+"\"lpd\" server, sta spustit dmona \"cups-lpd\". M tak grafick "
"prosted\n"
"pro tisk a nastaven tiskrny.\n"
"\n"
@@ -3817,7 +3947,7 @@ msgstr ""
"zvltn tiskov fronty, vyberte si lprNG.\n"
"Jinak je preferovn CUPS, protoe je jednodu a lpe pracuje v stch."
-#: ../../help.pm_.c:757
+#: ../../help.pm_.c:759
msgid ""
"DrakX now detects any IDE device present in your computer. It will also\n"
"scan for one or more PCI SCSI card(s) on your system. If a SCSI card is\n"
@@ -3842,7 +3972,7 @@ msgid ""
"``User Guide'' (chapter 3, in the ``Collecting Information on Your\n"
"Hardware'' section) for hints on retrieving the parameters required from\n"
"hardware documentation, from the manufacturer's web site (if you have\n"
-"Internet access) or from MicrosoftWindows (if you used this hardware with\n"
+"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
"DrakX se nejdve pokus najt vechny pevn disky v potai. Tak se "
@@ -3850,7 +3980,7 @@ msgstr ""
"najt PCI SCSI adaptr(y). Pokud njak() najde, automaticky nainstaluje\n"
"sprvn ovlada.\n"
"\n"
-"Pokud dn nanajde, budete dotzni, zda vbec mte njak SCSI adaptr.\n"
+"Pokud dn nenajde, budete dotzni, zda vbec mte njak SCSI adaptr.\n"
"Odpovzte \"Ano\" a vyberte si se seznamu adaptr nebo odpovzte \"Ne\","
"jestlie dn adaptr nemte.\n"
"Pokud pesn nevte jak mte, mete to zjistit kliknutm na tlatko\n"
@@ -3869,7 +3999,7 @@ msgstr ""
"(pokud je mte na potai), z dokumentace k hardware, nebo z internetov\n"
"strnky vrobce (pokud mte pstup k internetu."
-#: ../../help.pm_.c:784
+#: ../../help.pm_.c:786
msgid ""
"You can add additional entries for yaboot, either for other operating\n"
"systems, alternate kernels, or for an emergency boot image.\n"
@@ -3879,9 +4009,8 @@ msgid ""
"\n"
"For Linux, there are a few possible options:\n"
"\n"
-" * Label: this is simply the name you will have to type at the yaboot "
-"prompt\n"
-"to select this boot option;\n"
+" * Label: this is simply the name you will have to type at the yaboot\n"
+"prompt to select this boot option;\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension;\n"
@@ -3893,7 +4022,7 @@ msgid ""
"button emulation for the often lacking 2nd and 3rd mouse buttons on a stock\n"
"Apple mouse. The following are some examples:\n"
"\n"
-" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
@@ -3918,7 +4047,7 @@ msgid ""
"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
"selections."
msgstr ""
-"Pro yaboot, pro dal operan systmy, pro alternativn jdra nebo pro\n"
+"Pro Yaboot, pro dal operan systmy, pro alternativn jdra nebo pro\n"
"zchrann disk lze zde zadat dal parametry.\n"
"\n"
"Pro jin OS je mon zadat pouze nzev a hlavn oddl.\n"
@@ -3926,13 +4055,13 @@ msgstr ""
"Pro Linux je nkolik dalch monost:\n"
"\n"
" * Jmenovka: je to jednoduch jmno, kter mete napsat do pkazovho\n"
-"dku pro yaboot pro zvolen danho systmu.\n"
+"dku pro Yaboot pro zvolen danho systmu.\n"
"\n"
-" * Obraz: je to jmho jdra, ze kterho se spust systm. Typicky je to "
+" * Obraz: je to jmno jdra, ze kterho se spust systm. Typicky je to "
"vmlinux\n"
"i obdoba slova vmlinux s pponami.\n"
"\n"
-" * Root: koenov zezen \"/\" pi instalaci Linuxu.\n"
+" * Root: koenov zazen \"/\" pi instalaci Linuxu.\n"
"\n"
" * Pidat volby: na potach Apple potebuje jdro dal parametry, aby "
"se\n"
@@ -3953,7 +4082,7 @@ msgstr ""
"potebujete\n"
"vt velikost, zadejte sem potebnou hodnotu.\n"
"\n"
-" * Read-write: ben je \"root\" oddl pipojen nejdve v reimu pouze pro\n"
+" * Read-write: bn je \"root\" oddl pipojen nejdve v reimu pouze pro\n"
"ten, aby se provedlo otestovn systmu ped tm, ne se pouije pro bh.\n"
"Zde je mon toto chovn zmnit.\n"
"\n"
@@ -3965,7 +4094,7 @@ msgstr ""
"pouze stisknout ENTER a spust se. Tato poloka je oznaena \"*\" a vechny\n"
"vbry se zobraz po stisknut tlatka [Tab]."
-#: ../../help.pm_.c:830
+#: ../../help.pm_.c:833
msgid ""
"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able to boot\n"
"either GNU/Linux, MacOS or MacOSX if present on your computer. Normally,\n"
@@ -3992,14 +4121,13 @@ msgid ""
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt;\n"
"\n"
-" * Enable OF Boot?: checking this option allows you to choose ``N'' for "
-"Open\n"
-"Firmware at the first boot prompt;\n"
+" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
+"Open Firmware at the first boot prompt;\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
-"Yaboot je zavad pro potae MacIntosh. Umouje spoutt jak GNU/Linux, "
+"Yaboot je zavad pro potae Macintosh. Umouje spoutt jak GNU/Linux, "
"MacOS tak i MacOSX, pokud jsou na potai nainstalovny. Ve vtin\n"
"ppad jsou tyto operan systmy sprvn detekovny. Pokud nejsou, mete\n"
"zde na tto obrazovce pidat zznamy run. Dejte si ale pozor na sprvnou\n"
@@ -4014,7 +4142,7 @@ msgstr ""
"sputn\n"
"GNU/Linuxu. Obyejn je to bootstrap oddl, kter byl vytvoen ji pedtm.\n"
"\n"
-" * Prodleva pro Firmware: narozdl od zavade LILO jsou zde dv prodlevy.\n"
+" * Prodleva pro Firmware: na rozdl od zavade LILO jsou zde dv prodlevy.\n"
"Prvn prodleva v sekundch umouje zvolit mezi sputnm CD, OF boot,\n"
"MacOS nebo Linuxu.\n"
"\n"
@@ -4030,10 +4158,10 @@ msgstr ""
"\n"
" * Vchoz OS: vyberte vchoz OS, kter se spust po uplynut prodlevy."
-#: ../../help.pm_.c:862
+#: ../../help.pm_.c:865
msgid ""
"Here are presented various parameters concerning your machine. Depending on\n"
-"your installed hardware, you may or not, see the following entries:\n"
+"your installed hardware, you may - or not, see the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary;\n"
@@ -4041,12 +4169,11 @@ msgid ""
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary;\n"
"\n"
-" * \"Timezone\": DrakX, by default, guesses your time zone from the "
-"language\n"
-"you have chosen. But here again, as for the choice of a keyboard, you may\n"
-"not be in the country for which the chosen language should correspond.\n"
-"Hence, you may need to click on the \"Timezone\" button in order to\n"
-"configure the clock according to the time zone you are in;\n"
+" * \"Timezone\": DrakX, by default, guesses your time zone from the\n"
+"language you have chosen. But here again, as for the choice of a keyboard,\n"
+"you may not be in the country for which the chosen language should\n"
+"correspond. Hence, you may need to click on the \"Timezone\" button in\n"
+"order to configure the clock according to the time zone you are in;\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard;\n"
@@ -4085,16 +4212,16 @@ msgstr ""
" * \"ISDN karta\": pokud byla detekovna ISDN karta, je zde zobrazena.\n"
"Kliknutm na tlatko mete mnit parametry pro tuto kartu."
-#: ../../help.pm_.c:891
+#: ../../help.pm_.c:894
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
"Vyberte disk, kter chcete smazat pro instalaci Mandrake Linux.\n"
-"Pamatujte na to, e vechna data budou ztracena a nelze jeji obnovit!"
+"Pamatujte na to, e vechna data budou ztracena a nelze je ji obnovit!"
-#: ../../help.pm_.c:896
+#: ../../help.pm_.c:899
msgid ""
"Click on \"OK\" if you want to delete all data and partitions present on\n"
"this hard drive. Be careful, after clicking on \"OK\", you will not be able\n"
@@ -4112,7 +4239,7 @@ msgstr ""
"Kliknutm na \"Zruit\" zrute tuto operaci bez ztrty dat a oddl na "
"disku."
-#: ../../install2.pm_.c:113
+#: ../../install2.pm_.c:114
#, c-format
msgid ""
"Can't access kernel modules corresponding to your kernel (file %s is "
@@ -4124,12 +4251,12 @@ msgstr ""
"%s), co obecn znamen, e spoutc disketa nem jdro stejn jako m "
"instalan mdium (vytvote prosm novou spoutc disketu)"
-#: ../../install2.pm_.c:169
+#: ../../install2.pm_.c:166
#, c-format
msgid "You must also format %s"
msgstr "Muste tak naformtovat %s"
-#: ../../install_any.pm_.c:411
+#: ../../install_any.pm_.c:418
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4154,20 +4281,20 @@ msgstr ""
"\n"
"Chcete opravdu nainstalovat tyto servery?\n"
-#: ../../install_any.pm_.c:447
+#: ../../install_any.pm_.c:454
msgid "Can't use broadcast with no NIS domain"
msgstr "Nelze pout vesmrov vysln bez NIS domny"
-#: ../../install_any.pm_.c:793
+#: ../../install_any.pm_.c:837
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Vlote naformtovanou disketu do %s"
-#: ../../install_any.pm_.c:797
+#: ../../install_any.pm_.c:841
msgid "This floppy is not FAT formatted"
msgstr "Tato disketa nen formtovna"
-#: ../../install_any.pm_.c:809
+#: ../../install_any.pm_.c:853
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4175,7 +4302,7 @@ msgstr ""
"Pokud chcete pout uloen vbr balk, spuste instalaci takto: 'linux "
"defcfg=floppy'"
-#: ../../install_any.pm_.c:831 ../../partition_table.pm_.c:763
+#: ../../install_any.pm_.c:875 ../../partition_table.pm_.c:771
#, c-format
msgid "Error reading file %s"
msgstr "Chyba pi ten souboru %s"
@@ -4207,7 +4334,7 @@ msgstr "Muste mt odkldac oddl"
#: ../../install_interactive.pm_.c:64
msgid ""
-"You don't have a swap partition\n"
+"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
@@ -4215,59 +4342,59 @@ msgstr ""
"\n"
"Chcete pesto pokraovat?"
-#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:163
+#: ../../install_interactive.pm_.c:67 ../../install_steps.pm_.c:164
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Muste mt FAT oddl pipojen na /boot/efi"
-#: ../../install_interactive.pm_.c:90
+#: ../../install_interactive.pm_.c:91
msgid "Use free space"
msgstr "Pout voln msto"
-#: ../../install_interactive.pm_.c:92
+#: ../../install_interactive.pm_.c:93
msgid "Not enough free space to allocate new partitions"
msgstr "Nen dostatek msta pro vytvoen novho diskovho oddlu"
-#: ../../install_interactive.pm_.c:100
-msgid "Use existing partition"
+#: ../../install_interactive.pm_.c:101
+msgid "Use existing partitions"
msgstr "Pout existujc oddl"
-#: ../../install_interactive.pm_.c:102
+#: ../../install_interactive.pm_.c:103
msgid "There is no existing partition to use"
msgstr "Nen zde dn existujc oddl k pouit"
-#: ../../install_interactive.pm_.c:109
+#: ../../install_interactive.pm_.c:110
msgid "Use the Windows partition for loopback"
msgstr "Pout Windows oddl jako loopback"
-#: ../../install_interactive.pm_.c:112
+#: ../../install_interactive.pm_.c:113
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Kter diskov oddl chcete pout pro Linux4Win?"
-#: ../../install_interactive.pm_.c:114
+#: ../../install_interactive.pm_.c:115
msgid "Choose the sizes"
msgstr "Zvolte velikosti"
-#: ../../install_interactive.pm_.c:115
+#: ../../install_interactive.pm_.c:116
msgid "Root partition size in MB: "
msgstr "Velikost koenovho oddlu v MB:"
-#: ../../install_interactive.pm_.c:116
+#: ../../install_interactive.pm_.c:117
msgid "Swap partition size in MB: "
msgstr "Velikost odkldacho oddlu v MB: "
-#: ../../install_interactive.pm_.c:125
+#: ../../install_interactive.pm_.c:126
msgid "Use the free space on the Windows partition"
msgstr "Pout voln msto na Windows oddlu"
-#: ../../install_interactive.pm_.c:128
+#: ../../install_interactive.pm_.c:129
msgid "Which partition do you want to resize?"
msgstr "Na kterm oddlu chcete mnit velikost?"
-#: ../../install_interactive.pm_.c:130
-msgid "Computing Windows filesystem bounds"
+#: ../../install_interactive.pm_.c:131
+msgid "Resizing Windows partition"
msgstr "Potm hranice souborovho systmu s Windows"
-#: ../../install_interactive.pm_.c:133
+#: ../../install_interactive.pm_.c:134
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
@@ -4276,13 +4403,16 @@ msgstr ""
"Zmnu velikost FAT nen mon provst, \n"
"vyskytla se nsledujc chyba: %s"
-#: ../../install_interactive.pm_.c:136
-msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
+#: ../../install_interactive.pm_.c:137
+msgid ""
+"Your Windows partition is too fragmented. Please reboot your computer under "
+"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
+"installation."
msgstr ""
"V diskov oddl s Windows je pli fragmentovn, pouijte nejdve\n"
"program 'defrag'"
-#: ../../install_interactive.pm_.c:137
+#: ../../install_interactive.pm_.c:138
msgid ""
"WARNING!\n"
"\n"
@@ -4303,67 +4433,67 @@ msgstr ""
"Tak byste si mli data zlohovat. A si budete jist, e chcete pokraovat\n"
"stisknte Ok."
-#: ../../install_interactive.pm_.c:147
-msgid "Which size do you want to keep for windows on"
+#: ../../install_interactive.pm_.c:148
+msgid "Which size do you want to keep for Windows on"
msgstr "Jakou velikost oddlu chcete nechat pro Windows na"
-#: ../../install_interactive.pm_.c:148
+#: ../../install_interactive.pm_.c:149
#, c-format
msgid "partition %s"
msgstr "diskovm oddlu %s"
-#: ../../install_interactive.pm_.c:155
+#: ../../install_interactive.pm_.c:156
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Zmna FAT oddlu neuspla: %s"
-#: ../../install_interactive.pm_.c:170
+#: ../../install_interactive.pm_.c:171
msgid ""
-"There is no FAT partitions to resize or to use as loopback (or not enough "
+"There is no FAT partition to resize or to use as loopback (or not enough "
"space left)"
msgstr ""
"Nejsou zde dn FAT oddly, kter by bylo mon zmnit (nebo nen dostatek "
"msta)"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Erase entire disk"
msgstr "Smazat cel disk"
-#: ../../install_interactive.pm_.c:176
+#: ../../install_interactive.pm_.c:177
msgid "Remove Windows(TM)"
msgstr "Odstranit Windows(TM)"
-#: ../../install_interactive.pm_.c:179
+#: ../../install_interactive.pm_.c:180
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr "Mte vce ne jeden pevn disk, na kter chcete instalovat Linux?"
-#: ../../install_interactive.pm_.c:182
+#: ../../install_interactive.pm_.c:183
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "VECHNY diskov oddly a data na disku %s budou zruena"
-#: ../../install_interactive.pm_.c:190
+#: ../../install_interactive.pm_.c:191
msgid "Custom disk partitioning"
msgstr "Vlastn rozdlen disku"
-#: ../../install_interactive.pm_.c:194
+#: ../../install_interactive.pm_.c:195
msgid "Use fdisk"
msgstr "Pout fdisk"
-#: ../../install_interactive.pm_.c:197
+#: ../../install_interactive.pm_.c:198
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-"Nyn mete rozdlit v hardisk %s.\n"
+"Nyn mete rozdlit v pevn disk %s.\n"
"A skonte, nezapomete uloit zmny pomoc 'w'"
-#: ../../install_interactive.pm_.c:226
+#: ../../install_interactive.pm_.c:227
msgid "You don't have enough free space on your Windows partition"
msgstr "Nemte dostatek volnho msta na oddlu s Windows"
-#: ../../install_interactive.pm_.c:242
+#: ../../install_interactive.pm_.c:243
msgid "I can't find any room for installing"
msgstr "Nemu najt dn voln msto pro instalaci"
@@ -4371,16 +4501,16 @@ msgstr "Nemu najt dn voln msto pro instalaci"
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Prvodce DrakX nael nsledujc een:"
-#: ../../install_interactive.pm_.c:251
+#: ../../install_interactive.pm_.c:250
#, c-format
msgid "Partitioning failed: %s"
msgstr "Vytven diskovch oddl selhalo: %s"
-#: ../../install_interactive.pm_.c:261
+#: ../../install_interactive.pm_.c:260
msgid "Bringing up the network"
msgstr "Startuji s"
-#: ../../install_interactive.pm_.c:266
+#: ../../install_interactive.pm_.c:265
msgid "Bringing down the network"
msgstr "Zastavuji s"
@@ -4392,12 +4522,12 @@ msgstr ""
"Stala se chyba, ale nevm, jak j sprvn interpretovat.\n"
"Pokraujte na vlastn riziko."
-#: ../../install_steps.pm_.c:205
+#: ../../install_steps.pm_.c:206
#, c-format
msgid "Duplicate mount point %s"
msgstr "Zdvojen ppojn bod %s"
-#: ../../install_steps.pm_.c:388
+#: ../../install_steps.pm_.c:392
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
@@ -4408,12 +4538,12 @@ msgstr ""
"Je mon, e je pokozen CD disk nebo CD-ROM mechanika.\n"
"Zkontrolujete to pouitm pkazu \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:464
#, c-format
msgid "Welcome to %s"
msgstr "Vt vs %s"
-#: ../../install_steps.pm_.c:513 ../../install_steps.pm_.c:755
+#: ../../install_steps.pm_.c:518 ../../install_steps.pm_.c:760
msgid "No floppy drive available"
msgstr "Nen dostupn dn disketov mechanika"
@@ -4423,9 +4553,9 @@ msgstr "Nen dostupn dn disketov mechanika"
msgid "Entering step `%s'\n"
msgstr "Zanm '%s'\n"
-#: ../../install_steps_gtk.pm_.c:148
+#: ../../install_steps_gtk.pm_.c:149
msgid ""
-"Your system is low on resource. You may have some problem installing\n"
+"Your system is low on resources. You may have some problem installing\n"
"Mandrake Linux. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
@@ -4435,197 +4565,153 @@ msgstr ""
"verzi instalanho programu. Ta se spout tak, e pi startu\n"
"z CD mechaniky stisknete 'F1' a pot napete 'text'."
-#: ../../install_steps_gtk.pm_.c:159 ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_gtk.pm_.c:160 ../../install_steps_interactive.pm_.c:232
msgid "Install Class"
msgstr "Typ instalace"
-#: ../../install_steps_gtk.pm_.c:162
+#: ../../install_steps_gtk.pm_.c:163
msgid "Please choose one of the following classes of installation:"
msgstr "Prosm zvolte jednu z nsledujcch instalanch td:"
-#: ../../install_steps_gtk.pm_.c:228
-#, c-format
-msgid ""
-"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Celkov velikost zvolench balk je piblin %d MB.\n"
-
-#: ../../install_steps_gtk.pm_.c:230
-#, c-format
-msgid ""
-"If you wish to install less than this size,\n"
-"select the percentage of packages that you want to install.\n"
-"\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of 100%% will install all selected packages."
-msgstr ""
-"Pokud si pejete instalaci na men prostor ne je tento,\n"
-"zvolte si kolik procent balk se m nainstalovat.\n"
-"\n"
-"Mal poet procent nainstaluje pouze ty nejdleitj balky, 100%%\n"
-"nainstaluje vechny zvolen."
-
-#: ../../install_steps_gtk.pm_.c:235
-#, c-format
-msgid ""
-"You have space on your disk for only %d%% of these packages.\n"
-"\n"
-"If you wish to install less than this,\n"
-"select the percentage of packages that you want to install.\n"
-"A low percentage will install only the most important packages;\n"
-"a percentage of %d%% will install as many packages as possible."
-msgstr ""
-"Na vaem hardisku je msto pouze pro %d%% tchto balk.\n"
-"\n"
-"Pokud jich chcete nainstalovat jet mn, zvolte jin poet\n"
-"procent. Mal poet procent nainstaluje pouze ty nejdleitj\n"
-"balky, %d%% nainstaluje maximln mon mnostv balk."
-
-#: ../../install_steps_gtk.pm_.c:241
-msgid "You will be able to choose them more specifically in the next step."
-msgstr "Pesnji si budete moci vybrat v ptm kroku"
-
-#: ../../install_steps_gtk.pm_.c:243
-msgid "Percentage of packages to install"
-msgstr "Procent balk k instalaci"
-
-#: ../../install_steps_gtk.pm_.c:291 ../../install_steps_interactive.pm_.c:705
+#: ../../install_steps_gtk.pm_.c:242 ../../install_steps_interactive.pm_.c:695
msgid "Package Group Selection"
msgstr "Vbr skupiny balk"
-#: ../../install_steps_gtk.pm_.c:323 ../../install_steps_interactive.pm_.c:720
+#: ../../install_steps_gtk.pm_.c:274 ../../install_steps_interactive.pm_.c:710
msgid "Individual package selection"
msgstr "Vbr jednotlivch balk"
-#: ../../install_steps_gtk.pm_.c:346 ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_gtk.pm_.c:297 ../../install_steps_interactive.pm_.c:634
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Celkov velikost: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:391
+#: ../../install_steps_gtk.pm_.c:339
msgid "Bad package"
msgstr "patn balek"
-#: ../../install_steps_gtk.pm_.c:392
+#: ../../install_steps_gtk.pm_.c:340
#, c-format
msgid "Name: %s\n"
msgstr "Jmno: %s\n"
-#: ../../install_steps_gtk.pm_.c:393
+#: ../../install_steps_gtk.pm_.c:341
#, c-format
msgid "Version: %s\n"
msgstr "Verze: %s\n"
-#: ../../install_steps_gtk.pm_.c:394
+#: ../../install_steps_gtk.pm_.c:342
#, c-format
msgid "Size: %d KB\n"
msgstr "Velikost: %d kB\n"
-#: ../../install_steps_gtk.pm_.c:395
+#: ../../install_steps_gtk.pm_.c:343
#, c-format
msgid "Importance: %s\n"
msgstr "Dleitost: %s\n"
-#: ../../install_steps_gtk.pm_.c:417
+#: ../../install_steps_gtk.pm_.c:365
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Nemete oznait tento balek, protoe pro jeho instalaci nen dost msta"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:370
msgid "The following packages are going to be installed"
msgstr "Tyto balky budou instalovny"
-#: ../../install_steps_gtk.pm_.c:423
+#: ../../install_steps_gtk.pm_.c:371
msgid "The following packages are going to be removed"
msgstr "Tyto balky budou odebrny"
-#: ../../install_steps_gtk.pm_.c:435
+#: ../../install_steps_gtk.pm_.c:383
msgid "You can't select/unselect this package"
msgstr "Nemete vybrat/nevybrat tento balek"
-#: ../../install_steps_gtk.pm_.c:447
+#: ../../install_steps_gtk.pm_.c:395
msgid "This is a mandatory package, it can't be unselected"
msgstr "Toto je nepostradateln balek, neme bt odstrann"
-#: ../../install_steps_gtk.pm_.c:449
+#: ../../install_steps_gtk.pm_.c:397
msgid "You can't unselect this package. It is already installed"
msgstr "Nemete od-oznait tento balek, protoe je u nainstalovan"
-#: ../../install_steps_gtk.pm_.c:453
+#: ../../install_steps_gtk.pm_.c:400
msgid ""
-"This package must be upgraded\n"
+"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Tento balek mus bt obnoven\n"
"Jste si jisti, e ho nechcete zvolit?"
-#: ../../install_steps_gtk.pm_.c:457
+#: ../../install_steps_gtk.pm_.c:403
msgid "You can't unselect this package. It must be upgraded"
msgstr "Tento balek mus bt obnoven, nemete ho nezvolit"
-#: ../../install_steps_gtk.pm_.c:462
+#: ../../install_steps_gtk.pm_.c:408
msgid "Show automatically selected packages"
msgstr "Ukzat automaticky vybran balky"
-#: ../../install_steps_gtk.pm_.c:463 ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_gtk.pm_.c:409 ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
+#: ../../standalone/drakbackup_.c:2935
msgid "Install"
msgstr "Instalovat"
-#: ../../install_steps_gtk.pm_.c:466
+#: ../../install_steps_gtk.pm_.c:412
msgid "Load/Save on floppy"
msgstr "Uloit/Nahrt na/z disketu/y"
-#: ../../install_steps_gtk.pm_.c:467
+#: ../../install_steps_gtk.pm_.c:413
msgid "Updating package selection"
msgstr "Aktualizuji vbr balk"
-#: ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_gtk.pm_.c:418
msgid "Minimal install"
msgstr "Minimln instalace"
-#: ../../install_steps_gtk.pm_.c:487 ../../install_steps_interactive.pm_.c:555
+#: ../../install_steps_gtk.pm_.c:433 ../../install_steps_interactive.pm_.c:539
msgid "Choose the packages you want to install"
msgstr "Vyberte si balky, kter chcete nainstalovat"
-#: ../../install_steps_gtk.pm_.c:503 ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_gtk.pm_.c:449 ../../install_steps_interactive.pm_.c:777
msgid "Installing"
msgstr "Instaluji"
-#: ../../install_steps_gtk.pm_.c:509
+#: ../../install_steps_gtk.pm_.c:455
msgid "Estimating"
msgstr "Odhaduji"
-#: ../../install_steps_gtk.pm_.c:516
+#: ../../install_steps_gtk.pm_.c:462
msgid "Time remaining "
msgstr "Zbvajc as "
-#: ../../install_steps_gtk.pm_.c:528
-msgid "Please wait, preparing installation"
+#: ../../install_steps_gtk.pm_.c:474
+msgid "Please wait, preparing installation..."
msgstr "ekejte prosm, pipravuji instalaci"
-#: ../../install_steps_gtk.pm_.c:611
+#: ../../install_steps_gtk.pm_.c:558
#, c-format
msgid "%d packages"
msgstr "%d balk(y)"
-#: ../../install_steps_gtk.pm_.c:616
+#: ../../install_steps_gtk.pm_.c:563
#, c-format
msgid "Installing package %s"
msgstr "Instaluji balek %s"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
#: ../../standalone/drakautoinst_.c:203
msgid "Accept"
msgstr "Potvrdit"
-#: ../../install_steps_gtk.pm_.c:657 ../../install_steps_interactive.pm_.c:185
-#: ../../install_steps_interactive.pm_.c:811
+#: ../../install_steps_gtk.pm_.c:600 ../../install_steps_interactive.pm_.c:189
+#: ../../install_steps_interactive.pm_.c:801
msgid "Refuse"
msgstr "Odmtnout"
-#: ../../install_steps_gtk.pm_.c:658 ../../install_steps_interactive.pm_.c:812
+#: ../../install_steps_gtk.pm_.c:601 ../../install_steps_interactive.pm_.c:802
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4640,17 +4726,17 @@ msgstr ""
"\n"
"Pokud toto CD nemte, stisknte Zruit a toto CD nebude nainstalovno."
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_gtk.pm_.c:676
-#: ../../install_steps_interactive.pm_.c:824
-#: ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_gtk.pm_.c:619
+#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:818
msgid "Go on anyway?"
msgstr "Pesto pokraovat?"
-#: ../../install_steps_gtk.pm_.c:672 ../../install_steps_interactive.pm_.c:824
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:814
msgid "There was an error ordering packages:"
msgstr "Stala se chyba pi azen balk:"
-#: ../../install_steps_gtk.pm_.c:676 ../../install_steps_interactive.pm_.c:828
+#: ../../install_steps_gtk.pm_.c:619 ../../install_steps_interactive.pm_.c:818
msgid "There was an error installing packages:"
msgstr "Stala se chyba pi instalaci balk:"
@@ -4719,11 +4805,11 @@ msgstr "Stala se chyba"
msgid "Do you really want to leave the installation?"
msgstr "Chcete opravdu ukonit instalaci?"
-#: ../../install_steps_interactive.pm_.c:108
+#: ../../install_steps_interactive.pm_.c:112
msgid "License agreement"
msgstr "Souhlas s licenc"
-#: ../../install_steps_interactive.pm_.c:109
+#: ../../install_steps_interactive.pm_.c:113
msgid ""
"Introduction\n"
"\n"
@@ -4738,7 +4824,7 @@ msgid ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4854,7 +4940,7 @@ msgstr ""
"\n"
"1. License Agreement\n"
"\n"
-"Please read carefully this document. This document is a license agreement "
+"Please read this document carefully. This document is a license agreement "
"between you and \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
@@ -4959,109 +5045,113 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:205
-#: ../../install_steps_interactive.pm_.c:1045
+#: ../../install_steps_interactive.pm_.c:191
+msgid "Are you sure you refuse the licence?"
+msgstr "Jste si jist, e odmtte licenn ujednn?"
+
+#: ../../install_steps_interactive.pm_.c:213
+#: ../../install_steps_interactive.pm_.c:1037
#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klvesnice"
-#: ../../install_steps_interactive.pm_.c:206
+#: ../../install_steps_interactive.pm_.c:214
msgid "Please choose your keyboard layout."
msgstr "Vyberte si rozloen va klvesnice."
-#: ../../install_steps_interactive.pm_.c:207
+#: ../../install_steps_interactive.pm_.c:215
msgid "Here is the full list of keyboards available"
msgstr "Zde je kompletn seznam dostupnch klvesnic"
-#: ../../install_steps_interactive.pm_.c:224
+#: ../../install_steps_interactive.pm_.c:232
msgid "Which installation class do you want?"
msgstr "Kter typ instalace chcete?"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Install/Update"
msgstr "Instalace/Aktualizace"
-#: ../../install_steps_interactive.pm_.c:226
+#: ../../install_steps_interactive.pm_.c:236
msgid "Is this an install or an update?"
msgstr "Je to instalace nebo aktualizace?"
-#: ../../install_steps_interactive.pm_.c:235
+#: ../../install_steps_interactive.pm_.c:245
msgid "Recommended"
msgstr "Doporuen"
-#: ../../install_steps_interactive.pm_.c:238
-#: ../../install_steps_interactive.pm_.c:241
+#: ../../install_steps_interactive.pm_.c:248
+#: ../../install_steps_interactive.pm_.c:251
msgid "Expert"
msgstr "Expertn"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade"
msgstr "Aktualizovat"
-#: ../../install_steps_interactive.pm_.c:246
-#: ../../install_steps_interactive.pm_.c:250
+#: ../../install_steps_interactive.pm_.c:256
+#: ../../install_steps_interactive.pm_.c:260
msgid "Upgrade packages only"
msgstr "Aktualizovat pouze balky"
-#: ../../install_steps_interactive.pm_.c:266
+#: ../../install_steps_interactive.pm_.c:276
msgid "Please choose the type of your mouse."
msgstr "Vyberte si typ va myi."
-#: ../../install_steps_interactive.pm_.c:272 ../../standalone/mousedrake_.c:65
+#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
msgstr "Pipojen myi"
-#: ../../install_steps_interactive.pm_.c:273 ../../standalone/mousedrake_.c:66
+#: ../../install_steps_interactive.pm_.c:283 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Ke ktermu sriovmu portu je pipojena vae my?"
-#: ../../install_steps_interactive.pm_.c:281
+#: ../../install_steps_interactive.pm_.c:291
msgid "Buttons emulation"
msgstr "Emulace tlatek"
-#: ../../install_steps_interactive.pm_.c:283
+#: ../../install_steps_interactive.pm_.c:293
msgid "Button 2 Emulation"
msgstr "Emulace 2 tlatka"
-#: ../../install_steps_interactive.pm_.c:284
+#: ../../install_steps_interactive.pm_.c:294
msgid "Button 3 Emulation"
msgstr "Emulace 3 tlatka"
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "Configuring PCMCIA cards..."
msgstr "Nastavuji PCMCIA karty..."
-#: ../../install_steps_interactive.pm_.c:305
+#: ../../install_steps_interactive.pm_.c:315
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "Configuring IDE"
msgstr "Nastavuji IDE"
-#: ../../install_steps_interactive.pm_.c:312
+#: ../../install_steps_interactive.pm_.c:322
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:327
-msgid "no available partitions"
+#: ../../install_steps_interactive.pm_.c:337
+msgid "No partition available"
msgstr "nejsou dostupn dn diskov oddly"
-#: ../../install_steps_interactive.pm_.c:330
+#: ../../install_steps_interactive.pm_.c:340
msgid "Scanning partitions to find mount points"
msgstr "Hledm oddly, kter lze pipojit"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:348
msgid "Choose the mount points"
msgstr "Zvolte si ppojn(mount) body"
-#: ../../install_steps_interactive.pm_.c:357
+#: ../../install_steps_interactive.pm_.c:367
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
-"I can try to go on blanking bad partitions (ALL DATA will be lost!).\n"
-"The other solution is to disallow DrakX to modify the partition table.\n"
+"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 loose all the partitions?\n"
@@ -5073,7 +5163,7 @@ msgstr ""
"\n"
"Souhlaste s tm, e pjdete o vechny oddly?\n"
-#: ../../install_steps_interactive.pm_.c:370
+#: ../../install_steps_interactive.pm_.c:380
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -5081,7 +5171,7 @@ msgstr ""
"DiskDrake neuspl pi ten tabulky oddl.\n"
"Pokraujte pouze na vlastn riziko!"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:397
msgid ""
"No free space for 1MB bootstrap! Install will continue, but to boot your "
"system, you'll need to create the bootstrap partition in DiskDrake"
@@ -5089,74 +5179,75 @@ msgstr ""
"Pro bootstrap nen potebn msto o velikosti 1MB! Instalace me pokraovat "
"ale pro sputn systmu muste vytvoit bootstrap oddl pomoc DiskDrake"
-#: ../../install_steps_interactive.pm_.c:395
+#: ../../install_steps_interactive.pm_.c:406
msgid "No root partition found to perform an upgrade"
msgstr "Nebyl nalezen koenov oddl pro proveden aktualizace"
-#: ../../install_steps_interactive.pm_.c:396
+#: ../../install_steps_interactive.pm_.c:407
msgid "Root Partition"
msgstr "Koenov oddl"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:408
msgid "What is the root partition (/) of your system?"
msgstr "Kter diskov oddl je koenov (/) ?"
-#: ../../install_steps_interactive.pm_.c:411
+#: ../../install_steps_interactive.pm_.c:422
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Muste restartovat pota aby se projevily zmny v tabulce oddl"
-#: ../../install_steps_interactive.pm_.c:435
+#: ../../install_steps_interactive.pm_.c:446
msgid "Choose the partitions you want to format"
msgstr "Zvolte diskov oddly kter chcete naformtovat"
-#: ../../install_steps_interactive.pm_.c:436
+#: ../../install_steps_interactive.pm_.c:447
msgid "Check bad blocks?"
msgstr "Otestovat na vadn stopy?"
-#: ../../install_steps_interactive.pm_.c:462
+#: ../../install_steps_interactive.pm_.c:474
msgid "Formatting partitions"
msgstr "Formtuji oddly"
-#: ../../install_steps_interactive.pm_.c:464
+#: ../../install_steps_interactive.pm_.c:476
#, c-format
msgid "Creating and formatting file %s"
msgstr "Vytvm a formtuji soubor %s"
-#: ../../install_steps_interactive.pm_.c:467
-msgid "Not enough swap to fulfill installation, please add some"
+#: ../../install_steps_interactive.pm_.c:481
+#, c-format
+msgid ""
+"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
+"you can loose data)"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:483
+msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Nen dostatek odkldacho prostoru k instalaci, prosm pidejte njak"
-#: ../../install_steps_interactive.pm_.c:473
-msgid "Looking for available packages"
+#: ../../install_steps_interactive.pm_.c:490
+msgid "Looking for available packages and rebuilding rpm database..."
+msgstr "Hledm dostupn balky a znovu sestavuji databzi balk..."
+
+#: ../../install_steps_interactive.pm_.c:491
+msgid "Looking for available packages..."
msgstr "Hledm dostupn balky"
-#: ../../install_steps_interactive.pm_.c:479
-msgid "Finding packages to upgrade"
+#: ../../install_steps_interactive.pm_.c:495
+msgid "Finding packages to upgrade..."
msgstr "Vyhledvm balky pro aktualizaci"
-#: ../../install_steps_interactive.pm_.c:496
+#: ../../install_steps_interactive.pm_.c:498
+msgid "Looking at packages already installed..."
+msgstr "Prohledvm ji instalovan balky..."
+
+#: ../../install_steps_interactive.pm_.c:516
#, c-format
msgid ""
-"Your system has not enough space left for installation or upgrade (%d > %d)"
+"Your system does not have enough space left for installation or upgrade (%d "
+"> %d)"
msgstr ""
"Na vaem systmu nen dostatek msta pro instalaci nebo aktualizaci (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Complete (%dMB)"
-msgstr "Kompletn (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Minimum (%dMB)"
-msgstr "Minimln (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:515
-#, c-format
-msgid "Recommended (%dMB)"
-msgstr "Doporuen (%dMB)"
-
-#: ../../install_steps_interactive.pm_.c:568
+#: ../../install_steps_interactive.pm_.c:551
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
@@ -5164,35 +5255,35 @@ msgstr ""
"Vyberte si, zda chcete uloit nebo nahrt vbr balk na disketu.\n"
"Formt vbru je stejn jako formt automaticky generovan diskety."
-#: ../../install_steps_interactive.pm_.c:571
+#: ../../install_steps_interactive.pm_.c:554
msgid "Load from floppy"
msgstr "Nahrt z diskety"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Loading from floppy"
msgstr "Nahrvm z diskety"
-#: ../../install_steps_interactive.pm_.c:573
+#: ../../install_steps_interactive.pm_.c:556
msgid "Package selection"
msgstr "Vbr balk"
-#: ../../install_steps_interactive.pm_.c:578
+#: ../../install_steps_interactive.pm_.c:561
msgid "Insert a floppy containing package selection"
msgstr "Vlote disketu obsahujc vbr balk"
-#: ../../install_steps_interactive.pm_.c:590
+#: ../../install_steps_interactive.pm_.c:573
msgid "Save on floppy"
msgstr "Uloit na disketu"
-#: ../../install_steps_interactive.pm_.c:658
+#: ../../install_steps_interactive.pm_.c:647
msgid "Selected size is larger than available space"
msgstr "Velikost vybranch balk je vt ne msto na disku"
-#: ../../install_steps_interactive.pm_.c:671
+#: ../../install_steps_interactive.pm_.c:661
msgid "Type of install"
msgstr "Typ instalace"
-#: ../../install_steps_interactive.pm_.c:672
+#: ../../install_steps_interactive.pm_.c:662
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5200,19 +5291,19 @@ msgstr ""
"Nevybrali jste dnou skupinu balk\n"
"Vyberte si prosm alespo minimln instalaci"
-#: ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_interactive.pm_.c:665
msgid "With X"
msgstr "X prosted"
-#: ../../install_steps_interactive.pm_.c:677
+#: ../../install_steps_interactive.pm_.c:667
msgid "With basic documentation (recommended!)"
msgstr "Zkladn dokumentace (doporueno!)"
-#: ../../install_steps_interactive.pm_.c:678
+#: ../../install_steps_interactive.pm_.c:668
msgid "Truly minimal install (especially no urpmi)"
msgstr "Opravdu minimln instalace (speciln bez urpmi)"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:752
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5222,16 +5313,16 @@ msgstr ""
"Pokud nemte dn z nich, klepnte na Zruit.\n"
"Pokud Vm chyb pouze nkter z nich, odznate je, a zvolte Ok."
-#: ../../install_steps_interactive.pm_.c:767
+#: ../../install_steps_interactive.pm_.c:757
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM oznaen \"%s\""
-#: ../../install_steps_interactive.pm_.c:787
+#: ../../install_steps_interactive.pm_.c:777
msgid "Preparing installation"
msgstr "Pipravuji instalaci"
-#: ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_interactive.pm_.c:786
#, c-format
msgid ""
"Installing package %s\n"
@@ -5240,23 +5331,23 @@ msgstr ""
"Instaluji balek %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:842
+#: ../../install_steps_interactive.pm_.c:832
msgid "Post-install configuration"
msgstr "Nastaven po instalaci"
-#: ../../install_steps_interactive.pm_.c:848
+#: ../../install_steps_interactive.pm_.c:838
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Vlote prosm spoutc disketu do %s"
-#: ../../install_steps_interactive.pm_.c:854
+#: ../../install_steps_interactive.pm_.c:844
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Vlote prosm disketu s moduly do %s"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:864
msgid ""
-"You have now the possibility to download software aimed for encryption.\n"
+"You now have the opportunity to download encryption software.\n"
"\n"
"WARNING:\n"
"\n"
@@ -5306,7 +5397,7 @@ msgstr ""
"nebude respektovat ustanoven vztahujcch se zkon, me se vystavit\n"
"postihu.\n"
"\n"
-"V kadm ppad se Mandrakesoft i jeho vrobny a dodavatel vzdvaj\n"
+"V kadm ppad se MandrakeSoft i jeho vrobny a dodavatel vzdvaj\n"
"jakkoliv zodpovdnosti za pm i nepm kody (vetn ztrty zisk,\n"
"peruen podnikn, ztrty obchodnch informac, jakoto i jinch "
"pennch\n"
@@ -5317,170 +5408,201 @@ msgstr ""
"\n"
"\n"
"Pokud mje jakkoliv dotazy vztahujc se k tto dohod, kontaktujte prosm\n"
-"Mandrakesoft, Inc.\n"
+"MandrakeSoft, Inc.\n"
"2400 N. Lincoln Avenue Suite 243\n"
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:912
+#: ../../install_steps_interactive.pm_.c:903
msgid ""
-"You have now the possibility to download updated packages that have\n"
-"been released after the distribution has been made available.\n"
+"You now have the opportunity to download updated packages. These packages\n"
+"have been released after the distribution was released. They may\n"
+"contain security or bug fixes.\n"
"\n"
-"You will get security fixes or bug fixes, but you need to have an\n"
-"Internet connection configured to proceed.\n"
+"To download these packages, you will need to have a working Internet \n"
+"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
-"Nyn mte monost sthnout aktualizovan balky, kter byly\n"
-"uvolnny po vydn distribuce.\n"
+"Nyn mte monost sthnout aktualizovan balky. Tyto balky byly\n"
+"uvolnny a po vydn distribuce. Mohou obsahovat\n"
+"bezpenostn aktualizace nebo opravy chyb.\n"
"\n"
-"Mete tak zskat bezpenostn opravy i opravy chyb, ale\n"
-"potebujete pipojen k Internetu.\n"
+"Chcete-li zskat tyto balky, muste mt k dispozici\n"
+"funkn pipojen k Internetu.\n"
"\n"
"Chcete nainstalovat aktualizace?"
-#: ../../install_steps_interactive.pm_.c:926
-msgid "Contacting Mandrake Linux web site to get the list of available mirrors"
+#: ../../install_steps_interactive.pm_.c:918
+msgid ""
+"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Kontaktuji web Mandrake Linux pro zskn seznamu dostupnch zrcadel"
-#: ../../install_steps_interactive.pm_.c:931
+#: ../../install_steps_interactive.pm_.c:923
msgid "Choose a mirror from which to get the packages"
-msgstr "Zvolte si zrcadlo(mirror) pro stahovn balk"
+msgstr "Zvolte si zrcadlo (mirror) pro stahovn balk"
-#: ../../install_steps_interactive.pm_.c:940
-msgid "Contacting the mirror to get the list of available packages"
+#: ../../install_steps_interactive.pm_.c:932
+msgid "Contacting the mirror to get the list of available packages..."
msgstr "Stahuji ze zrcadla(mirror) seznam dostupnch balk"
-#: ../../install_steps_interactive.pm_.c:967
+#: ../../install_steps_interactive.pm_.c:959
msgid "Which is your timezone?"
msgstr "Jak je vae asov psmo?"
-#: ../../install_steps_interactive.pm_.c:972
+#: ../../install_steps_interactive.pm_.c:964
msgid "Hardware clock set to GMT"
msgstr "Hardwarov hodiny nastaveny na GMT"
-#: ../../install_steps_interactive.pm_.c:973
+#: ../../install_steps_interactive.pm_.c:965
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatick synchronizace asu (pomoc NTP)"
-#: ../../install_steps_interactive.pm_.c:980
+#: ../../install_steps_interactive.pm_.c:972
msgid "NTP Server"
msgstr "NTP Server"
+#: ../../install_steps_interactive.pm_.c:1006
#: ../../install_steps_interactive.pm_.c:1014
-#: ../../install_steps_interactive.pm_.c:1022
msgid "Remote CUPS server"
msgstr "Vzdlen CUPS server"
-#: ../../install_steps_interactive.pm_.c:1015
+#: ../../install_steps_interactive.pm_.c:1007
msgid "No printer"
msgstr "Bez tiskrny"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1024
msgid "Do you have an ISA sound card?"
msgstr "Mte njakou zvukovou kartu na ISA sbrnici?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1026
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Pro nastaven zvukov karty spuste po instalaci \"sndconfig\"."
-#: ../../install_steps_interactive.pm_.c:1036
+#: ../../install_steps_interactive.pm_.c:1028
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nebyla nalezena zvukov karta. Zkuste spustit po instalaci \"harddrake\"."
-#: ../../install_steps_interactive.pm_.c:1041 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1033 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Souhrn"
-#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1036
msgid "Mouse"
msgstr "My"
-#: ../../install_steps_interactive.pm_.c:1046
+#: ../../install_steps_interactive.pm_.c:1038
msgid "Timezone"
msgstr "asov zna"
-#: ../../install_steps_interactive.pm_.c:1047 ../../printerdrake.pm_.c:2276
-#: ../../printerdrake.pm_.c:2354
+#: ../../install_steps_interactive.pm_.c:1039 ../../printerdrake.pm_.c:2347
+#: ../../printerdrake.pm_.c:2425
msgid "Printer"
msgstr "Tiskrna"
-#: ../../install_steps_interactive.pm_.c:1049
+#: ../../install_steps_interactive.pm_.c:1041
msgid "ISDN card"
msgstr "ISDN karta"
-#: ../../install_steps_interactive.pm_.c:1052
-#: ../../install_steps_interactive.pm_.c:1054
+#: ../../install_steps_interactive.pm_.c:1044
+#: ../../install_steps_interactive.pm_.c:1046
msgid "Sound card"
msgstr "Zvukov karta"
-#: ../../install_steps_interactive.pm_.c:1056
+#: ../../install_steps_interactive.pm_.c:1048
msgid "TV card"
msgstr "TV karta"
-#: ../../install_steps_interactive.pm_.c:1094
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1117
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1095
-#: ../../install_steps_interactive.pm_.c:1118
-#: ../../install_steps_interactive.pm_.c:1131
+#: ../../install_steps_interactive.pm_.c:1089
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1126
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1134
+msgid "Windows PDC"
+msgstr "Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1091
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Local files"
msgstr "Lokln soubory"
-#: ../../install_steps_interactive.pm_.c:1105
-#: ../../install_steps_interactive.pm_.c:1106 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1101 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Hlavn(root) heslo"
-#: ../../install_steps_interactive.pm_.c:1107
+#: ../../install_steps_interactive.pm_.c:1102
msgid "No password"
msgstr "Bez hesla"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1107
#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
+msgid "This password is too short (it must be at least %d characters long)"
msgstr "Toto heslo je pli jednoduch (mus bt alespo %d znak dlouh)"
-#: ../../install_steps_interactive.pm_.c:1118 ../../network/modem.pm_.c:49
-#: ../../standalone/draknet_.c:626 ../../standalone/logdrake_.c:172
+#: ../../install_steps_interactive.pm_.c:1113 ../../network/modem.pm_.c:49
+#: ../../standalone/drakconnect_.c:626 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Oven"
-#: ../../install_steps_interactive.pm_.c:1126
+#: ../../install_steps_interactive.pm_.c:1121
msgid "Authentication LDAP"
msgstr "Oven pomoc LDAP"
-#: ../../install_steps_interactive.pm_.c:1127
+#: ../../install_steps_interactive.pm_.c:1122
msgid "LDAP Base dn"
msgstr "Zkladn dn pro LDAP"
-#: ../../install_steps_interactive.pm_.c:1128
+#: ../../install_steps_interactive.pm_.c:1123
msgid "LDAP Server"
msgstr "LDAP server"
-#: ../../install_steps_interactive.pm_.c:1134
+#: ../../install_steps_interactive.pm_.c:1129
msgid "Authentication NIS"
msgstr "Oven pomoc NIS"
-#: ../../install_steps_interactive.pm_.c:1135
+#: ../../install_steps_interactive.pm_.c:1130
msgid "NIS Domain"
msgstr "NIS Domna"
-#: ../../install_steps_interactive.pm_.c:1136
+#: ../../install_steps_interactive.pm_.c:1131
msgid "NIS Server"
msgstr "NIS Server"
-#: ../../install_steps_interactive.pm_.c:1171
+#: ../../install_steps_interactive.pm_.c:1138
+msgid "Authentication Windows PDC"
+msgstr "Oven pomoc Windows PDC"
+
+#: ../../install_steps_interactive.pm_.c:1139
+msgid "Windows Domain"
+msgstr "Domna Windows"
+
+#: ../../install_steps_interactive.pm_.c:1140
+msgid "PDC Server Name"
+msgstr "Jmno serveru PDC"
+
+#: ../../install_steps_interactive.pm_.c:1142
+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"
+msgstr ""
+"Aby toto fungovalo v ppad serveru PDC Windows 2000, bude muset "
+"administrtor pravdpodobn spustit pkaz: C:\\>net localgroup \"Pre-"
+"Windows 2000 Compatible Access\" everyone / add a restartovat server."
+
+#: ../../install_steps_interactive.pm_.c:1176
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
"depending on the normal bootloader. This is useful if you don't want to "
@@ -5509,19 +5631,19 @@ msgstr ""
"Pokud chcete vytvoit startovac disketu, vlote disketu do mechaniky\n"
"a stisknte \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1187
+#: ../../install_steps_interactive.pm_.c:1192
msgid "First floppy drive"
msgstr "prvn mechaniky"
-#: ../../install_steps_interactive.pm_.c:1188
+#: ../../install_steps_interactive.pm_.c:1193
msgid "Second floppy drive"
msgstr "druh mechaniky"
-#: ../../install_steps_interactive.pm_.c:1189 ../../printerdrake.pm_.c:1848
+#: ../../install_steps_interactive.pm_.c:1194 ../../printerdrake.pm_.c:1896
msgid "Skip"
msgstr "Peskoit"
-#: ../../install_steps_interactive.pm_.c:1194
+#: ../../install_steps_interactive.pm_.c:1199
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5545,7 +5667,7 @@ msgstr ""
"innou pomoc pi havrii systmu. Chcete vytvoit startovac disketu?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1200
+#: ../../install_steps_interactive.pm_.c:1205
msgid ""
"\n"
"\n"
@@ -5559,28 +5681,28 @@ msgstr ""
"spoutc diskety bude zejm nespn, protoe XFS\n"
"potebuje velmi velk ovlada)"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1213
msgid "Sorry, no floppy drive available"
msgstr "Bohuel nen dostupn dn disketov mechanika"
-#: ../../install_steps_interactive.pm_.c:1212
+#: ../../install_steps_interactive.pm_.c:1217
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Zvolte mechaniku, kde chcete vytvoit startovac disketu"
-#: ../../install_steps_interactive.pm_.c:1216
+#: ../../install_steps_interactive.pm_.c:1221
#, c-format
msgid "Insert a floppy in %s"
msgstr "Vlote disketu do %s"
-#: ../../install_steps_interactive.pm_.c:1219
-msgid "Creating bootdisk"
+#: ../../install_steps_interactive.pm_.c:1224
+msgid "Creating bootdisk..."
msgstr "Vytvm startovac disketu"
-#: ../../install_steps_interactive.pm_.c:1226
-msgid "Preparing bootloader"
+#: ../../install_steps_interactive.pm_.c:1231
+msgid "Preparing bootloader..."
msgstr "Pipravuji zavdc program"
-#: ../../install_steps_interactive.pm_.c:1237
+#: ../../install_steps_interactive.pm_.c:1242
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5588,15 +5710,15 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
"Zd se, e mte njak neznm pota,\n"
-"na kterm nebude yaboot pracovat.\n"
+"na kterm nebude Yaboot pracovat.\n"
"Instalace bude pokraovat, ale budete\n"
"potebovat BootX pro sputn systmu."
-#: ../../install_steps_interactive.pm_.c:1243
+#: ../../install_steps_interactive.pm_.c:1248
msgid "Do you want to use aboot?"
msgstr "Chcete pout aboot?"
-#: ../../install_steps_interactive.pm_.c:1246
+#: ../../install_steps_interactive.pm_.c:1251
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5604,15 +5726,15 @@ msgstr ""
"Stala se chyba pi instalaci aboot,\n"
"mm se pokusit o instalaci i kdy to zru prvn oddl na disku?"
-#: ../../install_steps_interactive.pm_.c:1253
+#: ../../install_steps_interactive.pm_.c:1258
msgid "Installing bootloader"
msgstr "Instaluji zavdc program"
-#: ../../install_steps_interactive.pm_.c:1259
+#: ../../install_steps_interactive.pm_.c:1264
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalace zavdcho programu neuspla. Stala se tato chyba:"
-#: ../../install_steps_interactive.pm_.c:1267
+#: ../../install_steps_interactive.pm_.c:1272
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5624,23 +5746,22 @@ msgid ""
msgstr ""
"Mete potebovat zmnit startovac zazen pro Open Firmware\n"
" pro aktivaci spoutcho programu. Pokud nevidte po sputn prompt,\n"
-" stisknte pi startu Command-Option-O-F a zadajte:\n"
+" stisknte pi startu Command-Option-O-F a zadejte:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Potom zadejte: shut-down\n"
"Pi dalm sputn u uvidte prompt."
-#: ../../install_steps_interactive.pm_.c:1311
+#: ../../install_steps_interactive.pm_.c:1306
#: ../../standalone/drakautoinst_.c:81
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Vlote przdnou disketu do %s"
-#: ../../install_steps_interactive.pm_.c:1315
-#: ../../standalone/drakautoinst_.c:83
-msgid "Creating auto install floppy"
+#: ../../install_steps_interactive.pm_.c:1310
+msgid "Creating auto install floppy..."
msgstr "Vytvm disketu pro automatickou instalaci"
-#: ../../install_steps_interactive.pm_.c:1326
+#: ../../install_steps_interactive.pm_.c:1321
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5650,7 +5771,8 @@ msgstr ""
"\n"
"Chcete opravdu nyn skonit?"
-#: ../../install_steps_interactive.pm_.c:1337
+#: ../../install_steps_interactive.pm_.c:1332
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5661,31 +5783,36 @@ msgid ""
"consult the Errata available from:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
"Gratulujeme vm, instalace je dokonena.\n"
-"Vyjmte startovac mdia a stisknte return pro restart.\n"
+"Vyjmte startovac mdia a stisknte Return pro restart.\n"
"\n"
"\n"
"Na opravy tto instalace systmu Mandrake Linux se lze informovat\n"
"na strnce Errata:\n"
"\n"
"\n"
-"http://www.mandrakelinux.com/en/82errata.php3\n"
+"%s\n"
"\n"
"\n"
"Informace o konfiguraci systmu po instalaci jsou dostupn\n"
"v dan kapitole oficiln uivatelsk pruky pro Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1354
+#: ../../install_steps_interactive.pm_.c:1345
+#, fuzzy
+msgid "http://www.mandrakelinux.com/en/90errata.php3"
+msgstr "http://www.mandrakesoft.com/sales/contact"
+
+#: ../../install_steps_interactive.pm_.c:1350
msgid "Generate auto install floppy"
msgstr "Vytvoit disketu pro automatickou instalaci"
-#: ../../install_steps_interactive.pm_.c:1356
+#: ../../install_steps_interactive.pm_.c:1352
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5699,15 +5826,15 @@ msgstr ""
"\n"
"Takto lze jednodue zopakovat instalaci.\n"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Automated"
msgstr "Automaticky"
-#: ../../install_steps_interactive.pm_.c:1361
+#: ../../install_steps_interactive.pm_.c:1357
msgid "Replay"
msgstr "Zopakovat"
-#: ../../install_steps_interactive.pm_.c:1364
+#: ../../install_steps_interactive.pm_.c:1360
msgid "Save packages selection"
msgstr "Uloit vbr jednotlivch balk"
@@ -5734,44 +5861,24 @@ msgstr "chyb consolehelper"
msgid "Choose a file"
msgstr "Vyberte soubor"
-#: ../../interactive.pm_.c:314
+#: ../../interactive.pm_.c:315
msgid "Advanced"
msgstr "Rozen"
-#: ../../interactive.pm_.c:315
+#: ../../interactive.pm_.c:316
msgid "Basic"
msgstr "Zkladn"
-#: ../../interactive.pm_.c:386
-msgid "Please wait"
-msgstr "Prosm pokejte"
-
-#: ../../interactive_gtk.pm_.c:605 ../../services.pm_.c:222
-msgid "Info"
-msgstr "Informace"
-
-#: ../../interactive_gtk.pm_.c:715
-msgid "Expand Tree"
-msgstr "Rozbal vtev"
-
-#: ../../interactive_gtk.pm_.c:716
-msgid "Collapse Tree"
-msgstr "Sbal vtev"
-
-#: ../../interactive_gtk.pm_.c:717
-msgid "Toggle between flat and group sorted"
-msgstr "Pepnut mezi abecednm a skupinovm azenm"
-
-#: ../../interactive_stdio.pm_.c:29 ../../interactive_stdio.pm_.c:147
+#: ../../interactive/stdio.pm_.c:29 ../../interactive/stdio.pm_.c:147
msgid "Bad choice, try again\n"
msgstr "patn volba, zkuste to znovu\n"
-#: ../../interactive_stdio.pm_.c:30 ../../interactive_stdio.pm_.c:148
+#: ../../interactive/stdio.pm_.c:30 ../../interactive/stdio.pm_.c:148
#, c-format
msgid "Your choice? (default %s) "
msgstr "Vae volba? (vchoz %s) "
-#: ../../interactive_stdio.pm_.c:52
+#: ../../interactive/stdio.pm_.c:52
#, c-format
msgid ""
"Entries you'll have to fill:\n"
@@ -5780,31 +5887,35 @@ msgstr ""
"Poloky, kter je poteba vyplnit:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:68
+#: ../../interactive/stdio.pm_.c:68
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Vae volba? (0/1, vchoz '%s') "
-#: ../../interactive_stdio.pm_.c:93
+#: ../../interactive/stdio.pm_.c:93
#, c-format
msgid "Button `%s': %s"
msgstr "Tlatko '%s': %s"
-#: ../../interactive_stdio.pm_.c:94
-msgid "Do you want to click on this button? "
+#: ../../interactive/stdio.pm_.c:94
+msgid "Do you want to click on this button?"
msgstr "Chcete kliknout na toto tlatko? "
-#: ../../interactive_stdio.pm_.c:103
+#: ../../interactive/stdio.pm_.c:103
+msgid " enter `void' for void entry"
+msgstr " zadejte `void` pokud chcete przdn vstup"
+
+#: ../../interactive/stdio.pm_.c:103
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Vae volba? (vchoz '%s'%s) "
-#: ../../interactive_stdio.pm_.c:121
+#: ../../interactive/stdio.pm_.c:121
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Je zde vce voleb, ze kterch je mon si vybrat (%s).\n"
-#: ../../interactive_stdio.pm_.c:124
+#: ../../interactive/stdio.pm_.c:124
msgid ""
"Please choose the first number of the 10-range you wish to edit,\n"
"or just hit Enter to proceed.\n"
@@ -5814,7 +5925,7 @@ msgstr ""
"nebo stisknte Enter pro pokraovn.\n"
"Vae volba? "
-#: ../../interactive_stdio.pm_.c:137
+#: ../../interactive/stdio.pm_.c:137
#, c-format
msgid ""
"=> Notice, a label changed:\n"
@@ -5823,327 +5934,327 @@ msgstr ""
"=> Oznamuji zmnu nvt:\n"
"%s"
-#: ../../interactive_stdio.pm_.c:144
+#: ../../interactive/stdio.pm_.c:144
msgid "Re-submit"
msgstr "Znovu odeslat"
-#: ../../keyboard.pm_.c:174 ../../keyboard.pm_.c:205
+#: ../../keyboard.pm_.c:165 ../../keyboard.pm_.c:196
msgid "Czech (QWERTZ)"
msgstr "esk (QWERTZ)"
-#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:207
+#: ../../keyboard.pm_.c:166 ../../keyboard.pm_.c:198
msgid "German"
msgstr "Nmeck"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:167
msgid "Dvorak"
msgstr "Dvok"
-#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:214
+#: ../../keyboard.pm_.c:168 ../../keyboard.pm_.c:205
msgid "Spanish"
msgstr "panlsk"
-#: ../../keyboard.pm_.c:178 ../../keyboard.pm_.c:215
+#: ../../keyboard.pm_.c:169 ../../keyboard.pm_.c:206
msgid "Finnish"
msgstr "Finsk"
-#: ../../keyboard.pm_.c:179 ../../keyboard.pm_.c:216
+#: ../../keyboard.pm_.c:170 ../../keyboard.pm_.c:207
msgid "French"
msgstr "Francouzsk"
-#: ../../keyboard.pm_.c:180 ../../keyboard.pm_.c:241
+#: ../../keyboard.pm_.c:171 ../../keyboard.pm_.c:232
msgid "Norwegian"
msgstr "Norsk"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:172
msgid "Polish"
msgstr "Polsk"
-#: ../../keyboard.pm_.c:182 ../../keyboard.pm_.c:249
+#: ../../keyboard.pm_.c:173 ../../keyboard.pm_.c:240
msgid "Russian"
msgstr "Rusk"
-#: ../../keyboard.pm_.c:184 ../../keyboard.pm_.c:251
+#: ../../keyboard.pm_.c:175 ../../keyboard.pm_.c:242
msgid "Swedish"
msgstr "vdsk"
-#: ../../keyboard.pm_.c:185 ../../keyboard.pm_.c:266
+#: ../../keyboard.pm_.c:176 ../../keyboard.pm_.c:257
msgid "UK keyboard"
msgstr "UK-Britsk"
-#: ../../keyboard.pm_.c:186 ../../keyboard.pm_.c:267
+#: ../../keyboard.pm_.c:177 ../../keyboard.pm_.c:258
msgid "US keyboard"
msgstr "US-Americk"
-#: ../../keyboard.pm_.c:188
+#: ../../keyboard.pm_.c:179
msgid "Albanian"
msgstr "Albnsk"
-#: ../../keyboard.pm_.c:189
+#: ../../keyboard.pm_.c:180
msgid "Armenian (old)"
msgstr "Armnsk (star)"
-#: ../../keyboard.pm_.c:190
+#: ../../keyboard.pm_.c:181
msgid "Armenian (typewriter)"
msgstr "Armnsk (psac stroj)"
-#: ../../keyboard.pm_.c:191
+#: ../../keyboard.pm_.c:182
msgid "Armenian (phonetic)"
msgstr "Armnsk (foneticky)"
-#: ../../keyboard.pm_.c:196
+#: ../../keyboard.pm_.c:187
msgid "Azerbaidjani (latin)"
msgstr "zerbajdnsk (latinka)"
-#: ../../keyboard.pm_.c:198
+#: ../../keyboard.pm_.c:189
msgid "Belgian"
msgstr "Belgick"
-#: ../../keyboard.pm_.c:199
+#: ../../keyboard.pm_.c:190
msgid "Bulgarian (phonetic)"
msgstr "Bulharsk (foneticky)"
-#: ../../keyboard.pm_.c:200
+#: ../../keyboard.pm_.c:191
msgid "Bulgarian (BDS)"
msgstr "Bulharsk (BDS)"
-#: ../../keyboard.pm_.c:201
+#: ../../keyboard.pm_.c:192
msgid "Brazilian (ABNT-2)"
msgstr "Brazilsk (ABNT-2)"
-#: ../../keyboard.pm_.c:202
+#: ../../keyboard.pm_.c:193
msgid "Belarusian"
msgstr "Blorusk"
-#: ../../keyboard.pm_.c:203
+#: ../../keyboard.pm_.c:194
msgid "Swiss (German layout)"
msgstr "vcarsk (Nmeck styl)"
-#: ../../keyboard.pm_.c:204
+#: ../../keyboard.pm_.c:195
msgid "Swiss (French layout)"
msgstr "vcarsk (Francouzsk styl)"
-#: ../../keyboard.pm_.c:206
+#: ../../keyboard.pm_.c:197
msgid "Czech (QWERTY)"
msgstr "esk (QWERTY)"
-#: ../../keyboard.pm_.c:208
+#: ../../keyboard.pm_.c:199
msgid "German (no dead keys)"
msgstr "Nmeck (bez mrtvch klves)"
-#: ../../keyboard.pm_.c:209
+#: ../../keyboard.pm_.c:200
msgid "Danish"
msgstr "Dnsk"
-#: ../../keyboard.pm_.c:210
+#: ../../keyboard.pm_.c:201
msgid "Dvorak (US)"
msgstr "Dvok (US) "
-#: ../../keyboard.pm_.c:211
+#: ../../keyboard.pm_.c:202
msgid "Dvorak (Norwegian)"
msgstr "Dvok (Norsk)"
-#: ../../keyboard.pm_.c:212
+#: ../../keyboard.pm_.c:203
msgid "Dvorak (Swedish)"
msgstr "Dvok (vdsk) "
-#: ../../keyboard.pm_.c:213
+#: ../../keyboard.pm_.c:204
msgid "Estonian"
msgstr "Estonsk"
-#: ../../keyboard.pm_.c:217
+#: ../../keyboard.pm_.c:208
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruznsk (\"Rusk\" rozloen)"
-#: ../../keyboard.pm_.c:218
+#: ../../keyboard.pm_.c:209
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruznsk (rozloen \"Latin\")"
-#: ../../keyboard.pm_.c:219
+#: ../../keyboard.pm_.c:210
msgid "Greek"
msgstr "eck"
-#: ../../keyboard.pm_.c:220
+#: ../../keyboard.pm_.c:211
msgid "Hungarian"
msgstr "Maarsk"
-#: ../../keyboard.pm_.c:221
+#: ../../keyboard.pm_.c:212
msgid "Croatian"
msgstr "Chorvatsk"
-#: ../../keyboard.pm_.c:222
+#: ../../keyboard.pm_.c:213
msgid "Israeli"
msgstr "Izraelsk"
-#: ../../keyboard.pm_.c:223
+#: ../../keyboard.pm_.c:214
msgid "Israeli (Phonetic)"
msgstr "Izraelsk (foneticky)"
-#: ../../keyboard.pm_.c:224
+#: ../../keyboard.pm_.c:215
msgid "Iranian"
msgstr "rnsk"
-#: ../../keyboard.pm_.c:225
+#: ../../keyboard.pm_.c:216
msgid "Icelandic"
msgstr "Islandsk"
-#: ../../keyboard.pm_.c:226
+#: ../../keyboard.pm_.c:217
msgid "Italian"
msgstr "Italsk"
-#: ../../keyboard.pm_.c:228
+#: ../../keyboard.pm_.c:219
msgid "Japanese 106 keys"
msgstr "Japonsk 106 klves"
-#: ../../keyboard.pm_.c:231
+#: ../../keyboard.pm_.c:222
msgid "Korean keyboard"
msgstr "Korejsk klvesnice"
-#: ../../keyboard.pm_.c:232
+#: ../../keyboard.pm_.c:223
msgid "Latin American"
msgstr "Latinsko-Americk"
-#: ../../keyboard.pm_.c:233
+#: ../../keyboard.pm_.c:224
msgid "Lithuanian AZERTY (old)"
msgstr "Litevsk AZERTY (star)"
-#: ../../keyboard.pm_.c:235
+#: ../../keyboard.pm_.c:226
msgid "Lithuanian AZERTY (new)"
msgstr "Litevsk AZERTY (nov)"
-#: ../../keyboard.pm_.c:236
+#: ../../keyboard.pm_.c:227
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litevsk \"seln ada\" QWERTY"
-#: ../../keyboard.pm_.c:237
+#: ../../keyboard.pm_.c:228
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litevsk \"foneticky\" QWERTY"
-#: ../../keyboard.pm_.c:238
+#: ../../keyboard.pm_.c:229
msgid "Latvian"
-msgstr "Latevsk"
+msgstr "Litevsk"
-#: ../../keyboard.pm_.c:239
+#: ../../keyboard.pm_.c:230
msgid "Macedonian"
msgstr "Makedonsk"
-#: ../../keyboard.pm_.c:240
+#: ../../keyboard.pm_.c:231
msgid "Dutch"
msgstr "Holandsk"
-#: ../../keyboard.pm_.c:242
+#: ../../keyboard.pm_.c:233
msgid "Polish (qwerty layout)"
msgstr "Polsk (rozloen QWERTY)"
-#: ../../keyboard.pm_.c:243
+#: ../../keyboard.pm_.c:234
msgid "Polish (qwertz layout)"
msgstr "Polsk (rozloen QWERTZ)"
-#: ../../keyboard.pm_.c:244
+#: ../../keyboard.pm_.c:235
msgid "Portuguese"
msgstr "Portugalsk"
-#: ../../keyboard.pm_.c:245
+#: ../../keyboard.pm_.c:236
msgid "Canadian (Quebec)"
msgstr "Kanadsk (Quebec)"
-#: ../../keyboard.pm_.c:247
+#: ../../keyboard.pm_.c:238
msgid "Romanian (qwertz)"
msgstr "Rumunsk (qwertz)"
-#: ../../keyboard.pm_.c:248
+#: ../../keyboard.pm_.c:239
msgid "Romanian (qwerty)"
msgstr "Rumunsk (qwerty)"
-#: ../../keyboard.pm_.c:250
+#: ../../keyboard.pm_.c:241
msgid "Russian (Yawerty)"
msgstr "Rusk (Yawerty)"
-#: ../../keyboard.pm_.c:252
+#: ../../keyboard.pm_.c:243
msgid "Slovenian"
msgstr "Slovinsk"
-#: ../../keyboard.pm_.c:253
+#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTZ)"
msgstr "Slovensk (QWERTZ)"
-#: ../../keyboard.pm_.c:254
+#: ../../keyboard.pm_.c:245
msgid "Slovakian (QWERTY)"
msgstr "Slovensk (QWERTY)"
-#: ../../keyboard.pm_.c:256
+#: ../../keyboard.pm_.c:247
msgid "Serbian (cyrillic)"
msgstr "Srbsk (cyrilice)"
-#: ../../keyboard.pm_.c:258
+#: ../../keyboard.pm_.c:249
msgid "Tamil"
msgstr "Tamilsk"
-#: ../../keyboard.pm_.c:259
+#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
msgstr "Thajsk"
-#: ../../keyboard.pm_.c:261
+#: ../../keyboard.pm_.c:252
msgid "Tajik keyboard"
-msgstr "Tadisk klvesnice"
+msgstr "Tdick klvesnice"
-#: ../../keyboard.pm_.c:262
+#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
msgstr "Tureck (tradin model \"F\")"
-#: ../../keyboard.pm_.c:263
+#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
msgstr "Tureck (modern model \"Q\")"
-#: ../../keyboard.pm_.c:265
+#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
msgstr "Ukrajinsk"
-#: ../../keyboard.pm_.c:268
+#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
msgstr "US (mezinrodn)"
-#: ../../keyboard.pm_.c:269
+#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamsk \"seln ada\" QWERTY"
-#: ../../keyboard.pm_.c:270
+#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
msgstr "Jugoslvsk (latin)"
-#: ../../keyboard.pm_.c:278
+#: ../../keyboard.pm_.c:269
msgid "Right Alt key"
msgstr "Prav klvesa Alt"
-#: ../../keyboard.pm_.c:279
+#: ../../keyboard.pm_.c:270
msgid "Both Shift keys simultaneously"
msgstr "Ob klvesy Shift souasn"
-#: ../../keyboard.pm_.c:280
+#: ../../keyboard.pm_.c:271
msgid "Control and Shift keys simultaneously"
msgstr "Control a Shift souasn"
-#: ../../keyboard.pm_.c:281
+#: ../../keyboard.pm_.c:272
msgid "CapsLock key"
msgstr "Klvesa CapsLock"
-#: ../../keyboard.pm_.c:282
+#: ../../keyboard.pm_.c:273
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ctrl a Alt souasn"
-#: ../../keyboard.pm_.c:283
+#: ../../keyboard.pm_.c:274
msgid "Alt and Shift keys simultaneously"
msgstr "Alt a Shift souasn"
-#: ../../keyboard.pm_.c:284
+#: ../../keyboard.pm_.c:275
msgid "\"Menu\" key"
msgstr "Klvesa \"Menu\""
-#: ../../keyboard.pm_.c:285
+#: ../../keyboard.pm_.c:276
msgid "Left \"Windows\" key"
msgstr "Lev klvesa \"Windows\""
-#: ../../keyboard.pm_.c:286
+#: ../../keyboard.pm_.c:277
msgid "Right \"Windows\" key"
msgstr "Prav klvesa \"Windows\""
@@ -6156,7 +6267,29 @@ msgstr "Propleten ppojn body %s\n"
msgid "Remove the logical volumes first\n"
msgstr "Odeberte nejdve logick disky\n"
-#: ../../modules.pm_.c:826
+#: ../../modparm.pm_.c:51
+msgid "a number"
+msgstr "slo"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated numbers"
+msgstr "%d sel oddlench rkou"
+
+#: ../../modparm.pm_.c:53
+#, c-format
+msgid "%d comma separated strings"
+msgstr "%d znakovch etzc oddlench rkou"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated numbers"
+msgstr "rkou oddlen sla"
+
+#: ../../modparm.pm_.c:55
+msgid "comma separated strings"
+msgstr "rkou oddlen znakov etzce"
+
+#: ../../modules.pm_.c:283
msgid ""
"PCMCIA support no longer exist for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
@@ -6198,10 +6331,6 @@ msgstr "1 tlatko"
msgid "Generic 2 Button Mouse"
msgstr "Standardn dvoutlatkov my"
-#: ../../mouse.pm_.c:45
-msgid "Generic"
-msgstr "Obecn"
-
#: ../../mouse.pm_.c:46
msgid "Wheel"
msgstr "S kolekem"
@@ -6266,38 +6395,54 @@ msgstr "dn"
msgid "No mouse"
msgstr "Bez myi"
-#: ../../mouse.pm_.c:499
+#: ../../mouse.pm_.c:447
msgid "Please test the mouse"
msgstr "Vyzkouejte prosm, zda funguje my"
-#: ../../mouse.pm_.c:500
+#: ../../mouse.pm_.c:448
msgid "To activate the mouse,"
msgstr "Vyzkouejte na myi,"
-#: ../../mouse.pm_.c:501
+#: ../../mouse.pm_.c:449
msgid "MOVE YOUR WHEEL!"
msgstr "TOIT KOLEKEM!"
-#: ../../my_gtk.pm_.c:651
+#: ../../my_gtk.pm_.c:688
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-2,*-r-*"
-#: ../../my_gtk.pm_.c:686
+#: ../../my_gtk.pm_.c:723
msgid "Finish"
msgstr "Ukonit"
-#: ../../my_gtk.pm_.c:686 ../../printerdrake.pm_.c:1588
+#: ../../my_gtk.pm_.c:723 ../../printerdrake.pm_.c:1612
msgid "Next ->"
msgstr "Dal ->"
-#: ../../my_gtk.pm_.c:687 ../../printerdrake.pm_.c:1586
+#: ../../my_gtk.pm_.c:724 ../../printerdrake.pm_.c:1610
msgid "<- Previous"
msgstr "<- Pedchoz"
-#: ../../my_gtk.pm_.c:1019
+#: ../../my_gtk.pm_.c:1056
msgid "Is this correct?"
msgstr "Je to sprvn?"
+#: ../../my_gtk.pm_.c:1120 ../../services.pm_.c:222
+msgid "Info"
+msgstr "Informace"
+
+#: ../../my_gtk.pm_.c:1141
+msgid "Expand Tree"
+msgstr "Rozbal vtev"
+
+#: ../../my_gtk.pm_.c:1142
+msgid "Collapse Tree"
+msgstr "Sbal vtev"
+
+#: ../../my_gtk.pm_.c:1143
+msgid "Toggle between flat and group sorted"
+msgstr "Pepnut mezi abecednm a skupinovm azenm"
+
#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Pipojen k Internetu"
@@ -6308,13 +6453,13 @@ msgid ""
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-"Nejbnji se pro pipojen pomoc adsl pouv pppoe.\n"
+"Nejbnji se pro pipojen pomoc ADSL pouv pppoe.\n"
"Nkter pipojen pouvaj pptp, nkter pouze dhcp. Jestli si nejste "
"jist, zvolte 'pout pppoe'"
#: ../../network/adsl.pm_.c:22
msgid "Alcatel speedtouch usb"
-msgstr "Alcatel speedtouch usb"
+msgstr "Alcatel speedtouch USB"
#: ../../network/adsl.pm_.c:22
msgid "use dhcp"
@@ -6344,7 +6489,7 @@ msgstr ""
"Ve vaem potai nebyl nalezen dn sov adaptr.\n"
"Nemohu nastavit typ spojen."
-#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:252
+#: ../../network/ethernet.pm_.c:92 ../../standalone/drakgw_.c:249
msgid "Choose the network interface"
msgstr "Zvolte sov rozhran"
@@ -6359,7 +6504,7 @@ msgstr ""
msgid "no network card found"
msgstr "nebyla nalezena sov karta"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:360
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:364
msgid "Configuring network"
msgstr "Nastavuji s"
@@ -6374,15 +6519,15 @@ msgstr ""
"DHCP servery. Toto jmno mus bt pln, jako napklad\n"
"'mybox.mylab.myco.com'."
-#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:207 ../../network/network.pm_.c:369
msgid "Host name"
msgstr "Jmno potae"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:95 ../../network/netconnect.pm_.c:109
-#: ../../network/netconnect.pm_.c:164 ../../network/netconnect.pm_.c:175
-#: ../../network/netconnect.pm_.c:202 ../../network/netconnect.pm_.c:225
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
+#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
+#: ../../network/netconnect.pm_.c:236
msgid "Network Configuration Wizard"
msgstr "Prvodce nastavenm st"
@@ -6437,7 +6582,7 @@ msgstr "Nastaven ISDN"
#: ../../network/isdn.pm_.c:170
msgid ""
"Select your provider.\n"
-" If it's not in the list, choose Unlisted"
+"If it isn't listed, choose Unlisted."
msgstr ""
"Vyberte si svho poskytovatele internetu.\n"
" Pokud nen na seznamu, vyberte si Jin"
@@ -6456,14 +6601,14 @@ msgstr "Protokol pouit ve zbytku svta"
#: ../../network/isdn.pm_.c:185
msgid ""
-"Protocol for the rest of the world \n"
-" no D-Channel (leased lines)"
+"Protocol for the rest of the world\n"
+"No D-Channel (leased lines)"
msgstr ""
"Protokol pouit ve zbytku svta \n"
" dn D-kanl (leased lines)"
#: ../../network/isdn.pm_.c:189
-msgid "Which protocol do you want to use ?"
+msgid "Which protocol do you want to use?"
msgstr "Kter protokol chcete pout?"
#: ../../network/isdn.pm_.c:199
@@ -6487,7 +6632,8 @@ msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
-"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
+"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
+"card.\n"
msgstr ""
"\n"
"Jestli mte ISA kartu, mly by bt hodnoty na nsledujc obrazovce "
@@ -6504,13 +6650,13 @@ msgid "Continue"
msgstr "Pokraovat"
#: ../../network/isdn.pm_.c:216
-msgid "Which is your ISDN card ?"
+msgid "Which is your ISDN card?"
msgstr "Kterou z tchto ISDN karet mte?"
#: ../../network/isdn.pm_.c:235
msgid ""
-"I have detected an ISDN PCI Card, but I don't know the type. Please select "
-"one PCI card on the next screen."
+"I have detected an ISDN PCI card, but I don't know its type. Please select a "
+"PCI card on the next screen."
msgstr ""
"Nael jsem ISDN PCI kartu, jej typ ale neznm. Prosm zvolte si jednu z "
"nsledujcho seznamu PCI karet."
@@ -6529,47 +6675,47 @@ msgstr "Ke ktermu sriovmu portu je v modem pipojen?"
msgid "Dialup options"
msgstr "Monosti vyten"
-#: ../../network/modem.pm_.c:45 ../../standalone/draknet_.c:622
+#: ../../network/modem.pm_.c:45 ../../standalone/drakconnect_.c:622
msgid "Connection name"
msgstr "Jmno pipojen"
-#: ../../network/modem.pm_.c:46 ../../standalone/draknet_.c:623
+#: ../../network/modem.pm_.c:46 ../../standalone/drakconnect_.c:623
msgid "Phone number"
msgstr "Telefonn slo"
-#: ../../network/modem.pm_.c:47 ../../standalone/draknet_.c:624
+#: ../../network/modem.pm_.c:47 ../../standalone/drakconnect_.c:624
msgid "Login ID"
msgstr "Pihlaovac jmno"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "CHAP"
msgstr "CHAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "PAP"
msgstr "PAP"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Script-based"
msgstr "Podle scne"
-#: ../../network/modem.pm_.c:49 ../../standalone/draknet_.c:626
+#: ../../network/modem.pm_.c:49 ../../standalone/drakconnect_.c:626
msgid "Terminal-based"
msgstr "Pomoc terminlu"
-#: ../../network/modem.pm_.c:50 ../../standalone/draknet_.c:627
+#: ../../network/modem.pm_.c:50 ../../standalone/drakconnect_.c:627
msgid "Domain name"
msgstr "Jmno domny"
-#: ../../network/modem.pm_.c:51 ../../standalone/draknet_.c:628
+#: ../../network/modem.pm_.c:51 ../../standalone/drakconnect_.c:628
msgid "First DNS Server (optional)"
msgstr "Prvn DNS Server (nepovinn)"
-#: ../../network/modem.pm_.c:52 ../../standalone/draknet_.c:629
+#: ../../network/modem.pm_.c:52 ../../standalone/drakconnect_.c:629
msgid "Second DNS Server (optional)"
msgstr "Druh DNS Server (nepovinn)"
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6577,7 +6723,7 @@ msgstr ""
"\n"
"Mete se odpojit nebo pekonfigurovat pipojen."
-#: ../../network/netconnect.pm_.c:34 ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6585,11 +6731,11 @@ msgstr ""
"\n"
"Mete pekonfigurovat pipojen."
-#: ../../network/netconnect.pm_.c:34
+#: ../../network/netconnect.pm_.c:33
msgid "You are currently connected to internet."
msgstr "V souasnosti jste pipojeni k Internetu"
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6597,32 +6743,32 @@ msgstr ""
"\n"
"Nemete se pipojit k Internetu nebo pekonfigurovat pipojen."
-#: ../../network/netconnect.pm_.c:37
+#: ../../network/netconnect.pm_.c:36
msgid "You are not currently connected to Internet."
msgstr "V souasnosti nejste pipojeni k Internetu."
-#: ../../network/netconnect.pm_.c:41
+#: ../../network/netconnect.pm_.c:40
msgid "Connect"
msgstr "Pipojit"
-#: ../../network/netconnect.pm_.c:43
+#: ../../network/netconnect.pm_.c:42
msgid "Disconnect"
msgstr "Odpojit"
-#: ../../network/netconnect.pm_.c:45
+#: ../../network/netconnect.pm_.c:44
msgid "Configure the connection"
msgstr "Nastavit pipojen"
-#: ../../network/netconnect.pm_.c:50
+#: ../../network/netconnect.pm_.c:49
msgid "Internet connection & configuration"
msgstr "Nastaven a pipojen k internetu"
-#: ../../network/netconnect.pm_.c:100
+#: ../../network/netconnect.pm_.c:99
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Nyn se pipravuje konfigurace %s pipojen."
-#: ../../network/netconnect.pm_.c:109
+#: ../../network/netconnect.pm_.c:108
#, c-format
msgid ""
"\n"
@@ -6641,12 +6787,12 @@ msgstr ""
"\n"
"Stisknte OK pro pokraovn."
-#: ../../network/netconnect.pm_.c:138 ../../network/netconnect.pm_.c:252
-#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:57
+#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Nastaven st"
-#: ../../network/netconnect.pm_.c:139
+#: ../../network/netconnect.pm_.c:138
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6657,9 +6803,9 @@ msgstr ""
"Kliknte na Ok pro zachovn nastaven nebo kliknte na Zruit pro nov "
"nastaven pipojen Internetu a k sti.\n"
-#: ../../network/netconnect.pm_.c:165
+#: ../../network/netconnect.pm_.c:164
msgid ""
-"Welcome to The Network Configuration Wizard\n"
+"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
@@ -6669,66 +6815,72 @@ msgstr ""
"Nyn lze nastavit pipojen k sti nebo internetu.\n"
"Pokud nechcete pout automatickou detekci, odznate polko.\n"
-#: ../../network/netconnect.pm_.c:167
+#: ../../network/netconnect.pm_.c:170
msgid "Choose the profile to configure"
msgstr "Zvolte profil pro nastaven"
-#: ../../network/netconnect.pm_.c:168
+#: ../../network/netconnect.pm_.c:171
msgid "Use auto detection"
msgstr "Pout autodetekci"
-#: ../../network/netconnect.pm_.c:175
+#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:2541
+#: ../../standalone/drakconnect_.c:275 ../../standalone/drakconnect_.c:278
+#: ../../standalone/drakfloppy_.c:146
+msgid "Expert Mode"
+msgstr "Expertn reim"
+
+#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:231
msgid "Detecting devices..."
msgstr "Detekuji zazen..."
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "Normal modem connection"
msgstr "Modemov pipojen"
-#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, c-format
msgid "detected on port %s"
msgstr "detekovno na portu %s"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
msgid "ISDN connection"
msgstr "ISDN pipojen"
-#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
+#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
#, c-format
msgid "detected %s"
msgstr "detekovno %s"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
msgid "ADSL connection"
msgstr "ADSL pipojen"
-#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
+#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
#, c-format
msgid "detected on interface %s"
msgstr "detekovno na rozhran %s"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "Cable connection"
msgstr "Kabelov pipojen"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
msgid "cable connection detected"
msgstr "detekovno kabelov pipojen"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "LAN connection"
msgstr "Pipojen k LAN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
msgid "ethernet card(s) detected"
msgstr "detekovan() sov() karta(y)"
-#: ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:205
msgid "Choose the connection you want to configure"
msgstr "Zvolte si pipojen, kter chcete nastavit"
-#: ../../network/netconnect.pm_.c:226
+#: ../../network/netconnect.pm_.c:229
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6738,23 +6890,23 @@ msgstr ""
"Vyberte si jeden, kter chcete pout.\n"
"\n"
-#: ../../network/netconnect.pm_.c:227
+#: ../../network/netconnect.pm_.c:230
msgid "Internet connection"
msgstr "Internetov pipojen"
-#: ../../network/netconnect.pm_.c:233
+#: ../../network/netconnect.pm_.c:236
msgid "Do you want to start the connection at boot?"
msgstr "Chcete se automaticky pipojovat po startu potae?"
-#: ../../network/netconnect.pm_.c:247
+#: ../../network/netconnect.pm_.c:250
msgid "Network configuration"
msgstr "Nastaven st"
-#: ../../network/netconnect.pm_.c:248
+#: ../../network/netconnect.pm_.c:251
msgid "The network needs to be restarted"
msgstr "Je potebn znovu spustit s"
-#: ../../network/netconnect.pm_.c:252
+#: ../../network/netconnect.pm_.c:255
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6765,7 +6917,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:261
+#: ../../network/netconnect.pm_.c:265
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6775,7 +6927,7 @@ msgstr ""
"\n"
"Konfigurace bude nyn aktivovna.\n"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:269
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6783,19 +6935,19 @@ msgstr ""
"Doporuujeme po tomto kroku restartovat X Window,\n"
"aby se pedelo problmm se zmnou jmna potae."
-#: ../../network/netconnect.pm_.c:266
+#: ../../network/netconnect.pm_.c:270
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
-"work, you might want to relaunch the configuration"
+"work, you might want to relaunch the configuration."
msgstr ""
"Vyskytl se problm bhem konfigurace.\n"
"Otestujte pipojen k Internetu pomoc net_monitor nebo mcc. Pokud nen "
"spojen funkn, bude poteba asi znovu nast konfiguraci"
-#: ../../network/network.pm_.c:292
+#: ../../network/network.pm_.c:293
msgid ""
-"WARNING: This device has been previously configured to connect to the "
+"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
@@ -6804,7 +6956,7 @@ msgstr ""
"Kliknte na Ok pro zachovn nastaven.\n"
"Modifikace nsledujcch poloek pepe toto nastaven."
-#: ../../network/network.pm_.c:297
+#: ../../network/network.pm_.c:298
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6814,38 +6966,42 @@ msgstr ""
"Kad poloka mus bt zadna jako IP adresa v 'desetinn' form\n"
"(napklad 1.2.3.4)."
-#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:308 ../../network/network.pm_.c:309
#, c-format
msgid "Configuring network device %s"
msgstr "Nastavuji sov zazen %s"
-#: ../../network/network.pm_.c:307
+#: ../../network/network.pm_.c:309
#, c-format
msgid " (driver %s)"
msgstr " (ovlada %s)"
-#: ../../network/network.pm_.c:309 ../../standalone/draknet_.c:232
-#: ../../standalone/draknet_.c:468
+#: ../../network/network.pm_.c:311 ../../standalone/drakconnect_.c:232
+#: ../../standalone/drakconnect_.c:468
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:310 ../../standalone/draknet_.c:469
+#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:469
msgid "Netmask"
msgstr "Maska st"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:311
+#: ../../network/network.pm_.c:313
msgid "Automatic IP"
msgstr "Automatick IP"
-#: ../../network/network.pm_.c:332 ../../printerdrake.pm_.c:712
+#: ../../network/network.pm_.c:314
+msgid "Start at boot"
+msgstr "Spustit pi startu"
+
+#: ../../network/network.pm_.c:335 ../../printerdrake.pm_.c:736
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa mus bt ve formtu 1.2.3.4"
-#: ../../network/network.pm_.c:361
+#: ../../network/network.pm_.c:365
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6856,64 +7012,64 @@ msgstr ""
"Toto jmno mus bt pln, jako 'mybox.mylab.myco.com'.\n"
"Pokud pouvte brnu(gateway), mete tak zadat jej adresu"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:370
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:367
+#: ../../network/network.pm_.c:371
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Brna (nap. %s)"
-#: ../../network/network.pm_.c:369
+#: ../../network/network.pm_.c:373
msgid "Gateway device"
msgstr "Zazen brny(gateway)"
-#: ../../network/network.pm_.c:381
+#: ../../network/network.pm_.c:385
msgid "Proxies configuration"
msgstr "Nastaven proxy"
-#: ../../network/network.pm_.c:382
+#: ../../network/network.pm_.c:386
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:383
+#: ../../network/network.pm_.c:387
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:384
-msgid "Track network card id (usefull for laptops)"
+#: ../../network/network.pm_.c:388
+msgid "Track network card id (useful for laptops)"
msgstr "Sledovat id sov karty (uiten u notebook)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:391
msgid "Proxy should be http://..."
msgstr "Proxy by mla bt http://..."
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:392
msgid "Proxy should be ftp://..."
msgstr "Proxy by mla bt ftp://..."
-#: ../../network/tools.pm_.c:39
+#: ../../network/tools.pm_.c:41
msgid "Internet configuration"
msgstr "Nastaven Internetu"
-#: ../../network/tools.pm_.c:40
+#: ../../network/tools.pm_.c:42
msgid "Do you want to try to connect to the Internet now?"
msgstr "Chcete se nyn pokusit pipojit k internetu?"
-#: ../../network/tools.pm_.c:44 ../../standalone/draknet_.c:197
+#: ../../network/tools.pm_.c:46 ../../standalone/drakconnect_.c:197
msgid "Testing your connection..."
msgstr "Testuji pipojen k internetu..."
-#: ../../network/tools.pm_.c:50
+#: ../../network/tools.pm_.c:56
msgid "The system is now connected to Internet."
msgstr "Pota je nyn pipojen k internetu"
-#: ../../network/tools.pm_.c:51
-msgid "For Security reason, it will be disconnected now."
+#: ../../network/tools.pm_.c:57
+msgid "For security reason, it will be disconnected now."
msgstr "Z bezpenostnch dvod bude spojen ukoneno."
-#: ../../network/tools.pm_.c:52
+#: ../../network/tools.pm_.c:58
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -6921,111 +7077,116 @@ msgstr ""
"Nepodailo se pipojit k Internetu.\n"
"Pokuste se pekonfigurovat dan pipojen."
-#: ../../network/tools.pm_.c:76
+#: ../../network/tools.pm_.c:82
msgid "Connection Configuration"
msgstr "Nastaven pipojen"
-#: ../../network/tools.pm_.c:77
+#: ../../network/tools.pm_.c:83
msgid "Please fill or check the field below"
msgstr "Prosm vyplte nebo zkontrolujte nsledujc daje"
-#: ../../network/tools.pm_.c:79 ../../standalone/draknet_.c:608
+#: ../../network/tools.pm_.c:85 ../../standalone/drakconnect_.c:608
msgid "Card IRQ"
msgstr "IRQ karty"
-#: ../../network/tools.pm_.c:80 ../../standalone/draknet_.c:609
+#: ../../network/tools.pm_.c:86 ../../standalone/drakconnect_.c:609
msgid "Card mem (DMA)"
msgstr "DMA karty"
-#: ../../network/tools.pm_.c:81 ../../standalone/draknet_.c:610
+#: ../../network/tools.pm_.c:87 ../../standalone/drakconnect_.c:610
msgid "Card IO"
msgstr "IO karty"
-#: ../../network/tools.pm_.c:82 ../../standalone/draknet_.c:611
+#: ../../network/tools.pm_.c:88 ../../standalone/drakconnect_.c:611
msgid "Card IO_0"
msgstr "IO_0 karty"
-#: ../../network/tools.pm_.c:83 ../../standalone/draknet_.c:612
+#: ../../network/tools.pm_.c:89 ../../standalone/drakconnect_.c:612
msgid "Card IO_1"
msgstr "IO_1 karty"
-#: ../../network/tools.pm_.c:84 ../../standalone/draknet_.c:613
+#: ../../network/tools.pm_.c:90 ../../standalone/drakconnect_.c:613
msgid "Your personal phone number"
msgstr "Vae osobn telefonn slo"
-#: ../../network/tools.pm_.c:85 ../../standalone/draknet_.c:614
+#: ../../network/tools.pm_.c:91 ../../standalone/drakconnect_.c:614
msgid "Provider name (ex provider.net)"
-msgstr "Jmno poskytovatele (nap provider.net)"
+msgstr "Jmno poskytovatele (nap. provider.net)"
-#: ../../network/tools.pm_.c:86 ../../standalone/draknet_.c:615
+#: ../../network/tools.pm_.c:92 ../../standalone/drakconnect_.c:615
msgid "Provider phone number"
msgstr "Telefonn slo poskytovatele"
-#: ../../network/tools.pm_.c:87 ../../standalone/draknet_.c:616
+#: ../../network/tools.pm_.c:93 ../../standalone/drakconnect_.c:616
msgid "Provider dns 1 (optional)"
msgstr "DNS poskytovatele .1 (voliteln)"
-#: ../../network/tools.pm_.c:88 ../../standalone/draknet_.c:617
+#: ../../network/tools.pm_.c:94 ../../standalone/drakconnect_.c:617
msgid "Provider dns 2 (optional)"
msgstr "DNS poskytovatele .2 (voliteln)"
-#: ../../network/tools.pm_.c:89
+#: ../../network/tools.pm_.c:95
msgid "Choose your country"
msgstr "Vbr si zemi"
-#: ../../network/tools.pm_.c:90 ../../standalone/draknet_.c:620
+#: ../../network/tools.pm_.c:96 ../../standalone/drakconnect_.c:620
msgid "Dialing mode"
msgstr "Typ vyten"
-#: ../../network/tools.pm_.c:91 ../../standalone/draknet_.c:632
+#: ../../network/tools.pm_.c:97 ../../standalone/drakconnect_.c:632
msgid "Connection speed"
msgstr "Rychlost pipojen"
-#: ../../network/tools.pm_.c:92 ../../standalone/draknet_.c:633
+#: ../../network/tools.pm_.c:98 ../../standalone/drakconnect_.c:633
msgid "Connection timeout (in sec)"
msgstr "Prodleva pipojen (vteiny)"
-#: ../../network/tools.pm_.c:93 ../../standalone/draknet_.c:618
+#: ../../network/tools.pm_.c:99 ../../standalone/drakconnect_.c:618
msgid "Account Login (user name)"
msgstr "V et (uivatelsk jmno)"
-#: ../../network/tools.pm_.c:94 ../../standalone/draknet_.c:619
+#: ../../network/tools.pm_.c:100 ../../standalone/drakconnect_.c:619
+#: ../../standalone/drakconnect_.c:650
msgid "Account Password"
msgstr "Heslo vaeho tu"
-#: ../../partition_table.pm_.c:600
+#: ../../network/tools.pm_.c:118
+msgid "United Kingdom"
+msgstr "Velk Britnie"
+
+#: ../../partition_table.pm_.c:606
msgid "mount failed: "
msgstr "chyba pipojovn: "
-#: ../../partition_table.pm_.c:664
+#: ../../partition_table.pm_.c:670
msgid "Extended partition not supported on this platform"
msgstr "Rozen diskov oddly nejsou na tomto systmu podporovny"
-#: ../../partition_table.pm_.c:682
+#: ../../partition_table.pm_.c:688
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
-"to the extended partitions"
+"to the extended partitions."
msgstr ""
"Ve tabulce diskovch oddl je mezera, ale nemohu ji pout.\n"
"Jedin een je pesunout primrn oddly tak, abyste mli mezeru vedle\n"
"rozench oddl."
-#: ../../partition_table.pm_.c:770
+#: ../../partition_table.pm_.c:778
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Obnova ze souboru %s neuspla: %s"
-#: ../../partition_table.pm_.c:772
+#: ../../partition_table.pm_.c:780
msgid "Bad backup file"
msgstr "patn zlon soubor"
-#: ../../partition_table.pm_.c:794
+#: ../../partition_table.pm_.c:802
#, c-format
msgid "Error writing to file %s"
msgstr "Chyba pi zapisovn do souboru %s"
-#: ../../partition_table_raw.pm_.c:186
+#: ../../partition_table/raw.pm_.c:186
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
@@ -7035,186 +7196,186 @@ msgstr ""
"Test na integritu dat selhal. \n"
"To znamen, e zpis na tento disk me skonit nepedvdan"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "must have"
msgstr "muste mt"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "important"
msgstr "dleit"
-#: ../../pkgs.pm_.c:26
+#: ../../pkgs.pm_.c:28
msgid "very nice"
msgstr "nejmn dleit"
-#: ../../pkgs.pm_.c:27
+#: ../../pkgs.pm_.c:29
msgid "nice"
msgstr "nedleit"
-#: ../../pkgs.pm_.c:28
+#: ../../pkgs.pm_.c:30
msgid "maybe"
msgstr "me se hodit"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:26
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Tiskov Systm pro Unix"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:27
msgid "LPRng - LPR New Generation"
-msgstr "LPRng - LPR Nov generace"
+msgstr "LprNG - LPR Nov generace"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:28
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Dmon pro tiskrny"
-#: ../../printer.pm_.c:26
+#: ../../printer.pm_.c:29
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Tisk bez ukldn do fronty"
-#: ../../printer.pm_.c:32 ../../printer.pm_.c:871
+#: ../../printer.pm_.c:35 ../../printer.pm_.c:874
msgid "CUPS"
msgstr "CUPS"
-#: ../../printer.pm_.c:33
+#: ../../printer.pm_.c:36
msgid "LPRng"
-msgstr "LPRng"
+msgstr "LprNG"
-#: ../../printer.pm_.c:34
+#: ../../printer.pm_.c:37
msgid "LPD"
msgstr "LPD"
-#: ../../printer.pm_.c:35
+#: ../../printer.pm_.c:38
msgid "PDQ"
msgstr "PDQ"
-#: ../../printer.pm_.c:47
+#: ../../printer.pm_.c:50
msgid "Local printer"
msgstr "Mstn tiskrna"
-#: ../../printer.pm_.c:48
+#: ../../printer.pm_.c:51
msgid "Remote printer"
msgstr "Vzdlen tiskrna"
-#: ../../printer.pm_.c:49
+#: ../../printer.pm_.c:52
msgid "Printer on remote CUPS server"
msgstr "Tiskrna na vzdlenm CUPS serveru"
-#: ../../printer.pm_.c:50 ../../printerdrake.pm_.c:734
+#: ../../printer.pm_.c:53 ../../printerdrake.pm_.c:758
msgid "Printer on remote lpd server"
msgstr "Tiskrna na vzdlen lpd serveru"
-#: ../../printer.pm_.c:51
+#: ../../printer.pm_.c:54
msgid "Network printer (TCP/Socket)"
msgstr "Sov tiskrna (TCP/Socket)"
-#: ../../printer.pm_.c:52
+#: ../../printer.pm_.c:55
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Tiskrna na serveru Windows 95/98/NT"
-#: ../../printer.pm_.c:53
+#: ../../printer.pm_.c:56
msgid "Printer on NetWare server"
msgstr "Tiskrna na Netware serveru"
-#: ../../printer.pm_.c:54 ../../printerdrake.pm_.c:738
+#: ../../printer.pm_.c:57 ../../printerdrake.pm_.c:762
msgid "Enter a printer device URI"
msgstr "Zadejte URI tiskovho zazen"
-#: ../../printer.pm_.c:55
+#: ../../printer.pm_.c:58
msgid "Pipe job into a command"
msgstr "Poslat tiskovou lohu do pkazu"
-#: ../../printer.pm_.c:504 ../../printer.pm_.c:695 ../../printer.pm_.c:1017
-#: ../../printerdrake.pm_.c:1665 ../../printerdrake.pm_.c:2730
+#: ../../printer.pm_.c:507 ../../printer.pm_.c:698 ../../printer.pm_.c:1020
+#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:2801
msgid "Unknown model"
msgstr "Neznm model"
-#: ../../printer.pm_.c:532
+#: ../../printer.pm_.c:535
msgid "Local Printers"
msgstr "Mstn tiskrny"
-#: ../../printer.pm_.c:534 ../../printer.pm_.c:872
+#: ../../printer.pm_.c:537 ../../printer.pm_.c:875
msgid "Remote Printers"
msgstr "Vzdlen tiskrny"
-#: ../../printer.pm_.c:541 ../../printerdrake.pm_.c:248
+#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:244
#, c-format
msgid " on parallel port \\/*%s"
msgstr " na paralelnm portu \\/*%s"
-#: ../../printer.pm_.c:544 ../../printerdrake.pm_.c:250
+#: ../../printer.pm_.c:547 ../../printerdrake.pm_.c:246
#, c-format
msgid ", USB printer \\/*%s"
msgstr ", USB tiskrna \\/*%s"
-#: ../../printer.pm_.c:549
+#: ../../printer.pm_.c:552
#, c-format
msgid ", multi-function device on parallel port \\/*%s"
msgstr ", multifunkn na paralelnm portu \\/*%s"
-#: ../../printer.pm_.c:552
+#: ../../printer.pm_.c:555
msgid ", multi-function device on USB"
msgstr ", multifunkn zazen na USB"
-#: ../../printer.pm_.c:554
+#: ../../printer.pm_.c:557
msgid ", multi-function device on HP JetDirect"
msgstr ", multifunkn zazen na HP JetDirect"
-#: ../../printer.pm_.c:556
+#: ../../printer.pm_.c:559
msgid ", multi-function device"
msgstr ", multifunkn zazen"
-#: ../../printer.pm_.c:559
+#: ../../printer.pm_.c:562
#, c-format
msgid ", printing to %s"
msgstr ", pi tisku na %s"
-#: ../../printer.pm_.c:561
+#: ../../printer.pm_.c:564
#, c-format
msgid "on LPD server \"%s\", printer \"%s\""
msgstr "na LPD serveru \"%s\", tiskrna \"%s\""
-#: ../../printer.pm_.c:563
+#: ../../printer.pm_.c:566
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP hostitel \"%s\", port %s"
-#: ../../printer.pm_.c:567
+#: ../../printer.pm_.c:570
#, c-format
msgid "on Windows server \"%s\", share \"%s\""
msgstr "na serveru Windows \"%s\", sdlen jako \"%s\""
-#: ../../printer.pm_.c:571
+#: ../../printer.pm_.c:574
#, c-format
msgid "on Novell server \"%s\", printer \"%s\""
msgstr "na severu Novell \"%s\", tiskrna \"%s\""
-#: ../../printer.pm_.c:573
+#: ../../printer.pm_.c:576
#, c-format
msgid ", using command %s"
msgstr ", pouv pkaz %s"
-#: ../../printer.pm_.c:692 ../../printerdrake.pm_.c:1136
+#: ../../printer.pm_.c:695 ../../printerdrake.pm_.c:1160
msgid "Raw printer (No driver)"
msgstr "Pm tisk (bez ovladae)"
-#: ../../printer.pm_.c:841
+#: ../../printer.pm_.c:844
#, c-format
msgid "(on %s)"
msgstr "(na %s)"
-#: ../../printer.pm_.c:843
+#: ../../printer.pm_.c:846
msgid "(on this machine)"
msgstr "(na tomto potai)"
-#: ../../printer.pm_.c:868
+#: ../../printer.pm_.c:871
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Na serveru CUPS \"%s\""
-#: ../../printer.pm_.c:874 ../../printerdrake.pm_.c:2391
-#: ../../printerdrake.pm_.c:2402 ../../printerdrake.pm_.c:2618
-#: ../../printerdrake.pm_.c:2670 ../../printerdrake.pm_.c:2697
-#: ../../printerdrake.pm_.c:2867 ../../printerdrake.pm_.c:2869
+#: ../../printer.pm_.c:877 ../../printerdrake.pm_.c:2462
+#: ../../printerdrake.pm_.c:2473 ../../printerdrake.pm_.c:2689
+#: ../../printerdrake.pm_.c:2741 ../../printerdrake.pm_.c:2768
+#: ../../printerdrake.pm_.c:2938 ../../printerdrake.pm_.c:2940
msgid " (Default)"
msgstr " (Vchoz)"
@@ -7236,11 +7397,11 @@ msgstr ""
"V ppad vzdlenho CUPS serveru nemuste nastavovat tiskrny zde,\n"
"tiskrny budou automaticky detekovny."
-#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2454
+#: ../../printerdrake.pm_.c:69 ../../printerdrake.pm_.c:2525
msgid "CUPS configuration"
msgstr "Nastaven CUPS"
-#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2455
+#: ../../printerdrake.pm_.c:70 ../../printerdrake.pm_.c:2526
msgid "Specify CUPS server"
msgstr "Zadejte CUPS server"
@@ -7257,7 +7418,7 @@ msgstr ""
"Pi tisku na vzdlen CUPS server v lokln sti nen poteba nic "
"nastavovat, CUPS server bude automaticky informovat o jeho tiskrnch. "
"Vechny znm tiskrny pro tento pota jsou nyn vypsny v poli \"Vzdlen "
-"tiskrny\". v hlavn sekci nstroje Printerdrake. Pokud je CUPS na jin "
+"tiskrny\". v hlavn sekci nstroje PrinterDrake. Pokud je CUPS na jin "
"sti, muste pro zskn informac zadat IP adresu CUPS serveru a tak "
"ppadn slo portu, jinak nechte toto pole przdn."
@@ -7281,7 +7442,7 @@ msgstr ""
msgid "The IP address should look like 192.168.1.20"
msgstr "IP adresa mus bt ve formtu 192.168.1.20"
-#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:862
+#: ../../printerdrake.pm_.c:80 ../../printerdrake.pm_.c:886
msgid "The port number should be an integer!"
msgstr "slo portu mus bt cel slo!"
@@ -7289,7 +7450,7 @@ msgstr "slo portu mus bt cel slo!"
msgid "CUPS server IP"
msgstr "IP adresa CUPS serveru"
-#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:855
+#: ../../printerdrake.pm_.c:88 ../../printerdrake.pm_.c:879
msgid "Port"
msgstr "Port"
@@ -7297,20 +7458,12 @@ msgstr "Port"
msgid "Automatic CUPS configuration"
msgstr "Automatick nastaven pro CUPS"
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Detecting devices ..."
-msgstr "Detekuji zazen ..."
-
-#: ../../printerdrake.pm_.c:145 ../../standalone/scannerdrake_.c:42
-msgid "Test ports"
-msgstr "Otestovat porty"
-
-#: ../../printerdrake.pm_.c:167 ../../printerdrake.pm_.c:2437
-#: ../../printerdrake.pm_.c:2556
+#: ../../printerdrake.pm_.c:162 ../../printerdrake.pm_.c:2508
+#: ../../printerdrake.pm_.c:2628
msgid "Add a new printer"
msgstr "Pidat novou tiskrnu"
-#: ../../printerdrake.pm_.c:168
+#: ../../printerdrake.pm_.c:163
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7331,13 +7484,13 @@ msgstr ""
"Budete dotzni na vechny potebn informace pro nastaven tiskrny, mete "
"si vybrat se vech tiskovch ovlada a typ pipojen tiskrny."
-#: ../../printerdrake.pm_.c:176 ../../printerdrake.pm_.c:203
-#: ../../printerdrake.pm_.c:378 ../../printerdrake.pm_.c:393
-#: ../../printerdrake.pm_.c:403 ../../printerdrake.pm_.c:466
+#: ../../printerdrake.pm_.c:171 ../../printerdrake.pm_.c:198
+#: ../../printerdrake.pm_.c:374 ../../printerdrake.pm_.c:389
+#: ../../printerdrake.pm_.c:399 ../../printerdrake.pm_.c:462
msgid "Local Printer"
msgstr "Mstn tiskrna"
-#: ../../printerdrake.pm_.c:177
+#: ../../printerdrake.pm_.c:172
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7367,13 +7520,13 @@ msgstr ""
"Me se stt, e nkter potae mohou zatuhnout pi automatick detekci a "
"tehdy lze pout \"Expertn reim\" pro instalaci bez automatick detekce. "
"\"Expertn reim\" pouijte tak tehdy, pokud chcete nastavit vzdlenou "
-"tiskrnu(y) a printerdrake ji/je automaticky nenabdnul."
+"tiskrnu(y) a PrinterDrake ji/je automaticky nenabdl."
-#: ../../printerdrake.pm_.c:186
+#: ../../printerdrake.pm_.c:181
msgid "Auto-detect printers"
msgstr "Automatick detekce tiskren"
-#: ../../printerdrake.pm_.c:204
+#: ../../printerdrake.pm_.c:199
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
@@ -7395,11 +7548,11 @@ msgstr ""
"hodnoty (typ zsobnku, kvalita tisku,...), zvolte \"Tiskrna\" v sekci "
"\"Hardware\" v dcm centru Mandrake."
-#: ../../printerdrake.pm_.c:223
+#: ../../printerdrake.pm_.c:218
msgid "Auto-Detection of Printers"
msgstr "Automatick detekce tiskren"
-#: ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:219
msgid ""
"Printerdrake is able to auto-detect your locally connected parallel and USB "
"printers for you, but note that on some systems the auto-detection CAN "
@@ -7408,40 +7561,44 @@ msgid ""
"\n"
"Do you really want to get your printers auto-detected?"
msgstr ""
-"Printerdrake doke automaticky detekovat tiskrny pipojen pes paraleln "
+"PrinterDrake doke automaticky detekovat tiskrny pipojen pes paraleln "
"nebo USB rozhran, ale na nkterch systmech me automatick detekce "
"ZMRAZIT SYSTM A TAK POKODIT SOUBORY! Provdte to tedy na VLASTN "
"NEBEZPE!\n"
"\n"
"Chcete opravdu pout automatickou detekci tiskrny?"
-#: ../../printerdrake.pm_.c:227 ../../printerdrake.pm_.c:229
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:222 ../../printerdrake.pm_.c:224
+#: ../../printerdrake.pm_.c:225
msgid "Do auto-detection"
msgstr "Provst autodetekci"
-#: ../../printerdrake.pm_.c:228
+#: ../../printerdrake.pm_.c:223
msgid "Set up printer manually"
msgstr "Nastavit tiskrnu manuln"
-#: ../../printerdrake.pm_.c:256
+#: ../../printerdrake.pm_.c:231 ../../standalone/scannerdrake_.c:42
+msgid "Test ports"
+msgstr "Otestovat porty"
+
+#: ../../printerdrake.pm_.c:252
#, c-format
msgid "Detected %s"
msgstr "Detekovno %s"
-#: ../../printerdrake.pm_.c:260 ../../printerdrake.pm_.c:287
-#: ../../printerdrake.pm_.c:306
+#: ../../printerdrake.pm_.c:256 ../../printerdrake.pm_.c:283
+#: ../../printerdrake.pm_.c:302
#, c-format
msgid "Printer on parallel port \\/*%s"
msgstr "Tiskrna na paralelnm portu \\/*%s"
-#: ../../printerdrake.pm_.c:262 ../../printerdrake.pm_.c:289
-#: ../../printerdrake.pm_.c:311
+#: ../../printerdrake.pm_.c:258 ../../printerdrake.pm_.c:285
+#: ../../printerdrake.pm_.c:307
#, c-format
msgid "USB printer \\/*%s"
msgstr "USB tiskrna \\/*%s"
-#: ../../printerdrake.pm_.c:379
+#: ../../printerdrake.pm_.c:375
msgid ""
"No local printer found! To manually install a printer enter a device name/"
"file name in the input line (Parallel Ports: /dev/lp0, /dev/lp1, ..., "
@@ -7453,11 +7610,11 @@ msgstr ""
"ekvivalentn LPT1:, LPT2:, ...,prvn USB tiskrna: /dev/usb/lp0, druh USB "
"tiskrna: /dev/usb/lp1,...)."
-#: ../../printerdrake.pm_.c:383
+#: ../../printerdrake.pm_.c:379
msgid "You must enter a device or file name!"
msgstr "Muste zadat zazen nebo jmno souboru!"
-#: ../../printerdrake.pm_.c:394
+#: ../../printerdrake.pm_.c:390
msgid ""
"No local printer found!\n"
"\n"
@@ -7465,7 +7622,7 @@ msgstr ""
"Mstn tiskrna nenalezena!\n"
"\n"
-#: ../../printerdrake.pm_.c:395
+#: ../../printerdrake.pm_.c:391
msgid ""
"Network printers can only be installed after the installation. Choose "
"\"Hardware\" and then \"Printer\" in the Mandrake Control Center."
@@ -7473,7 +7630,7 @@ msgstr ""
"Sov tiskrny mohou bt nainstalovny a po instalaci systmu. V dcm "
"centru Mandrake vyberte \"Hardware\" a potom \"Tiskrna\"."
-#: ../../printerdrake.pm_.c:396
+#: ../../printerdrake.pm_.c:392
msgid ""
"To install network printers, click \"Cancel\", switch to the \"Expert Mode"
"\", and click \"Add a new printer\" again."
@@ -7481,7 +7638,7 @@ msgstr ""
"Pro instalaci sovch tiskren kliknte nejdve na \"Zruit\", pejdte do "
"\"Expertnho reimu\" a potom opt kliknte na \"Pidat novou tiskrnu\"."
-#: ../../printerdrake.pm_.c:407
+#: ../../printerdrake.pm_.c:403
msgid ""
"The following printer was auto-detected, if it is not the one you want to "
"configure, enter a device name/file name in the input line"
@@ -7489,7 +7646,7 @@ msgstr ""
"Tyto tiskrny byly automaticky detekovny, pokud nen mezi nimi poadovan "
"tiskrna, zadejte do polka jmno zazen/jmno souboru"
-#: ../../printerdrake.pm_.c:408
+#: ../../printerdrake.pm_.c:404
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up or enter a device name/file name in the input line"
@@ -7497,7 +7654,7 @@ msgstr ""
"Zde je seznam vech automaticky rozpoznanch tiskren. Vyberte si tiskrnu, "
"kterou chcete nastavit nebo zadejte do polka jmno zazen/jmno souboru"
-#: ../../printerdrake.pm_.c:410
+#: ../../printerdrake.pm_.c:406
msgid ""
"The following printer was auto-detected. The configuration of the printer "
"will work fully automatically. If your printer was not correctly detected or "
@@ -7508,7 +7665,7 @@ msgstr ""
"automatick. Pokud nebyla tiskrna sprvn detekovna nebo preferujete "
"vlastn nastaven tisku, zvolte \"Run konfigurace\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:407
msgid ""
"Here is a list of all auto-detected printers. Please choose the printer you "
"want to set up. The configuration of the printer will work fully "
@@ -7519,7 +7676,7 @@ msgstr ""
"pln automatick. Pokud nebyla tiskrna sprvn detekovna nebo preferujete "
"vlastn nastaven tisku, zvolte \"Run konfigurace\"."
-#: ../../printerdrake.pm_.c:413
+#: ../../printerdrake.pm_.c:409
msgid ""
"Please choose the port where your printer is connected to or enter a device "
"name/file name in the input line"
@@ -7527,11 +7684,11 @@ msgstr ""
"Vyberte si port, ke ktermu je tiskrna pipojena nebo zadejte do polka "
"jmno zazen/jmno souboru"
-#: ../../printerdrake.pm_.c:414
+#: ../../printerdrake.pm_.c:410
msgid "Please choose the port where your printer is connected to."
msgstr "Vyberte port, ke ktermu je vae tiskrna pipojena."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:412
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
@@ -7539,52 +7696,66 @@ msgstr ""
" (Paraleln porty: /dev/lp0, /dev/lp1,... je ekvivalentn LPT1:, LPT2:, ...,"
"prvn USB tiskrna: /dev/usb/lp0, druh USB tiskrna: /dev/usb/lp1,...)."
-#: ../../printerdrake.pm_.c:421
+#: ../../printerdrake.pm_.c:417
msgid "You must choose/enter a printer/device!"
msgstr "Muste vybrat/zadat tiskrnu/zazen!"
-#: ../../printerdrake.pm_.c:441
+#: ../../printerdrake.pm_.c:437
msgid "Manual configuration"
msgstr "Run nastaven"
-#: ../../printerdrake.pm_.c:467
+#: ../../printerdrake.pm_.c:463
+#, fuzzy
msgid ""
-"Is your printer a multi-function device from HP (OfficeJet, PSC, PhotoSmart, "
-"LaserJet 1100/1200/1220/3200/3300 with scanner)?"
+"Is your printer a multi-function device from HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 with scanner), an HP PhotoSmart or an HP LaserJet "
+"2200?"
msgstr ""
-"Je vae tiskrna multifunkn zazen od HP (OfficeJet, PSC, PhotoSmart "
-"LaserJet 1100/1200/1220/3200/3300 se skenerem)?"
+"Je vae tiskrna multifunkn zazen od HP (OfficeJet, PSC, LaserJet "
+"1100/1200/1220/3200/3300 se skenerem), HP PhotoSmart P100 nebo 1315 nebo HP "
+"LaserJet 2200?"
-#: ../../printerdrake.pm_.c:482
+#: ../../printerdrake.pm_.c:480
msgid "Installing HPOJ package..."
msgstr "Instaluji balek HPOJ..."
-#: ../../printerdrake.pm_.c:487
-msgid "Checking device and configuring HPOJ ..."
+#: ../../printerdrake.pm_.c:485
+msgid "Checking device and configuring HPOJ..."
msgstr "Testuj zazen a nastavuji HPOJ..."
-#: ../../printerdrake.pm_.c:505
-msgid "Installing SANE package..."
+#: ../../printerdrake.pm_.c:504
+#, fuzzy
+msgid "Installing SANE packages..."
msgstr "Instaluji balek SANE..."
-#: ../../printerdrake.pm_.c:517
+#: ../../printerdrake.pm_.c:524
+#, fuzzy
+msgid "Installing mtools packages..."
+msgstr "Instaluji balky..."
+
+#: ../../printerdrake.pm_.c:535
msgid "Scanning on your HP multi-function device"
msgstr "Skenovn na multifunknm zazen od HP"
-#: ../../printerdrake.pm_.c:534
-msgid "Making printer port available for CUPS ..."
+#: ../../printerdrake.pm_.c:541
+#, fuzzy
+msgid "Photo memory card access on your HP multi-function device"
+msgstr "Skenovn na multifunknm zazen od HP"
+
+#: ../../printerdrake.pm_.c:558
+msgid "Making printer port available for CUPS..."
msgstr "Zpstupuji tiskov port pro CUPS ..."
-#: ../../printerdrake.pm_.c:544 ../../printerdrake.pm_.c:1018
-#: ../../printerdrake.pm_.c:1132
-msgid "Reading printer database ..."
+#: ../../printerdrake.pm_.c:568 ../../printerdrake.pm_.c:1042
+#: ../../printerdrake.pm_.c:1156
+msgid "Reading printer database..."
msgstr "Natm databzi tiskren ..."
-#: ../../printerdrake.pm_.c:624
+#: ../../printerdrake.pm_.c:648
msgid "Remote lpd Printer Options"
msgstr "Monosti vzdlen lpd tiskrny"
-#: ../../printerdrake.pm_.c:625
+#: ../../printerdrake.pm_.c:649
msgid ""
"To use a remote lpd printer, you need to supply the hostname of the printer "
"server and the printer name on that server."
@@ -7592,27 +7763,27 @@ msgstr ""
"Abyste mohli pouvat vzdlenou tiskovou frontu lpd, muste zadat jmno "
"tiskovho serveru a jmno tiskrny, kam m bt posln tisk."
-#: ../../printerdrake.pm_.c:626
+#: ../../printerdrake.pm_.c:650
msgid "Remote host name"
msgstr "Jmno vzdlenho potae"
-#: ../../printerdrake.pm_.c:627
+#: ../../printerdrake.pm_.c:651
msgid "Remote printer name"
msgstr "Jmno vzdlen tiskrny"
-#: ../../printerdrake.pm_.c:630
+#: ../../printerdrake.pm_.c:654
msgid "Remote host name missing!"
msgstr "Chyb jmno vzdlenho potae!"
-#: ../../printerdrake.pm_.c:634
+#: ../../printerdrake.pm_.c:658
msgid "Remote printer name missing!"
msgstr "Chyb jmno vzdlen tiskrny!"
-#: ../../printerdrake.pm_.c:702
+#: ../../printerdrake.pm_.c:726
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Monosti SMB (Windows 9x/NT) tiskrny"
-#: ../../printerdrake.pm_.c:703
+#: ../../printerdrake.pm_.c:727
msgid ""
"To print to a SMB printer, you need to provide the SMB host name (Note! It "
"may be different from its TCP/IP hostname!) and possibly the IP address of "
@@ -7624,35 +7795,35 @@ msgstr ""
"tiskovho serveru, jmno sdlen tiskrny, vhodn uivatelsk jmno, heslo a "
"informace o pracovn skupin."
-#: ../../printerdrake.pm_.c:704
+#: ../../printerdrake.pm_.c:728
msgid "SMB server host"
msgstr "Jmno SMB serveru"
-#: ../../printerdrake.pm_.c:705
+#: ../../printerdrake.pm_.c:729
msgid "SMB server IP"
msgstr "IP adresa SMB serveru"
-#: ../../printerdrake.pm_.c:706
+#: ../../printerdrake.pm_.c:730
msgid "Share name"
msgstr "Sdlen jmno"
-#: ../../printerdrake.pm_.c:709
+#: ../../printerdrake.pm_.c:733
msgid "Workgroup"
msgstr "Pracovn skupina"
-#: ../../printerdrake.pm_.c:716
+#: ../../printerdrake.pm_.c:740
msgid "Either the server name or the server's IP must be given!"
msgstr "Mus bt zadno bu jmno serveru nebo jeho IP adresa!"
-#: ../../printerdrake.pm_.c:720
+#: ../../printerdrake.pm_.c:744
msgid "Samba share name missing!"
msgstr "Chyb jmno pro sdlen pes Sambu!"
-#: ../../printerdrake.pm_.c:725
+#: ../../printerdrake.pm_.c:749
msgid "SECURITY WARNING!"
msgstr "BEZPENOSTN VAROVN!"
-#: ../../printerdrake.pm_.c:726
+#: ../../printerdrake.pm_.c:750
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
@@ -7675,14 +7846,14 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
-"Provdte nastaven tisku s tem na systmu Windows. Kvli chyb v klientu "
+"Provdte nastaven tisku s tem na systmu Windows. Dky chyb v klientu "
"protokolu Samba je heslo pi tisku poslno jako ist text z pkazov "
-"adky. Je tud mon, aby kdokoliv vidl toto heslo na obrazovce kdy si "
+"dky. Je tud mon, aby kdokoliv vidl toto heslo na obrazovce kdy si "
"zad pkaz nap. \"ps auxwww\".\n"
"\n"
"Doporuujeme pouvat jednu z nsledujcch alternativ (ve vech ppadech "
-"je dobr mt nastaven pstup pouze z pota z lokln st, respektiv za "
-"firewalem):\n"
+"je dobr mt nastaven pstup pouze z pota z lokln st, respektive za "
+"firewallem):\n"
"\n"
"Pout et, kter nem nastaven dn heslo, jako je \"GUEST\" nebo "
"speciln et pouze pro ely tisku. Neodstraujte ochranu heslem z bnho "
@@ -7690,10 +7861,10 @@ msgstr ""
"\n"
"Nastavte tiskrnu na Windows serveru tak, aby fungovala pod LPD protokolem. "
"Potom nastavte tisk na tto tiskrn pomoc typy spojen \"%s\" v aplikaci "
-"Printerdrake.\n"
+"PrinterDrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:736
+#: ../../printerdrake.pm_.c:760
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
@@ -7703,10 +7874,10 @@ msgid ""
msgstr ""
"Nastavit na serveru s Windows tiskrnu, kter bude pstupn pomoc IPP "
"protokolu a nastavit tisk z tohoto potae pomoc spojen \"%s\" v aplikaci "
-"Printerdrake.\n"
+"PrinterDrake.\n"
"\n"
-#: ../../printerdrake.pm_.c:739
+#: ../../printerdrake.pm_.c:763
msgid ""
"Connect your printer to a Linux server and let your Windows machine(s) "
"connect to it as a client.\n"
@@ -7718,11 +7889,11 @@ msgstr ""
"\n"
"Chcete opravdu pokraovat v nastaven tiskrny tmto zpsobem?"
-#: ../../printerdrake.pm_.c:801
+#: ../../printerdrake.pm_.c:825
msgid "NetWare Printer Options"
msgstr "Monosti NetWare tiskrny"
-#: ../../printerdrake.pm_.c:802
+#: ../../printerdrake.pm_.c:826
msgid ""
"To print on a NetWare printer, you need to provide the NetWare print server "
"name (Note! it may be different from its TCP/IP hostname!) as well as the "
@@ -7733,65 +7904,65 @@ msgstr ""
"serveru (Pozor! To me bt odlin od jeho jmna pro TCP/IP!), jmno "
"tiskov fronty tiskrny, kterou chcete pouvat, uivatelsk jmno a heslo."
-#: ../../printerdrake.pm_.c:803
+#: ../../printerdrake.pm_.c:827
msgid "Printer Server"
msgstr "Tiskov server"
-#: ../../printerdrake.pm_.c:804
+#: ../../printerdrake.pm_.c:828
msgid "Print Queue Name"
msgstr "Jmno tiskov fronty"
-#: ../../printerdrake.pm_.c:809
+#: ../../printerdrake.pm_.c:833
msgid "NCP server name missing!"
msgstr "Chyb jmno pro sdlen pes NCP!"
-#: ../../printerdrake.pm_.c:813
+#: ../../printerdrake.pm_.c:837
msgid "NCP queue name missing!"
msgstr "Chyb jmno tiskov fronty pro NCP!"
-#: ../../printerdrake.pm_.c:852
+#: ../../printerdrake.pm_.c:876
msgid "TCP/Socket Printer Options"
-msgstr "Monosti tiskrny pro TCP/socket"
+msgstr "Monosti tiskrny pro TCP/Socket"
-#: ../../printerdrake.pm_.c:853
+#: ../../printerdrake.pm_.c:877
msgid ""
"To print to a TCP or socket printer, you need to provide the host name of "
"the printer and optionally the port number. On HP JetDirect servers the port "
"number is usually 9100, on other servers it can vary. See the manual of your "
"hardware."
msgstr ""
-"Abyste mohli tisknout na TCP nebo socketov tiskrn, muste zadat jmno "
+"Abyste mohli tisknout na TCP nebo soketov tiskrn, muste zadat jmno "
"potae s tiskrnou a voliteln i slo portu. Pokud mte HP JetDirect, "
"port je obvykle 9100, jinak se me mnit. Podvejte do manulu k vaemu "
"hardware."
-#: ../../printerdrake.pm_.c:854
+#: ../../printerdrake.pm_.c:878
msgid "Printer host name"
msgstr "Jmno potae s tiskrnou"
-#: ../../printerdrake.pm_.c:858
+#: ../../printerdrake.pm_.c:882
msgid "Printer host name missing!"
msgstr "Chyb jmno potae s tiskrnou!"
-#: ../../printerdrake.pm_.c:887 ../../printerdrake.pm_.c:889
+#: ../../printerdrake.pm_.c:911 ../../printerdrake.pm_.c:913
msgid "Printer Device URI"
msgstr "URI Tiskovho Zazen"
-#: ../../printerdrake.pm_.c:888
+#: ../../printerdrake.pm_.c:912
msgid ""
"You can specify directly the URI to access the printer. The URI must fulfill "
"either the CUPS or the Foomatic specifications. Note that not all URI types "
"are supported by all the spoolers."
msgstr ""
"Zde lze pmo zadat URI pro pstup k tiskrn. URI mus splovat bu "
-"specifikaci CUPS nebo Foomatic. Taky pamatujte na to, e vechny URI nejsou "
+"specifikaci CUPS nebo Foomatic. Tak pamatujte na to, e vechny URI nejsou "
"podporovny ve vech tiskovch sprvcch."
-#: ../../printerdrake.pm_.c:903
+#: ../../printerdrake.pm_.c:927
msgid "A valid URI must be entered!"
msgstr "Mus bt zadno sprvn URI!"
-#: ../../printerdrake.pm_.c:1004
+#: ../../printerdrake.pm_.c:1028
msgid ""
"Every printer needs a name (for example \"printer\"). The Description and "
"Location fields do not need to be filled in. They are comments for the users."
@@ -7799,27 +7970,23 @@ msgstr ""
"Kad tiskrna potebuje jmno (nap. \"tiskarna\"). Popis a umstn nemus "
"bt vyplnny. Jsou to komente pouze pro uivatele."
-#: ../../printerdrake.pm_.c:1005
+#: ../../printerdrake.pm_.c:1029
msgid "Name of printer"
msgstr "Jmno tiskrny"
-#: ../../printerdrake.pm_.c:1006
-msgid "Description"
-msgstr "Popis"
-
-#: ../../printerdrake.pm_.c:1007
+#: ../../printerdrake.pm_.c:1031
msgid "Location"
msgstr "Umstn"
-#: ../../printerdrake.pm_.c:1021
-msgid "Preparing printer database ..."
+#: ../../printerdrake.pm_.c:1045
+msgid "Preparing printer database..."
msgstr "Natm databzi tiskren ..."
-#: ../../printerdrake.pm_.c:1112
+#: ../../printerdrake.pm_.c:1136
msgid "Your printer model"
msgstr "Model tiskrny"
-#: ../../printerdrake.pm_.c:1113
+#: ../../printerdrake.pm_.c:1137
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
@@ -7833,35 +8000,35 @@ msgid ""
"\n"
"%s"
msgstr ""
-"Printerdrake provedl porovnn modelu tiskrny, kter byl zjitn pi auto-"
-"detekci s modelem obsaenm v jeho databzi a nabdnul nejlep een. Tato "
+"PrinterDrake provedl porovnn modelu tiskrny, kter byl zjitn pi auto-"
+"detekci s modelem obsaenm v jeho databzi a nabdl nejlep een. Tato "
"volba me bt patn, zvlṻ pokud nen tiskrna obsaena v databzi. "
"Zkontrolujte, zda je volba sprvn a klepnte na \"Zvolen model je sprvn"
"\" a pokud nen, volte \"Vybrat model run\". V dal obrazovce potom bude "
"mon vybrat model tiskrny run.\n"
"\n"
-"Pro vai tiskrnu Printerdrake nalezl:\n"
+"Pro vai tiskrnu PrinterDrake nalezl:\n"
"\n"
"%s"
-#: ../../printerdrake.pm_.c:1118 ../../printerdrake.pm_.c:1121
+#: ../../printerdrake.pm_.c:1142 ../../printerdrake.pm_.c:1145
msgid "The model is correct"
msgstr "Zvolen model je sprvn"
-#: ../../printerdrake.pm_.c:1119 ../../printerdrake.pm_.c:1120
-#: ../../printerdrake.pm_.c:1123
+#: ../../printerdrake.pm_.c:1143 ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1147
msgid "Select model manually"
msgstr "Vybrat model run"
-#: ../../printerdrake.pm_.c:1139
+#: ../../printerdrake.pm_.c:1163
msgid "Printer model selection"
msgstr "Vbr modelu tiskrny"
-#: ../../printerdrake.pm_.c:1140
+#: ../../printerdrake.pm_.c:1164
msgid "Which printer model do you have?"
msgstr "Jak model tiskrny mte?"
-#: ../../printerdrake.pm_.c:1141
+#: ../../printerdrake.pm_.c:1165
msgid ""
"\n"
"\n"
@@ -7871,11 +8038,11 @@ msgid ""
msgstr ""
"\n"
"\n"
-"Zkontrolujte prosm, zda Printerdrake provedl automatickou detekci modelu "
+"Zkontrolujte prosm, zda PrinterDrake provedl automatickou detekci modelu "
"sprvn. Pokud je vyznaen nesprvn model, mete ho zmnit vbrem ze "
"seznamu nebo zvolte \"Raw printer\"."
-#: ../../printerdrake.pm_.c:1144
+#: ../../printerdrake.pm_.c:1168
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
@@ -7883,11 +8050,11 @@ msgstr ""
"Pokud nen tiskrna v seznamu, vyberte kompatibiln nebo podobn model "
"(podvejte se do manulu)"
-#: ../../printerdrake.pm_.c:1220
+#: ../../printerdrake.pm_.c:1244
msgid "OKI winprinter configuration"
msgstr "Nastaven pro OKI win-tiskrnu"
-#: ../../printerdrake.pm_.c:1221
+#: ../../printerdrake.pm_.c:1245
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
@@ -7902,11 +8069,11 @@ msgstr ""
"port, nebo se tiskne pes server, pipojte tiskrnu na prvn paraleln port. "
"Jinak tisk nebude pracovat. Typ pipojen bude ovlada ignorovat."
-#: ../../printerdrake.pm_.c:1264 ../../printerdrake.pm_.c:1291
+#: ../../printerdrake.pm_.c:1288 ../../printerdrake.pm_.c:1315
msgid "Lexmark inkjet configuration"
msgstr "Nastaven inkoustov tiskrny Lexmark"
-#: ../../printerdrake.pm_.c:1265
+#: ../../printerdrake.pm_.c:1289
msgid ""
"The inkjet printer drivers provided by Lexmark only support local printers, "
"no printers on remote machines or print server boxes. Please connect your "
@@ -7918,7 +8085,7 @@ msgstr ""
"tiskrnu na lokln port nebo ji nastavte na tom potai, ke ktermu bude "
"pipojena."
-#: ../../printerdrake.pm_.c:1292
+#: ../../printerdrake.pm_.c:1316
msgid ""
"To be able to print with your Lexmark inkjet and this configuration, you "
"need the inkjet printer drivers provided by Lexmark (http://www.lexmark."
@@ -7938,7 +8105,7 @@ msgstr ""
"odsouhlasen licence. Pak mete nastavit chovn tiskov hlavy pomoc "
"tohoto programu."
-#: ../../printerdrake.pm_.c:1508
+#: ../../printerdrake.pm_.c:1532
msgid ""
"Printer default settings\n"
"\n"
@@ -7954,22 +8121,22 @@ msgstr ""
"podava) jsou nastaveny sprvn. Pi tisku ve velmi vysok kvalit/rozlien "
"bude tisk zejm pomalej."
-#: ../../printerdrake.pm_.c:1517
+#: ../../printerdrake.pm_.c:1541
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Hodnota %s mus bt cel slo!"
-#: ../../printerdrake.pm_.c:1521
+#: ../../printerdrake.pm_.c:1545
#, c-format
msgid "Option %s must be a number!"
msgstr "Hodnota %s mus bt slo!"
-#: ../../printerdrake.pm_.c:1526
+#: ../../printerdrake.pm_.c:1550
#, c-format
msgid "Option %s out of range!"
msgstr "Hodnota %s je mimo rozsah!"
-#: ../../printerdrake.pm_.c:1565
+#: ../../printerdrake.pm_.c:1589
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
@@ -7978,11 +8145,11 @@ msgstr ""
"Chcete opravdu nastavit tiskrnu \"%s\"\n"
"jako vchoz?"
-#: ../../printerdrake.pm_.c:1582
+#: ../../printerdrake.pm_.c:1606
msgid "Test pages"
msgstr "Testovac strnka"
-#: ../../printerdrake.pm_.c:1583
+#: ../../printerdrake.pm_.c:1607
msgid ""
"Please select the test pages you want to print.\n"
"Note: the photo test page can take a rather long time to get printed and on "
@@ -7994,39 +8161,39 @@ msgstr ""
"se na tiskrn s mlo pamt nemus podait vbec. Ve vtin ppad sta "
"vytisknout bnou testovac strnku."
-#: ../../printerdrake.pm_.c:1587
+#: ../../printerdrake.pm_.c:1611
msgid "No test pages"
msgstr "Bez testovac strnky"
-#: ../../printerdrake.pm_.c:1588
+#: ../../printerdrake.pm_.c:1612
msgid "Print"
msgstr "Tisk"
-#: ../../printerdrake.pm_.c:1590
+#: ../../printerdrake.pm_.c:1614
msgid "Standard test page"
msgstr "Standardn testovac strnka"
-#: ../../printerdrake.pm_.c:1593
+#: ../../printerdrake.pm_.c:1617
msgid "Alternative test page (Letter)"
-msgstr "Alternativn testovac strnka (letter)"
+msgstr "Alternativn testovac strnka (Letter)"
-#: ../../printerdrake.pm_.c:1596
+#: ../../printerdrake.pm_.c:1620
msgid "Alternative test page (A4)"
msgstr "Alternativn testovac strnka (A4)"
-#: ../../printerdrake.pm_.c:1598
+#: ../../printerdrake.pm_.c:1622
msgid "Photo test page"
msgstr "Testovac strnka s fotografi"
-#: ../../printerdrake.pm_.c:1602
+#: ../../printerdrake.pm_.c:1626
msgid "Do not print any test page"
msgstr "Netisknout testovac strnku"
-#: ../../printerdrake.pm_.c:1610 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1634 ../../printerdrake.pm_.c:1786
msgid "Printing test page(s)..."
msgstr "Tisknu testovac strnku(y)"
-#: ../../printerdrake.pm_.c:1635
+#: ../../printerdrake.pm_.c:1659
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
@@ -8041,7 +8208,7 @@ msgstr ""
"%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1639
+#: ../../printerdrake.pm_.c:1663
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
@@ -8049,15 +8216,15 @@ msgstr ""
"Zkuebn strnka byl poslna na tiskrnu.\n"
"Me chvilku trvat ne zane tisk.\n"
-#: ../../printerdrake.pm_.c:1646
+#: ../../printerdrake.pm_.c:1670
msgid "Did it work properly?"
msgstr "Probhl tisk sprvn ?"
-#: ../../printerdrake.pm_.c:1667 ../../printerdrake.pm_.c:2732
+#: ../../printerdrake.pm_.c:1692 ../../printerdrake.pm_.c:2803
msgid "Raw printer"
msgstr "Pm tisk na tiskrnu"
-#: ../../printerdrake.pm_.c:1685
+#: ../../printerdrake.pm_.c:1718
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
@@ -8070,7 +8237,7 @@ msgstr ""
"<soubor>\". Grafick nstroje umouj jednodue vybrat tiskrny a mnit "
"jejich parametry.\n"
-#: ../../printerdrake.pm_.c:1687
+#: ../../printerdrake.pm_.c:1720
msgid ""
"These commands you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications, but here do not supply the file name "
@@ -8080,8 +8247,8 @@ msgstr ""
"vtin aplikac, ale nezadv se zde jmno souboru, kter je pokad jin v "
"zvislosti na dan aplikaci.\n"
-#: ../../printerdrake.pm_.c:1690 ../../printerdrake.pm_.c:1706
-#: ../../printerdrake.pm_.c:1716
+#: ../../printerdrake.pm_.c:1723 ../../printerdrake.pm_.c:1740
+#: ../../printerdrake.pm_.c:1750
#, c-format
msgid ""
"\n"
@@ -8094,18 +8261,18 @@ msgstr ""
"Jednodue zadejte potebn nastaven do pkazov dky, nap. \"%s<soubor>"
"\". "
-#: ../../printerdrake.pm_.c:1693 ../../printerdrake.pm_.c:1732
-#, c-format
+#: ../../printerdrake.pm_.c:1726 ../../printerdrake.pm_.c:1766
+#, fuzzy, c-format
msgid ""
"To know about the options available for the current printer read either the "
-"list shown below or click on the \"Print option list\" button.%s\n"
+"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
"Vechny monosti pro souasnou tiskrnu jsou zobrazeny ne, nebo kliknte "
"na tlatko \"Monosti tiskrny\".%s\n"
"\n"
-#: ../../printerdrake.pm_.c:1696
+#: ../../printerdrake.pm_.c:1730
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
@@ -8113,7 +8280,7 @@ msgstr ""
"Zde je seznam dostupnch voleb pro nastaven tisku pro aktuln tiskrnu:\n"
"\n"
-#: ../../printerdrake.pm_.c:1701 ../../printerdrake.pm_.c:1711
+#: ../../printerdrake.pm_.c:1735 ../../printerdrake.pm_.c:1745
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8122,8 +8289,8 @@ msgstr ""
"Pro vytitn souboru z pkazov dky (v terminlovm okn) pouijte "
"pkaz \"%s<soubor>\".\n"
-#: ../../printerdrake.pm_.c:1703 ../../printerdrake.pm_.c:1713
-#: ../../printerdrake.pm_.c:1723
+#: ../../printerdrake.pm_.c:1737 ../../printerdrake.pm_.c:1747
+#: ../../printerdrake.pm_.c:1757
msgid ""
"This command you can also use in the \"Printing command\" field of the "
"printing dialogs of many applications. But here do not supply the file name "
@@ -8133,7 +8300,7 @@ msgstr ""
"vtin aplikac, ale nezadv se zde jmno souboru, kter je pokad jin v "
"zvislosti na dan aplikaci.\n"
-#: ../../printerdrake.pm_.c:1708 ../../printerdrake.pm_.c:1718
+#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1752
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
@@ -8141,7 +8308,7 @@ msgstr ""
"Vechny monosti tisku pro souasnou tiskrnu jsou zobrazeny ne, nebo "
"kliknte na tlatko \"Monosti tiskrny\"."
-#: ../../printerdrake.pm_.c:1721
+#: ../../printerdrake.pm_.c:1755
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
@@ -8150,7 +8317,7 @@ msgstr ""
"Pro vytitn souboru z pkazov dky (v terminlovm okn) pouijte "
"pkaz \"%s<soubor>\" nebo \"%s<soubor>\".\n"
-#: ../../printerdrake.pm_.c:1725
+#: ../../printerdrake.pm_.c:1759
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
@@ -8165,7 +8332,7 @@ msgstr ""
"pojmenovanou \"STOP Printer!\", kter po kliknut ihned zastav "
"vechnytiskov lohy. To je vhodn teba pro ppady uvznut papru.\n"
-#: ../../printerdrake.pm_.c:1729
+#: ../../printerdrake.pm_.c:1763
#, c-format
msgid ""
"\n"
@@ -8178,38 +8345,49 @@ msgstr ""
"lohu. Jednodue zadejte potebn nastaven do pkazov dky, nap. \"%"
"s<soubor>\".\n"
-#: ../../printerdrake.pm_.c:1738 ../../printerdrake.pm_.c:1744
-#: ../../printerdrake.pm_.c:1745 ../../printerdrake.pm_.c:1746
-#: ../../printerdrake.pm_.c:2716 ../../standalone/drakbackup_.c:754
-#: ../../standalone/drakbackup_.c:2458 ../../standalone/drakfont_.c:577
-#: ../../standalone/drakfont_.c:791
-msgid "Close"
-msgstr "Zavt"
+#: ../../printerdrake.pm_.c:1773
+#, fuzzy, c-format
+msgid "Printing/Scanning/Photo Cards on \"%s\""
+msgstr "Tisknu/skenuji na \"%s\""
-#: ../../printerdrake.pm_.c:1741 ../../printerdrake.pm_.c:1753
+#: ../../printerdrake.pm_.c:1774
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Tisknu/skenuji na \"%s\""
-#: ../../printerdrake.pm_.c:1742 ../../printerdrake.pm_.c:1754
+#: ../../printerdrake.pm_.c:1776
+#, fuzzy, c-format
+msgid "Printing/Photo Card Access on \"%s\""
+msgstr "Tisknu/skenuji na \"%s\""
+
+#: ../../printerdrake.pm_.c:1777
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Tisknu na tiskrnu \"%s\""
-#: ../../printerdrake.pm_.c:1744
+#: ../../printerdrake.pm_.c:1780 ../../printerdrake.pm_.c:1783
+#: ../../printerdrake.pm_.c:1784 ../../printerdrake.pm_.c:1785
+#: ../../printerdrake.pm_.c:2787 ../../standalone/drakTermServ_.c:249
+#: ../../standalone/drakbackup_.c:1037 ../../standalone/drakbackup_.c:2868
+#: ../../standalone/drakbug_.c:107 ../../standalone/drakfont_.c:706
+#: ../../standalone/drakfont_.c:1015
+msgid "Close"
+msgstr "Zavt"
+
+#: ../../printerdrake.pm_.c:1783
msgid "Print option list"
msgstr "Monosti tiskrny"
-#: ../../printerdrake.pm_.c:1766
-#, c-format
+#: ../../printerdrake.pm_.c:1802
+#, fuzzy, c-format
msgid ""
"Your HP multi-function device was configured automatically to be able to "
"scan. Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify "
"the scanner when you have more than one) from the command line or with the "
"graphical interfaces \"xscanimage\" or \"xsane\". If you are using the GIMP, "
"you can also scan by choosing the appropriate point in the \"File\"/\"Acquire"
-"\" menu. Call also \"man scanimage\" and \"man sane-hp\" on the command line "
-"to get more information.\n"
+"\" menu. Call also \"man scanimage\" on the command line to get more "
+"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
@@ -8222,38 +8400,30 @@ msgstr ""
"\n"
"Nepouvejte pro toto zazen \"scannerdrake\"!"
-#: ../../printerdrake.pm_.c:1772
-#, c-format
+#: ../../printerdrake.pm_.c:1821
msgid ""
-"Your HP multi-function device was configured automatically to be able to "
-"scan. Now you can scan from the command line with \"ptal-hp %s scan ...\". "
-"Scanning via a graphical interface or from the GIMP is not supported yet for "
-"your device. More information you will find in the \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\" file on your system. If you have an HP LaserJet 1100 or "
-"1200 you can only scan when you have the scanner option installed.\n"
-"\n"
-"Do not use \"scannerdrake\" for this device!"
+"Your HP printer was configured automatically to give you access to the photo "
+"card drives from your PC. Now you can access your photo cards using the "
+"graphical program \"MtoolsFM\" (Menu: \"Applications\" -> \"File tools\" -> "
+"\"MTools File Manager\") or the command line utilities \"mtools\" (enter "
+"\"man mtools\" on the command line for more info). You find the card's file "
+"system under the drive letter \"p:\", or subsequent drive letters when you "
+"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
+"can switch between drive letters with the field at the upper-right corners "
+"of the file lists."
msgstr ""
-"Multifunkn zazen od HP bylo nastaveno pro monost skenovn. Nyn lze "
-"skenovat pkazem \"ptal-hp %s scan ...\" z pkazovho dku. Skenovn z "
-"grafickho prosted nebo z programu GIMP nen zatm na tomto zazen "
-"podporovno. Vce informac naleznete v souboru \"/usr/share/doc/hpoj-0.8/"
-"ptal-hp-scan.html\". Pokud mte HP LaserJet 1100 nebo 1200, lze skenovat "
-"pouze v ppad, e mte nainstalovnu podporu pro skenovn.\n"
-"\n"
-"Nepouvejte pro toto zazen \"scannerdrake\"!"
-#: ../../printerdrake.pm_.c:1794 ../../printerdrake.pm_.c:2221
-#: ../../printerdrake.pm_.c:2485 ../../standalone/printerdrake_.c:49
-msgid "Reading printer data ..."
+#: ../../printerdrake.pm_.c:1842 ../../printerdrake.pm_.c:2292
+#: ../../printerdrake.pm_.c:2556
+msgid "Reading printer data..."
msgstr "Natm data k tisku ..."
-#: ../../printerdrake.pm_.c:1814 ../../printerdrake.pm_.c:1842
-#: ../../printerdrake.pm_.c:1877
+#: ../../printerdrake.pm_.c:1862 ../../printerdrake.pm_.c:1890
+#: ../../printerdrake.pm_.c:1925
msgid "Transfer printer configuration"
msgstr "Penst konfiguraci tiskrny"
-#: ../../printerdrake.pm_.c:1815
+#: ../../printerdrake.pm_.c:1863
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
@@ -8268,7 +8438,7 @@ msgstr ""
"ale tiskov lohy nebudou peneseny.\n"
"Ne vechny fronty lze penst z nsledujch dvod:\n"
-#: ../../printerdrake.pm_.c:1818
+#: ../../printerdrake.pm_.c:1866
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
@@ -8276,7 +8446,7 @@ msgstr ""
"CUPS nepodporuje tiskrny na serverech Novell nebo tiskrny, kter poslaj "
"data na skupinu pkaz.\n"
-#: ../../printerdrake.pm_.c:1820
+#: ../../printerdrake.pm_.c:1868
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
@@ -8284,11 +8454,11 @@ msgstr ""
"PDQ podporuje pouze mstn tiskrny, vzdlen tiskrny LPD a tisk na "
"tiskrny pes sockety/TCP.\n"
-#: ../../printerdrake.pm_.c:1822
+#: ../../printerdrake.pm_.c:1870
msgid "LPD and LPRng do not support IPP printers.\n"
-msgstr "LPD ani LPRng nepodporuj IPP tiskrny.\n"
+msgstr "LPD ani LprNG nepodporuj IPP tiskrny.\n"
-#: ../../printerdrake.pm_.c:1824
+#: ../../printerdrake.pm_.c:1872
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
@@ -8296,7 +8466,7 @@ msgstr ""
"Tiskov fronty, kter nebyly vytvoeny tmto programem nebo pes \"foomatic-"
"configure\" nelze penst."
-#: ../../printerdrake.pm_.c:1825
+#: ../../printerdrake.pm_.c:1873
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
@@ -8306,7 +8476,7 @@ msgstr ""
"Tak tiskrny pouvajc PPD soubory od jejich vrobc nebo tiskrny s "
"nativnmi ovladai pro CUPS nelze penst."
-#: ../../printerdrake.pm_.c:1826
+#: ../../printerdrake.pm_.c:1874
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
@@ -8315,15 +8485,15 @@ msgstr ""
"\n"
"Oznate tiskrnu, kterou chcete penst a stisknte \"Penst\"."
-#: ../../printerdrake.pm_.c:1829
+#: ../../printerdrake.pm_.c:1877
msgid "Do not transfer printers"
msgstr "Nepenet tiskrny"
-#: ../../printerdrake.pm_.c:1830 ../../printerdrake.pm_.c:1847
+#: ../../printerdrake.pm_.c:1878 ../../printerdrake.pm_.c:1895
msgid "Transfer"
msgstr "Penst"
-#: ../../printerdrake.pm_.c:1843
+#: ../../printerdrake.pm_.c:1891
#, c-format
msgid ""
"A printer named \"%s\" already exists under %s. \n"
@@ -8332,13 +8502,13 @@ msgid ""
msgstr ""
"Tiskrna se jmnem \"%s\" ji na stran %s existuje.\n"
"Kliknte na \"Penst\" pro pepsn.\n"
-"Taky mete napsat nov jmno nebo ji peskoit."
+"Tak mete napsat nov jmno nebo ji peskoit."
-#: ../../printerdrake.pm_.c:1851
+#: ../../printerdrake.pm_.c:1899
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr "Jmno fronty me obsahovat pouze psmena, slice a podtrtko"
-#: ../../printerdrake.pm_.c:1856
+#: ../../printerdrake.pm_.c:1904
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
@@ -8347,16 +8517,16 @@ msgstr ""
"Tiskrna se jmnem %s ji existuje,\n"
"chcete opravdu pepsat jej konfiguraci?"
-#: ../../printerdrake.pm_.c:1864
+#: ../../printerdrake.pm_.c:1912
msgid "New printer name"
msgstr "Nov jmno tiskrny"
-#: ../../printerdrake.pm_.c:1867
+#: ../../printerdrake.pm_.c:1915
#, c-format
-msgid "Transferring %s ..."
+msgid "Transferring %s..."
msgstr "Penm %s ..."
-#: ../../printerdrake.pm_.c:1878
+#: ../../printerdrake.pm_.c:1926
#, c-format
msgid ""
"You have transferred your former default printer (\"%s\"), Should it be also "
@@ -8365,29 +8535,29 @@ msgstr ""
"Byla penesena vchoz tiskrna (\"%s\"). M se nastavit jako vchoz tak "
"na vzdlenm tiskovm systmu %s?"
-#: ../../printerdrake.pm_.c:1887
-msgid "Refreshing printer data ..."
+#: ../../printerdrake.pm_.c:1935
+msgid "Refreshing printer data..."
msgstr "Oberstvuji tiskov data ...."
-#: ../../printerdrake.pm_.c:1895 ../../printerdrake.pm_.c:1966
-#: ../../printerdrake.pm_.c:1978
+#: ../../printerdrake.pm_.c:1943 ../../printerdrake.pm_.c:2014
+#: ../../printerdrake.pm_.c:2026
msgid "Configuration of a remote printer"
msgstr "Nastaven vzdlen tiskrny"
-#: ../../printerdrake.pm_.c:1896
-msgid "Starting network ..."
+#: ../../printerdrake.pm_.c:1944
+msgid "Starting network..."
msgstr "Spoutm s ...."
-#: ../../printerdrake.pm_.c:1930 ../../printerdrake.pm_.c:1934
-#: ../../printerdrake.pm_.c:1936
+#: ../../printerdrake.pm_.c:1978 ../../printerdrake.pm_.c:1982
+#: ../../printerdrake.pm_.c:1984
msgid "Configure the network now"
msgstr "Nastavit s nyn"
-#: ../../printerdrake.pm_.c:1931
+#: ../../printerdrake.pm_.c:1979
msgid "Network functionality not configured"
msgstr "S nen nastavena"
-#: ../../printerdrake.pm_.c:1932
+#: ../../printerdrake.pm_.c:1980
msgid ""
"You are going to configure a remote printer. This needs working network "
"access, but your network is not configured yet. If you go on without network "
@@ -8398,11 +8568,11 @@ msgstr ""
"spojen, ale s nen zatm nastavena. Pokud budete pokraovat bez nastaven "
"st, nebude mon pout tiskrnu, kterou poadujete. Jak chcete pokraovat?"
-#: ../../printerdrake.pm_.c:1935
+#: ../../printerdrake.pm_.c:1983
msgid "Go on without configuring the network"
msgstr "Pokraovat bez nastaven st"
-#: ../../printerdrake.pm_.c:1968
+#: ../../printerdrake.pm_.c:2016
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8416,7 +8586,7 @@ msgstr ""
"Mandrake, v sekci \"S a Internet\"/\"Pipojen\" a nsledn nastavte "
"tiskrnu tak v dcm centru v sekci \"Hardware\"/\"Tiskrna\""
-#: ../../printerdrake.pm_.c:1969
+#: ../../printerdrake.pm_.c:2017
msgid ""
"The network access was not running and could not be started. Please check "
"your configuration and your hardware. Then try to configure your remote "
@@ -8425,24 +8595,24 @@ msgstr ""
"S nefunguje a nelze ji spustit. Prosm zkontrolujte nastaven hardware. "
"Pak se opt pokuste provst nastaven vzdlen tiskrny."
-#: ../../printerdrake.pm_.c:1979
-msgid "Restarting printing system ..."
+#: ../../printerdrake.pm_.c:2027
+msgid "Restarting printing system..."
msgstr "Restartuji tiskov systm ..."
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "high"
msgstr "vysok"
-#: ../../printerdrake.pm_.c:2017
+#: ../../printerdrake.pm_.c:2065
msgid "paranoid"
msgstr "paranoidn"
-#: ../../printerdrake.pm_.c:2018
+#: ../../printerdrake.pm_.c:2066
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instaluji tiskov systm v bezpenostn rovni %s"
-#: ../../printerdrake.pm_.c:2019
+#: ../../printerdrake.pm_.c:2067
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
@@ -8456,7 +8626,7 @@ msgid ""
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
-"Pokoute se instalovat tiskov systm %s na pota, bec v bezpenost "
+"Pokoute se instalovat tiskov systm %s na pota, bc v bezpenost "
"rovni %s.\n"
"\n"
"Tiskov systm pracuje jako dmon (proces na pozad), kter ek na tiskov "
@@ -8467,11 +8637,11 @@ msgstr ""
"\n"
"Chcete opravdu nastavit tiskov systm na tomto potai?"
-#: ../../printerdrake.pm_.c:2051
+#: ../../printerdrake.pm_.c:2099
msgid "Starting the printing system at boot time"
msgstr "Spustit tiskov systm pi startu systmu"
-#: ../../printerdrake.pm_.c:2052
+#: ../../printerdrake.pm_.c:2100
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
@@ -8491,63 +8661,63 @@ msgstr ""
"\n"
"Chcete nastavit zpt automatick start tiskovho systmu?"
-#: ../../printerdrake.pm_.c:2075 ../../printerdrake.pm_.c:2113
-#: ../../printerdrake.pm_.c:2143 ../../printerdrake.pm_.c:2176
-#: ../../printerdrake.pm_.c:2281
+#: ../../printerdrake.pm_.c:2123 ../../printerdrake.pm_.c:2163
+#: ../../printerdrake.pm_.c:2200 ../../printerdrake.pm_.c:2240
+#: ../../printerdrake.pm_.c:2352
msgid "Checking installed software..."
msgstr "Ovuj nainstalovan software..."
-#: ../../printerdrake.pm_.c:2117
+#: ../../printerdrake.pm_.c:2167
msgid "Removing LPRng..."
-msgstr "Odebrm LPRng..."
+msgstr "Odebrm LprNG..."
-#: ../../printerdrake.pm_.c:2147
+#: ../../printerdrake.pm_.c:2204
msgid "Removing LPD..."
msgstr "Odebrm LPD..."
-#: ../../printerdrake.pm_.c:2205
+#: ../../printerdrake.pm_.c:2276
msgid "Select Printer Spooler"
msgstr "Zvolte tiskov systm pro tiskrnu"
-#: ../../printerdrake.pm_.c:2206
+#: ../../printerdrake.pm_.c:2277
msgid "Which printing system (spooler) do you want to use?"
msgstr "Kter tiskov systm chcete pout pro tisk?"
-#: ../../printerdrake.pm_.c:2239
+#: ../../printerdrake.pm_.c:2310
#, c-format
-msgid "Configuring printer \"%s\" ..."
+msgid "Configuring printer \"%s\"..."
msgstr "Nastavuji tiskrnu \"%s\"..."
-#: ../../printerdrake.pm_.c:2252
-msgid "Installing Foomatic ..."
+#: ../../printerdrake.pm_.c:2323
+msgid "Installing Foomatic..."
msgstr "Instaluji Foomatic ..."
-#: ../../printerdrake.pm_.c:2309 ../../printerdrake.pm_.c:2348
-#: ../../printerdrake.pm_.c:2733 ../../printerdrake.pm_.c:2803
+#: ../../printerdrake.pm_.c:2380 ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2804 ../../printerdrake.pm_.c:2874
msgid "Printer options"
msgstr "Monosti tiskrny"
-#: ../../printerdrake.pm_.c:2318
-msgid "Preparing PrinterDrake ..."
+#: ../../printerdrake.pm_.c:2389
+msgid "Preparing PrinterDrake..."
msgstr "Pipravuji PrinterDrake ...."
-#: ../../printerdrake.pm_.c:2335 ../../printerdrake.pm_.c:2890
+#: ../../printerdrake.pm_.c:2406 ../../printerdrake.pm_.c:2961
msgid "Configuring applications..."
msgstr "Nastavovn aplikac..."
-#: ../../printerdrake.pm_.c:2355
+#: ../../printerdrake.pm_.c:2426
msgid "Would you like to configure printing?"
msgstr "Chtli byste nastavit tiskrnu?"
-#: ../../printerdrake.pm_.c:2367
+#: ../../printerdrake.pm_.c:2438
msgid "Printing system: "
msgstr "Tiskov systm: "
-#: ../../printerdrake.pm_.c:2415
+#: ../../printerdrake.pm_.c:2486
msgid "Printerdrake"
-msgstr "Printerdrake"
+msgstr "PrinterDrake"
-#: ../../printerdrake.pm_.c:2419
+#: ../../printerdrake.pm_.c:2490
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; to view information about it; "
@@ -8559,7 +8729,7 @@ msgstr ""
"nastavit na vzdlenm CUPS serveru pro vyuit v aplikaci Star Office/"
"OpenOffice.org."
-#: ../../printerdrake.pm_.c:2420
+#: ../../printerdrake.pm_.c:2491
msgid ""
"The following printers are configured. Double-click on a printer to change "
"its settings; to make it the default printer; or to view information about "
@@ -8568,28 +8738,32 @@ msgstr ""
"Jsou nastaveny nsledujc tiskrny. Dvojitm kliknutm na kadou z nich je "
"mon je modifikovat, nastavit jako vchoz nebo o nich zskat informace."
-#: ../../printerdrake.pm_.c:2446
+#: ../../printerdrake.pm_.c:2517
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr "Obnovit seznam tiskren (pro zskn vech vzdlench CUPS tiskren)"
-#: ../../printerdrake.pm_.c:2464
+#: ../../printerdrake.pm_.c:2535
msgid "Change the printing system"
msgstr "Zmna tiskovho systmu"
-#: ../../printerdrake.pm_.c:2469 ../../standalone/draknet_.c:278
+#: ../../printerdrake.pm_.c:2540 ../../standalone/drakconnect_.c:278
msgid "Normal Mode"
msgstr "Normn reim"
-#: ../../printerdrake.pm_.c:2625 ../../printerdrake.pm_.c:2675
-#: ../../printerdrake.pm_.c:2884
+#: ../../printerdrake.pm_.c:2544 ../../standalone/logdrake_.c:225
+msgid "Quit"
+msgstr "Konec"
+
+#: ../../printerdrake.pm_.c:2696 ../../printerdrake.pm_.c:2746
+#: ../../printerdrake.pm_.c:2955
msgid "Do you want to configure another printer?"
msgstr "Chcete nastavit dal tiskrnu?"
-#: ../../printerdrake.pm_.c:2711
+#: ../../printerdrake.pm_.c:2782
msgid "Modify printer configuration"
msgstr "Zmnit nastaven tiskrny"
-#: ../../printerdrake.pm_.c:2713
+#: ../../printerdrake.pm_.c:2784
#, c-format
msgid ""
"Printer %s\n"
@@ -8598,104 +8772,104 @@ msgstr ""
"Tiskrna %s\n"
"Co chcete zmnit na tto tiskrn?"
-#: ../../printerdrake.pm_.c:2717
+#: ../../printerdrake.pm_.c:2788
msgid "Do it!"
msgstr "Provst!"
-#: ../../printerdrake.pm_.c:2722 ../../printerdrake.pm_.c:2777
+#: ../../printerdrake.pm_.c:2793 ../../printerdrake.pm_.c:2848
msgid "Printer connection type"
msgstr "Typ pipojen pro tiskrnu"
-#: ../../printerdrake.pm_.c:2723 ../../printerdrake.pm_.c:2781
+#: ../../printerdrake.pm_.c:2794 ../../printerdrake.pm_.c:2852
msgid "Printer name, description, location"
msgstr "Jmno tiskrny, popis, umstn"
-#: ../../printerdrake.pm_.c:2725 ../../printerdrake.pm_.c:2796
+#: ../../printerdrake.pm_.c:2796 ../../printerdrake.pm_.c:2867
msgid "Printer manufacturer, model, driver"
msgstr "Vrobce tiskrny, model, ovlada"
-#: ../../printerdrake.pm_.c:2726 ../../printerdrake.pm_.c:2797
+#: ../../printerdrake.pm_.c:2797 ../../printerdrake.pm_.c:2868
msgid "Printer manufacturer, model"
msgstr "Vrobce tiskrny, model"
-#: ../../printerdrake.pm_.c:2735 ../../printerdrake.pm_.c:2807
+#: ../../printerdrake.pm_.c:2806 ../../printerdrake.pm_.c:2878
msgid "Set this printer as the default"
msgstr "Nastavit tuto tiskrnu jako vchoz"
-#: ../../printerdrake.pm_.c:2737 ../../printerdrake.pm_.c:2812
+#: ../../printerdrake.pm_.c:2808 ../../printerdrake.pm_.c:2883
msgid "Add this printer to Star Office/OpenOffice.org"
msgstr "Pidat tuto tiskrnu do Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2738 ../../printerdrake.pm_.c:2821
+#: ../../printerdrake.pm_.c:2809 ../../printerdrake.pm_.c:2892
msgid "Remove this printer from Star Office/OpenOffice.org"
msgstr "Odebrat tiskrnu ze Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2739 ../../printerdrake.pm_.c:2830
+#: ../../printerdrake.pm_.c:2810 ../../printerdrake.pm_.c:2901
msgid "Print test pages"
-msgstr "Tisk testovac(ch) strnky(nek)"
+msgstr "Tisk testovacch strnek"
-#: ../../printerdrake.pm_.c:2740 ../../printerdrake.pm_.c:2832
+#: ../../printerdrake.pm_.c:2811 ../../printerdrake.pm_.c:2903
msgid "Know how to use this printer"
msgstr "Npovda pro tisk na tto tiskrn"
-#: ../../printerdrake.pm_.c:2742 ../../printerdrake.pm_.c:2834
+#: ../../printerdrake.pm_.c:2813 ../../printerdrake.pm_.c:2905
msgid "Remove printer"
msgstr "Odebrat tiskrnu"
-#: ../../printerdrake.pm_.c:2786
+#: ../../printerdrake.pm_.c:2857
#, c-format
-msgid "Removing old printer \"%s\" ..."
-msgstr "Odebrm starou tiskrnu \"%s\" ..."
+msgid "Removing old printer \"%s\"..."
+msgstr "Odebrm starou tiskrnu \"%s\"..."
-#: ../../printerdrake.pm_.c:2810
+#: ../../printerdrake.pm_.c:2881
msgid "Default printer"
msgstr "Vchoz tiskrna"
-#: ../../printerdrake.pm_.c:2811
+#: ../../printerdrake.pm_.c:2882
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Tiskrna \"%s\" je nyn nastavena jako vchoz."
-#: ../../printerdrake.pm_.c:2815 ../../printerdrake.pm_.c:2818
+#: ../../printerdrake.pm_.c:2886 ../../printerdrake.pm_.c:2889
msgid "Adding printer to Star Office/OpenOffice.org"
msgstr "Pidvm tiskrnu do Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2816
+#: ../../printerdrake.pm_.c:2887
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org."
msgstr "Tiskrna \"%s\" byla spn pidna do Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2819
+#: ../../printerdrake.pm_.c:2890
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org."
msgstr "Pidn tiskrny \"%s\" do Star Office/OpenOffice.org se nezdailo."
-#: ../../printerdrake.pm_.c:2824 ../../printerdrake.pm_.c:2827
+#: ../../printerdrake.pm_.c:2895 ../../printerdrake.pm_.c:2898
msgid "Removing printer from Star Office/OpenOffice.org"
msgstr "Odebrm tiskrnu ze Star Office/OpenOffice.org"
-#: ../../printerdrake.pm_.c:2825
+#: ../../printerdrake.pm_.c:2896
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org."
msgstr ""
"Tiskrna \"%s\" byla spn odebrna z aplikace Star Office/OpenOffice.org."
-#: ../../printerdrake.pm_.c:2828
+#: ../../printerdrake.pm_.c:2899
#, c-format
msgid "Failed to remove the printer \"%s\" from Star Office/OpenOffice.org."
msgstr "Odebrn tiskrny \"%s\" ze Star Office/OpenOffice.org se nezdailo."
-#: ../../printerdrake.pm_.c:2836
+#: ../../printerdrake.pm_.c:2907
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Chcete opravdu odebrat tiskrnu \"%s\"?"
-#: ../../printerdrake.pm_.c:2838
+#: ../../printerdrake.pm_.c:2909
#, c-format
-msgid "Removing printer \"%s\" ..."
-msgstr "Odebrm tiskrnu \"%s\" ..."
+msgid "Removing printer \"%s\"..."
+msgstr "Odebrm tiskrnu \"%s\"..."
#: ../../proxy.pm_.c:29 ../../proxy.pm_.c:37 ../../proxy.pm_.c:58
#: ../../proxy.pm_.c:78
@@ -8779,24 +8953,62 @@ msgstr "Hesla nejsou shodn. Zkuste to znovu!"
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Nemu pidat oddl do _naformtovanho_ RAID md%d"
-#: ../../raid.pm_.c:111
+#: ../../raid.pm_.c:108
#, c-format
msgid "Can't write file %s"
msgstr "Nemu zapsat soubor %s"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed"
msgstr "mkraid neuspl"
-#: ../../raid.pm_.c:136
+#: ../../raid.pm_.c:137
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid neuspl (mon, e chyb raidtools?)"
-#: ../../raid.pm_.c:152
+#: ../../raid.pm_.c:153
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nen dostatek oddl pro RAID rovn %d\n"
+#: ../../security/msec.pm_.c:144
+#, fuzzy
+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 ""
+"Tato rove mus bt pouita s rozmyslem. Sice mete snadnji pouvat "
+"svj\n"
+"systm, ale na druhou stranu je velmi citliv: Nesm bt pouit pro\n"
+"pota pipojen k Internetu. Pro pihlen nen zapoteb dn heslo."
+
+#: ../../security/msec.pm_.c:150
+#, fuzzy
+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 ""
+"S touto bezpenostn rovn je mon pouvat systm jako server.\n"
+"Bezpenost je nyn dostaten vysok, aby bylo mon pouvat systm jako "
+"server, ke ktermu\n"
+"je mon pipojit mnoho klient. Poznmka: pokud je pota pouvn pouze "
+"jako klient pro pipojen k Internetu, je lep zvolit ni rove."
+
+#: ../../security/msec.pm_.c:169 ../../standalone/drakfont_.c:680
+msgid "Advanced Options"
+msgstr "Rozen volby"
+
+#: ../../security/msec.pm_.c:199
+#, fuzzy
+msgid "Basic Options"
+msgstr "Volby"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Spustit zvukov systm ALSA (Advanced Linux Sound Architecture)"
@@ -8851,7 +9063,7 @@ msgstr ""
"HardDrake testuje hardware a umouje nov/zmnn\n"
"hardware nastavit"
-#: ../../services.pm_.c:28 ../../standalone/logdrake_.c:412
+#: ../../services.pm_.c:28
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr "Apache je WWW server. Je pouvn k poskytovn HTML a CGI soubor."
@@ -8924,7 +9136,7 @@ msgstr ""
"Linux Virtual Server pouvan pro sestaven vysoce vkonnho\n"
"a dostupnho serveru."
-#: ../../services.pm_.c:47 ../../standalone/logdrake_.c:413
+#: ../../services.pm_.c:47
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9001,7 +9213,7 @@ msgstr ""
"a NIS. Portmap server mus bt sputn na potach, kter funguj jako\n"
"servery pro protokoly, kter pouvaj mechanismus RPC."
-#: ../../services.pm_.c:66 ../../standalone/logdrake_.c:415
+#: ../../services.pm_.c:66
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
@@ -9055,7 +9267,7 @@ msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
-"Protokol rwho umouje vzdlenm(remote) uivatelm zskat seznam\n"
+"Protokol rwho umouje vzdlenm uivatelm zskat seznam\n"
"vech uivatel pihlench na potai s dmonem rwho (je to podobn\n"
"slub finger)."
@@ -9096,7 +9308,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Sdlen soubor"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:934
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1222
msgid "System"
msgstr "Systm"
@@ -9111,7 +9323,7 @@ msgstr "Databzov servery"
#: ../../services.pm_.c:170
#, c-format
msgid "Services: %d activated for %d registered"
-msgstr "Skuby: aktivovno %d z %d registrovanch"
+msgstr "Sluby: aktivovno %d z %d registrovanch"
#: ../../services.pm_.c:186
msgid "Services"
@@ -9135,7 +9347,7 @@ msgid ""
"about this service, sorry."
msgstr ""
"Nejsou dn dal\n"
-"informace o slub, sorry."
+"informace o slub, promite."
#: ../../services.pm_.c:224
msgid "On boot"
@@ -9225,6 +9437,7 @@ msgstr ""
"GNU gcc kompiltor a dal prostedky na vvoj Open Source aplikac"
#: ../../share/advertising/05-contcenter.pl_.c:9
+#: ../../standalone/drakbug_.c:49
msgid "Mandrake Control Center"
msgstr "dc centrum Mandrake"
@@ -9285,7 +9498,7 @@ msgid ""
msgstr ""
"Chcete se dozvdt o Linuxu jednoduchou, rychlou a snadnou cestou? "
"Poskytujeme zdarma kolen Linuxu, stejn jako testy vaich znalost "
-"prostednictvm online kolcho centra MandrakeCampus"
+"prostednictvm on-line kolcho centra MandrakeCampus"
#: ../../share/advertising/10-MDKexpert.pl_.c:9
msgid "MandrakeExpert"
@@ -9346,6 +9559,15 @@ msgstr "http://www.mandrakesoft.com/sales/contact"
msgid "Installing packages..."
msgstr "Instaluji balky..."
+#: ../../standalone/XFdrake_.c:131
+msgid "Please log out and then use Ctrl-Alt-BackSpace"
+msgstr "Prosm odhlaste se a pak stisknte Ctrl-Alt-Backspace"
+
+#: ../../standalone/XFdrake_.c:135
+#, c-format
+msgid "Please relog into %s to activate the changes"
+msgstr "Pro aktivaci zmn se prosm znovu pihlaste na %s"
+
#: ../../standalone/diskdrake_.c:85
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -9354,6 +9576,145 @@ msgstr ""
"Nemu pest vai tabulku oddl, mon je pli naruen :(\n"
"Pokusm se pokraovat v itn patnch oddl"
+#: ../../standalone/drakTermServ_.c:189
+msgid "Mandrake Terminal Server Configuration"
+msgstr "Nastaven Mandrake Terminal Server"
+
+#: ../../standalone/drakTermServ_.c:204
+msgid "Enable Server"
+msgstr "Zapnout server"
+
+#: ../../standalone/drakTermServ_.c:211
+msgid "Disable Server"
+msgstr "Vypnout server"
+
+#: ../../standalone/drakTermServ_.c:219
+msgid "Start Server"
+msgstr "Spustit server"
+
+#: ../../standalone/drakTermServ_.c:226
+msgid "Stop Server"
+msgstr "Zastavit server"
+
+#: ../../standalone/drakTermServ_.c:234
+msgid "Etherboot Floppy/ISO"
+msgstr "Disketa Etherboot/ISO"
+
+#: ../../standalone/drakTermServ_.c:236
+msgid "Net Boot Images"
+msgstr "Startovac image ze st"
+
+#: ../../standalone/drakTermServ_.c:240
+msgid "Add/Del Users"
+msgstr "Pidat/Odebrat uivatele"
+
+#: ../../standalone/drakTermServ_.c:242
+msgid "Add/Del Clients"
+msgstr "Pidat/Odebrat klienty"
+
+#: ../../standalone/drakTermServ_.c:247 ../../standalone/drakbackup_.c:2635
+#: ../../standalone/drakbackup_.c:2666 ../../standalone/drakbackup_.c:2687
+#: ../../standalone/drakbackup_.c:2710 ../../standalone/drakbackup_.c:2737
+#: ../../standalone/drakbackup_.c:2776 ../../standalone/drakbackup_.c:2797
+#: ../../standalone/drakbackup_.c:2824 ../../standalone/drakbackup_.c:2848
+#: ../../standalone/drakbackup_.c:2870 ../../standalone/drakfont_.c:701
+msgid "Help"
+msgstr "Npovda"
+
+#: ../../standalone/drakTermServ_.c:434
+msgid "Boot Floppy"
+msgstr "Spoutc disketa"
+
+#: ../../standalone/drakTermServ_.c:436
+msgid "Boot ISO"
+msgstr "Spoutc ISO"
+
+#: ../../standalone/drakTermServ_.c:505
+msgid "Build Whole Kernel -->"
+msgstr "Sestavit cel jdro -->"
+
+#: ../../standalone/drakTermServ_.c:507 ../../standalone/drakTermServ_.c:537
+msgid "This will take a few minutes."
+msgstr "Bude to trvat nkolik minut."
+
+#: ../../standalone/drakTermServ_.c:519
+msgid "No kernel selected!"
+msgstr "Nebylo zvoleno dn jdro!"
+
+#: ../../standalone/drakTermServ_.c:522
+msgid "Build Single NIC -->"
+msgstr "Sestavit jedinou NIC -->"
+
+#: ../../standalone/drakTermServ_.c:533
+msgid "No nic selected!"
+msgstr "Nen zvolena dn NIC!"
+
+#: ../../standalone/drakTermServ_.c:536
+msgid "Build All Kernels -->"
+msgstr "Sestavit vechna jdra -->"
+
+#: ../../standalone/drakTermServ_.c:550
+msgid "<-- Delete"
+msgstr "<-- Smazat"
+
+#: ../../standalone/drakTermServ_.c:557
+msgid "Delete All NBIs"
+msgstr "Smazat vechny NBI"
+
+#: ../../standalone/drakTermServ_.c:619
+msgid "Add User -->"
+msgstr "Pidat uivatele -->"
+
+#: ../../standalone/drakTermServ_.c:627
+msgid "<-- Del User"
+msgstr "<-- Odebrat uivatele"
+
+#: ../../standalone/drakTermServ_.c:701
+msgid "Add Client -->"
+msgstr "Pidat klienta -->"
+
+#: ../../standalone/drakTermServ_.c:733
+msgid "<-- Del Client"
+msgstr "<-- Odebrat klienta"
+
+#: ../../standalone/drakTermServ_.c:739
+msgid "dhcpd Config..."
+msgstr "Nastaven dhcpd..."
+
+#: ../../standalone/drakTermServ_.c:886
+msgid "Write Config"
+msgstr "Zapsat nastaven"
+
+#: ../../standalone/drakTermServ_.c:944
+msgid "Please insert floppy disk:"
+msgstr "Prosm vlote disketu:"
+
+#: ../../standalone/drakTermServ_.c:948
+msgid "Couldn't access the floppy!"
+msgstr "Nelze pracovat s disketou!"
+
+#: ../../standalone/drakTermServ_.c:950
+msgid "Floppy can be removed now"
+msgstr "Disketu nyn mete vyjmout"
+
+#: ../../standalone/drakTermServ_.c:953
+msgid "No floppy drive available!"
+msgstr "Nen dostupn dn disketov mechanika!"
+
+#: ../../standalone/drakTermServ_.c:962
+#, c-format
+msgid "Etherboot ISO image is %s"
+msgstr "ISO image pro Etherboot je %s"
+
+#: ../../standalone/drakTermServ_.c:964
+#, fuzzy
+msgid "Something went wrong! - Is mkisofs installed?"
+msgstr "Nco neprobhlo sprvn!"
+
+#: ../../standalone/drakTermServ_.c:983
+msgid "Need to create /etc/dhcpd.conf first!"
+msgstr "Je nutn nejprve vytvoit soubor /etc/dhcpd.conf!"
+
#: ../../standalone/drakautoinst_.c:45
msgid "Error!"
msgstr "Chyba!"
@@ -9404,6 +9765,10 @@ msgstr ""
"Vyberte prosm, kter z krok instalace m bt proveden automaticky stejn "
"jako instalan program nebo bude run zadn"
+#: ../../standalone/drakautoinst_.c:83
+msgid "Creating auto install floppy"
+msgstr "Vytvm disketu pro automatickou instalaci"
+
#: ../../standalone/drakautoinst_.c:145
msgid ""
"\n"
@@ -9416,12 +9781,12 @@ msgstr ""
"\n"
"Parametry pro automatickou instalaci jsou pstupn v sekci nalevo"
-#: ../../standalone/drakautoinst_.c:243 ../../standalone/drakgw_.c:671
+#: ../../standalone/drakautoinst_.c:240 ../../standalone/drakgw_.c:550
#: ../../standalone/scannerdrake_.c:106
msgid "Congratulations!"
msgstr "Gratuluji!"
-#: ../../standalone/drakautoinst_.c:244
+#: ../../standalone/drakautoinst_.c:241
msgid ""
"The floppy has been successfully generated.\n"
"You may now replay your installation."
@@ -9429,28 +9794,19 @@ msgstr ""
"Disketa byla s spchem vytvoena.\n"
"Nyn lze provst znovu instalaci."
-#: ../../standalone/drakautoinst_.c:282
+#: ../../standalone/drakautoinst_.c:279
msgid "Auto Install"
msgstr "Automatick instalace"
-#: ../../standalone/drakautoinst_.c:352
+#: ../../standalone/drakautoinst_.c:349
msgid "Add an item"
msgstr "Pidat poloku"
-#: ../../standalone/drakautoinst_.c:359
+#: ../../standalone/drakautoinst_.c:356
msgid "Remove the last item"
msgstr "Odstranit posledn poloku"
-#: ../../standalone/drakbackup_.c:448 ../../standalone/drakbackup_.c:451
-#: ../../standalone/drakbackup_.c:455
-msgid ""
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:449
+#: ../../standalone/drakbackup_.c:599
msgid ""
"\n"
" DrakBackup Report \n"
@@ -9460,7 +9816,7 @@ msgstr ""
" Report programu DrackBackup \n"
"\n"
-#: ../../standalone/drakbackup_.c:450
+#: ../../standalone/drakbackup_.c:600
msgid ""
"\n"
" DrakBackup Daemon Report\n"
@@ -9472,19 +9828,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:453
-msgid ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-msgstr ""
-"\n"
-"\n"
-"***********************************************************************\n"
-"\n"
-
-#: ../../standalone/drakbackup_.c:454
+#: ../../standalone/drakbackup_.c:604
msgid ""
"\n"
" DrakBackup Report Details\n"
@@ -9496,62 +9840,86 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:476
+#: ../../standalone/drakbackup_.c:626 ../../standalone/drakbackup_.c:642
msgid "total progess"
msgstr "celkov prbh"
-#: ../../standalone/drakbackup_.c:555 ../../standalone/drakbackup_.c:602
+#: ../../standalone/drakbackup_.c:751 ../../standalone/drakbackup_.c:795
msgid "Backup system files..."
msgstr "Zlohovat systmov soubory..."
-#: ../../standalone/drakbackup_.c:603 ../../standalone/drakbackup_.c:667
+#: ../../standalone/drakbackup_.c:796 ../../standalone/drakbackup_.c:858
msgid "Hard Disk Backup files..."
msgstr "Zlon soubory pevnho disku..."
-#: ../../standalone/drakbackup_.c:615
+#: ../../standalone/drakbackup_.c:808
msgid "Backup User files..."
msgstr "Zlohovat soubory uivatel..."
-#: ../../standalone/drakbackup_.c:616
+#: ../../standalone/drakbackup_.c:809
msgid "Hard Disk Backup Progress..."
msgstr "Prbh zlohovn na pevn disk... "
-#: ../../standalone/drakbackup_.c:666
+#: ../../standalone/drakbackup_.c:857
msgid "Backup Other files..."
msgstr "Zlohovat dal soubory..."
-#: ../../standalone/drakbackup_.c:674
+#: ../../standalone/drakbackup_.c:871 ../../standalone/drakbackup_.c:895
#, c-format
msgid ""
-"file list send by FTP : %s\n"
+"\n"
+"Drakbackup activities via %s:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:880
+#, fuzzy, c-format
+msgid ""
+"file list sent by FTP : %s\n"
" "
msgstr ""
"seznam soubor poslan na FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:677
+#: ../../standalone/drakbackup_.c:883
+#, fuzzy
msgid ""
"\n"
-"(!) FTP connexion problem: It was not possible to send your backup files by "
+" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
"\n"
-"(!) Problmy FTP spojen: nebylo mon poslat data pro zlohu pes FTP.\n"
+" Problmy FTP spojen: Nebylo mon poslat vae soubory se zlohou pes "
+"FTP.\n"
-#: ../../standalone/drakbackup_.c:687
-msgid "(!) Error during mail sending. \n"
-msgstr "(!) Chyba pi posln poty. \n"
+#: ../../standalone/drakbackup_.c:900
+msgid ""
+"\n"
+"Drakbackup activities via CD:\n"
+"\n"
+msgstr ""
-#: ../../standalone/drakbackup_.c:728 ../../standalone/drakbackup_.c:739
-#: ../../standalone/drakbackup_.c:750 ../../standalone/drakfont_.c:787
+#: ../../standalone/drakbackup_.c:905
+msgid ""
+"\n"
+"Drakbackup activities via tape:\n"
+"\n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:914
+msgid " Error during mail sending. \n"
+msgstr " Chyba pi posln poty. \n"
+
+#: ../../standalone/drakbackup_.c:1011 ../../standalone/drakbackup_.c:1022
+#: ../../standalone/drakbackup_.c:1033 ../../standalone/drakfont_.c:1005
msgid "File Selection"
msgstr "Vbr souboru"
-#: ../../standalone/drakbackup_.c:755
+#: ../../standalone/drakbackup_.c:1038
msgid "Select the files or directories and click on 'Add'"
msgstr "Vyberte soubory nebo adrese a kliknte na 'Pidat'"
-#: ../../standalone/drakbackup_.c:790
+#: ../../standalone/drakbackup_.c:1078
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9559,106 +9927,100 @@ msgstr ""
"\n"
"Zvolte prosm vechny volby, kter potebujete.\n"
-#: ../../standalone/drakbackup_.c:791
+#: ../../standalone/drakbackup_.c:1079
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr "Tato volba zazlohuje a obnov vechny soubory v adresi /etc.\n"
-#: ../../standalone/drakbackup_.c:792
+#: ../../standalone/drakbackup_.c:1080
msgid "Backup your System files. ( /etc directory )"
msgstr "Zlohovat systmov soubory ( adres /etc )"
-#: ../../standalone/drakbackup_.c:793
+#: ../../standalone/drakbackup_.c:1081
msgid "Use incremental backup (do not replace old backups)"
msgstr "Pout prstkovou zlohu (nepepisovat star zlohy)"
-#: ../../standalone/drakbackup_.c:794
+#: ../../standalone/drakbackup_.c:1082
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Nezahrnout kritick soubory (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:795
+#: ../../standalone/drakbackup_.c:1083
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr "Tato volba dovol obnovit rzn verze adrese /etc."
-#: ../../standalone/drakbackup_.c:812
+#: ../../standalone/drakbackup_.c:1100
msgid "Please check all users that you want to include in your backup."
msgstr "Zvolte prosm vechny uivatele, kter chcete zlohovat."
-#: ../../standalone/drakbackup_.c:839
+#: ../../standalone/drakbackup_.c:1127
msgid "Do not include the browser cache"
msgstr "Nezahrnout cache prohlee"
-#: ../../standalone/drakbackup_.c:840 ../../standalone/drakbackup_.c:864
+#: ../../standalone/drakbackup_.c:1128 ../../standalone/drakbackup_.c:1152
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Pout prstkovou zlohu (nepepisovat star zlohy)"
-#: ../../standalone/drakbackup_.c:862 ../../standalone/drakfont_.c:827
+#: ../../standalone/drakbackup_.c:1150 ../../standalone/drakfont_.c:1059
msgid "Remove Selected"
msgstr "Odstranit vybran"
-#: ../../standalone/drakbackup_.c:900
+#: ../../standalone/drakbackup_.c:1188
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:939
+#: ../../standalone/drakbackup_.c:1227
msgid "Users"
msgstr "Uivatel"
-#: ../../standalone/drakbackup_.c:964
-msgid "Use FTP connection to backup"
+#: ../../standalone/drakbackup_.c:1257
+#, fuzzy
+msgid "Use network connection to backup"
msgstr "Pout FTP pipojen pro zlohu"
-#: ../../standalone/drakbackup_.c:967
+#: ../../standalone/drakbackup_.c:1264
msgid "Please enter the host name or IP."
msgstr "Zadejte prosm jmno potae nebo IP."
-#: ../../standalone/drakbackup_.c:972
+#: ../../standalone/drakbackup_.c:1269
+#, fuzzy
msgid ""
-"Please enter the directory to\n"
+"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
"Zadejte adres, do kterho\n"
" bude umstna zloha."
-#: ../../standalone/drakbackup_.c:977
+#: ../../standalone/drakbackup_.c:1274
msgid "Please enter your login"
msgstr "Zadejte sv pihlaovac jmno"
-#: ../../standalone/drakbackup_.c:982
+#: ../../standalone/drakbackup_.c:1279
msgid "Please enter your password"
msgstr "Zadejte sv heslo"
-#: ../../standalone/drakbackup_.c:988
+#: ../../standalone/drakbackup_.c:1285
msgid "Remember this password"
msgstr "Pamatovat si heslo"
-#: ../../standalone/drakbackup_.c:1052 ../../standalone/drakbackup_.c:2048
-msgid "FTP Connection"
-msgstr "FTP pipojen"
-
-#: ../../standalone/drakbackup_.c:1059 ../../standalone/drakbackup_.c:2056
-msgid "Secure Connection"
-msgstr "Bezpen pipojen"
-
-#: ../../standalone/drakbackup_.c:1085 ../../standalone/drakbackup_.c:2889
+#: ../../standalone/drakbackup_.c:1360 ../../standalone/drakbackup_.c:3295
msgid "Use CD/DVDROM to backup"
msgstr "Pout pro zlohovn CD/DVDROM"
-#: ../../standalone/drakbackup_.c:1088 ../../standalone/drakbackup_.c:2893
+#: ../../standalone/drakbackup_.c:1363 ../../standalone/drakbackup_.c:3299
msgid "Please choose your CD space"
msgstr "Vyberte si velikost CD mdia"
-#: ../../standalone/drakbackup_.c:1094 ../../standalone/drakbackup_.c:2905
+#: ../../standalone/drakbackup_.c:1369 ../../standalone/drakbackup_.c:3311
msgid "Please check if you are using CDRW media"
msgstr "Zvolte pokud pouvte CDRW mdia"
-#: ../../standalone/drakbackup_.c:1100 ../../standalone/drakbackup_.c:2911
+#: ../../standalone/drakbackup_.c:1375 ../../standalone/drakbackup_.c:3317
msgid "Please check if you want to erase your CDRW before"
msgstr "Pokud CDRW mdium nejdve smazat, zatrhnte"
-#: ../../standalone/drakbackup_.c:1106
+#: ../../standalone/drakbackup_.c:1382
msgid ""
"Please check if you want to include\n"
" install boot on your CD."
@@ -9666,7 +10028,7 @@ msgstr ""
"Pokud chcete mt spoutc CD,\n"
" zatrhnte tuto volbu."
-#: ../../standalone/drakbackup_.c:1112
+#: ../../standalone/drakbackup_.c:1388
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -9674,68 +10036,79 @@ msgstr ""
"Zadejte jmno va vypalovaky CD\n"
" nap.: 1,0,0"
-#: ../../standalone/drakbackup_.c:1153
+#: ../../standalone/drakbackup_.c:1437
msgid "Use tape to backup"
msgstr "Pout pskovou jednotku"
-#: ../../standalone/drakbackup_.c:1156
+#: ../../standalone/drakbackup_.c:1440
msgid "Please enter the device name to use for backup"
msgstr "Zadejte jmno zazen, na kter se bude zlohovat"
-#: ../../standalone/drakbackup_.c:1162 ../../standalone/drakbackup_.c:1203
-#: ../../standalone/drakbackup_.c:2013
+#: ../../standalone/drakbackup_.c:1446
+#, fuzzy
+msgid "Please check if you want to erase your tape before the backup."
+msgstr "Pokud CDRW mdium nejdve smazat, zatrhnte"
+
+#: ../../standalone/drakbackup_.c:1452 ../../standalone/drakbackup_.c:1505
+#: ../../standalone/drakbackup_.c:2381
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
"Zadejte prosm maximln velikost\n"
-" povolenou pro Drakbackup"
+" povolenou pro DrakBackup"
-#: ../../standalone/drakbackup_.c:1195 ../../standalone/drakbackup_.c:2005
-msgid "Please enter the directory to save:"
+#: ../../standalone/drakbackup_.c:1497
+#, fuzzy
+msgid "Please enter the directory to save to:"
msgstr "Zadejte adres, kam bude umstna zloha:"
-#: ../../standalone/drakbackup_.c:1209 ../../standalone/drakbackup_.c:2019
+#: ../../standalone/drakbackup_.c:1511 ../../standalone/drakbackup_.c:2387
msgid "Use quota for backup files."
msgstr "Pout kvty pro zlon soubory."
-#: ../../standalone/drakbackup_.c:1267
+#: ../../standalone/drakbackup_.c:1580
msgid "Network"
msgstr "S"
-#: ../../standalone/drakbackup_.c:1272
+#: ../../standalone/drakbackup_.c:1585
msgid "CDROM / DVDROM"
-msgstr "CDROM / DVDROM"
+msgstr ""
-#: ../../standalone/drakbackup_.c:1277
+#: ../../standalone/drakbackup_.c:1590
msgid "HardDrive / NFS"
msgstr "Pevn disk / NFS"
-#: ../../standalone/drakbackup_.c:1297 ../../standalone/drakbackup_.c:1301
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1595
+#, fuzzy
+msgid "Tape"
+msgstr "Zmnit typ"
+
+#: ../../standalone/drakbackup_.c:1609 ../../standalone/drakbackup_.c:1613
+#: ../../standalone/drakbackup_.c:1617
msgid "hourly"
msgstr "kadou hodinu"
-#: ../../standalone/drakbackup_.c:1298 ../../standalone/drakbackup_.c:1302
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1610 ../../standalone/drakbackup_.c:1614
+#: ../../standalone/drakbackup_.c:1617
msgid "daily"
msgstr "kad den"
-#: ../../standalone/drakbackup_.c:1299 ../../standalone/drakbackup_.c:1303
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1611 ../../standalone/drakbackup_.c:1615
+#: ../../standalone/drakbackup_.c:1617
msgid "weekly"
msgstr "kad tden"
-#: ../../standalone/drakbackup_.c:1300 ../../standalone/drakbackup_.c:1304
-#: ../../standalone/drakbackup_.c:1305
+#: ../../standalone/drakbackup_.c:1612 ../../standalone/drakbackup_.c:1616
+#: ../../standalone/drakbackup_.c:1617
msgid "monthly"
msgstr "kad msc"
-#: ../../standalone/drakbackup_.c:1312
+#: ../../standalone/drakbackup_.c:1630
msgid "Use daemon"
msgstr "Pout dmona"
-#: ../../standalone/drakbackup_.c:1317
+#: ../../standalone/drakbackup_.c:1635
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9743,7 +10116,7 @@ msgstr ""
"Vyberte si interval mezi\n"
"jednotlivmi zlohami"
-#: ../../standalone/drakbackup_.c:1323
+#: ../../standalone/drakbackup_.c:1641
msgid ""
"Please choose the\n"
"media for backup."
@@ -9751,71 +10124,67 @@ msgstr ""
"Prosm zvolte si\n"
"mdium pro zlohy."
-#: ../../standalone/drakbackup_.c:1327
-msgid "Use Hard Drive with daemon"
-msgstr "Pout pro pevn disk dmona"
-
-#: ../../standalone/drakbackup_.c:1329
-msgid "Use FTP with daemon"
-msgstr "Pout pro s dmona"
-
-#: ../../standalone/drakbackup_.c:1333
-msgid "Please be sure that the cron daemon is included in your services."
+#: ../../standalone/drakbackup_.c:1648
+#, fuzzy
+msgid ""
+"Please be sure that the cron daemon is included in your services. \n"
+"\n"
+"Note that currently all 'net' medias also use the hard drive."
msgstr "Ujistte se, e mezi slubami je ptomen cron dmon."
-#: ../../standalone/drakbackup_.c:1369
+#: ../../standalone/drakbackup_.c:1706
msgid "Send mail report after each backup to :"
msgstr "Poslat report po zloze mailem na :"
-#: ../../standalone/drakbackup_.c:1411
+#: ../../standalone/drakbackup_.c:1748
msgid "What"
msgstr "Co"
-#: ../../standalone/drakbackup_.c:1416
+#: ../../standalone/drakbackup_.c:1753
msgid "Where"
msgstr "Kde"
-#: ../../standalone/drakbackup_.c:1421
+#: ../../standalone/drakbackup_.c:1758
msgid "When"
msgstr "Kdy"
-#: ../../standalone/drakbackup_.c:1426
+#: ../../standalone/drakbackup_.c:1763
msgid "More Options"
msgstr "Dal volby"
-#: ../../standalone/drakbackup_.c:1445 ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:1782 ../../standalone/drakbackup_.c:3207
msgid "Drakbackup Configuration"
msgstr "Nastaven pro DrakBackup"
-#: ../../standalone/drakbackup_.c:1463
+#: ../../standalone/drakbackup_.c:1800
msgid "Please choose where you want to backup"
msgstr "Vyberte si, prosm, kam chcete zlohovat."
-#: ../../standalone/drakbackup_.c:1465
+#: ../../standalone/drakbackup_.c:1802
msgid "on Hard Drive"
msgstr "na pevn disk"
-#: ../../standalone/drakbackup_.c:1476
+#: ../../standalone/drakbackup_.c:1813
msgid "across Network"
msgstr "pes s"
-#: ../../standalone/drakbackup_.c:1540
+#: ../../standalone/drakbackup_.c:1877
msgid "Please choose what you want to backup"
msgstr "Prosm vyberte si, co chcete zlohovat"
-#: ../../standalone/drakbackup_.c:1541
+#: ../../standalone/drakbackup_.c:1878
msgid "Backup system"
msgstr "Zlohovat systm"
-#: ../../standalone/drakbackup_.c:1542
+#: ../../standalone/drakbackup_.c:1879
msgid "Backup Users"
msgstr "Zlohovat uivatele"
-#: ../../standalone/drakbackup_.c:1545
+#: ../../standalone/drakbackup_.c:1882
msgid "Select user manually"
msgstr "Vybrat uivatele manuln"
-#: ../../standalone/drakbackup_.c:1627
+#: ../../standalone/drakbackup_.c:1964
msgid ""
"\n"
"Backup Sources: \n"
@@ -9823,7 +10192,7 @@ msgstr ""
"\n"
"Zdroje pro zlohu:\n"
-#: ../../standalone/drakbackup_.c:1628
+#: ../../standalone/drakbackup_.c:1965
msgid ""
"\n"
"- System Files:\n"
@@ -9831,7 +10200,7 @@ msgstr ""
"\n"
"- Systmov soubory:\n"
-#: ../../standalone/drakbackup_.c:1630
+#: ../../standalone/drakbackup_.c:1967
msgid ""
"\n"
"- User Files:\n"
@@ -9839,7 +10208,7 @@ msgstr ""
"\n"
"- Soubory uivatel:\n"
-#: ../../standalone/drakbackup_.c:1632
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"\n"
"- Other Files:\n"
@@ -9847,7 +10216,7 @@ msgstr ""
"\n"
"- Dal soubory:\n"
-#: ../../standalone/drakbackup_.c:1634
+#: ../../standalone/drakbackup_.c:1971
#, c-format
msgid ""
"\n"
@@ -9856,16 +10225,45 @@ msgstr ""
"\n"
"- Uloit na pevn disk do adrese: %s\n"
-#: ../../standalone/drakbackup_.c:1635
+#: ../../standalone/drakbackup_.c:1976
+msgid ""
+"\n"
+"- Burn to CD"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1977
+msgid "RW"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1978
+#, fuzzy, c-format
+msgid " on device : %s"
+msgstr "Ppojen myi: %s\n"
+
+#: ../../standalone/drakbackup_.c:1979
+#, fuzzy, c-format
+msgid ""
+"\n"
+"- Save to Tape on device : %s"
+msgstr ""
+"\n"
+"- Uloit na FTP na pota: %s\n"
+
+#: ../../standalone/drakbackup_.c:1980
#, c-format
+msgid "\t\tErase=%s"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1983
+#, fuzzy, c-format
msgid ""
"\n"
-"- Save on FTP on host : %s\n"
+"- Save via %s on host : %s\n"
msgstr ""
"\n"
"- Uloit na FTP na pota: %s\n"
-#: ../../standalone/drakbackup_.c:1636
+#: ../../standalone/drakbackup_.c:1984
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -9874,7 +10272,7 @@ msgstr ""
"\t\t uivatelsk jmno: %s\n"
"\t\t cesta: %s \n"
-#: ../../standalone/drakbackup_.c:1637
+#: ../../standalone/drakbackup_.c:1985
msgid ""
"\n"
"- Options:\n"
@@ -9882,19 +10280,19 @@ msgstr ""
"\n"
"- Volby:\n"
-#: ../../standalone/drakbackup_.c:1638
+#: ../../standalone/drakbackup_.c:1986
msgid "\tDo not include System Files\n"
msgstr "\tNezahrnout systmov soubory\n"
-#: ../../standalone/drakbackup_.c:1639
+#: ../../standalone/drakbackup_.c:1989
msgid "\tBackups use tar and bzip2\n"
msgstr "\tZlohovn pouv tar a bzip2\n"
-#: ../../standalone/drakbackup_.c:1640
+#: ../../standalone/drakbackup_.c:1991
msgid "\tBackups use tar and gzip\n"
msgstr "\tZlohovn pouv tar a gzip\n"
-#: ../../standalone/drakbackup_.c:1641
+#: ../../standalone/drakbackup_.c:1994
#, c-format
msgid ""
"\n"
@@ -9903,27 +10301,41 @@ msgstr ""
"\n"
"- Dmon (%s) zahrnuje :\n"
-#: ../../standalone/drakbackup_.c:1642
+#: ../../standalone/drakbackup_.c:1995
msgid "\t-Hard drive.\n"
msgstr "\t-Pevn disk.\n"
-#: ../../standalone/drakbackup_.c:1643
+#: ../../standalone/drakbackup_.c:1996
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:1644
+#: ../../standalone/drakbackup_.c:1997
+msgid "\t-Tape \n"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1998
msgid "\t-Network by FTP.\n"
msgstr "\t-St pes FTP.\n"
-#: ../../standalone/drakbackup_.c:1645
+#: ../../standalone/drakbackup_.c:1999
msgid "\t-Network by SSH.\n"
msgstr "\t-St pes SSH.\n"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:2000
+#, fuzzy
+msgid "\t-Network by rsync.\n"
+msgstr "\t-St pes FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2001
+#, fuzzy
+msgid "\t-Network by webdav.\n"
+msgstr "\t-St pes FTP.\n"
+
+#: ../../standalone/drakbackup_.c:2003
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Pro prvn sputn pouijte Prvodce nebo Rozen.\n"
-#: ../../standalone/drakbackup_.c:1652
+#: ../../standalone/drakbackup_.c:2009
msgid ""
"List of data to restore:\n"
"\n"
@@ -9931,7 +10343,7 @@ msgstr ""
"Seznam dat pro obnoven:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1753
+#: ../../standalone/drakbackup_.c:2113
msgid ""
"List of data corrupted:\n"
"\n"
@@ -9939,132 +10351,135 @@ msgstr ""
"Seznam pokozench dat:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1755
+#: ../../standalone/drakbackup_.c:2115
msgid "Please uncheck or remove it on next time."
msgstr "Zrute tuto volbu pi dalm sputn."
-#: ../../standalone/drakbackup_.c:1765
+#: ../../standalone/drakbackup_.c:2125
msgid "Backup files are corrupted"
msgstr "Zlon soubory jsou pokozen"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:2146
msgid " All your selectionned data have been "
msgstr " Vechna vybran data byla "
-#: ../../standalone/drakbackup_.c:1787
+#: ../../standalone/drakbackup_.c:2147
#, c-format
msgid " Successfuly Restored on %s "
msgstr " spn obnoveno na %s "
-#: ../../standalone/drakbackup_.c:1886
+#: ../../standalone/drakbackup_.c:2254
msgid " Restore Configuration "
msgstr " Obnovit konfiguraci "
-#: ../../standalone/drakbackup_.c:1904
+#: ../../standalone/drakbackup_.c:2272
msgid "OK to restore the other files."
msgstr "Obnovit tak ostatn soubory."
-#: ../../standalone/drakbackup_.c:1922
+#: ../../standalone/drakbackup_.c:2290
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"Seznam uivatel pro obnoven (od kadho bude obnovena pouze posledn "
"zloha)"
-#: ../../standalone/drakbackup_.c:1972
+#: ../../standalone/drakbackup_.c:2340
msgid "Backup the system files before:"
msgstr "Zlohovat systmov soubory ped:"
-#: ../../standalone/drakbackup_.c:1974
+#: ../../standalone/drakbackup_.c:2342
msgid "please choose the date to restore"
msgstr "Vyberte datum obnoven zlohy"
-#: ../../standalone/drakbackup_.c:2002
+#: ../../standalone/drakbackup_.c:2370
msgid "Use Hard Disk to backup"
msgstr "Pout pro zlohovn pevn disk"
-#: ../../standalone/drakbackup_.c:2083
+#: ../../standalone/drakbackup_.c:2373
+msgid "Please enter the directory to save:"
+msgstr "Zadejte adres, kam bude umstna zloha:"
+
+#: ../../standalone/drakbackup_.c:2416
+msgid "FTP Connection"
+msgstr "FTP pipojen"
+
+#: ../../standalone/drakbackup_.c:2424
+msgid "Secure Connection"
+msgstr "Bezpen pipojen"
+
+#: ../../standalone/drakbackup_.c:2451
msgid "Restore from Hard Disk."
msgstr "Obnovit z pevnho disku."
-#: ../../standalone/drakbackup_.c:2085
+#: ../../standalone/drakbackup_.c:2453
msgid "Please enter the directory where backups are stored"
msgstr "Zadejte adres, kde jsou umstny zlohy"
-#: ../../standalone/drakbackup_.c:2143
+#: ../../standalone/drakbackup_.c:2512
msgid "Select another media to restore from"
msgstr "Vyberte dal mdium, kde jsou umstny zlohy"
-#: ../../standalone/drakbackup_.c:2145
+#: ../../standalone/drakbackup_.c:2514
msgid "Other Media"
msgstr "Dal mdia"
-#: ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:2520
msgid "Restore system"
msgstr "Obnovit systm"
-#: ../../standalone/drakbackup_.c:2152
+#: ../../standalone/drakbackup_.c:2521
msgid "Restore Users"
msgstr "Obnovit uivatele"
-#: ../../standalone/drakbackup_.c:2153
+#: ../../standalone/drakbackup_.c:2522
msgid "Restore Other"
msgstr "Obnovit ostatn"
-#: ../../standalone/drakbackup_.c:2155
+#: ../../standalone/drakbackup_.c:2524
msgid "select path to restore (instead of / )"
msgstr "vyberte cestu pro obnovu (krom / )"
-#: ../../standalone/drakbackup_.c:2159
+#: ../../standalone/drakbackup_.c:2528
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Provst novou zlohu ped obnovou (pouze pro prstkovou zlohu)"
-#: ../../standalone/drakbackup_.c:2160
+#: ../../standalone/drakbackup_.c:2529
msgid "Remove user directories before restore."
msgstr "Odebrat adrese uivatele ped obnovou."
-#: ../../standalone/drakbackup_.c:2217
+#: ../../standalone/drakbackup_.c:2586
msgid "Restore all backups"
msgstr "Obnovit vechny zlohy"
-#: ../../standalone/drakbackup_.c:2225
+#: ../../standalone/drakbackup_.c:2594
msgid "Custom Restore"
msgstr "Vlastn obnova"
-#: ../../standalone/drakbackup_.c:2266 ../../standalone/drakbackup_.c:2291
-#: ../../standalone/drakbackup_.c:2312 ../../standalone/drakbackup_.c:2333
-#: ../../standalone/drakbackup_.c:2351 ../../standalone/drakbackup_.c:2383
-#: ../../standalone/drakbackup_.c:2399 ../../standalone/drakbackup_.c:2419
-#: ../../standalone/drakbackup_.c:2438 ../../standalone/drakbackup_.c:2460
-#: ../../standalone/drakfont_.c:575
-msgid "Help"
-msgstr "Npovda"
-
-#: ../../standalone/drakbackup_.c:2269 ../../standalone/drakbackup_.c:2296
-#: ../../standalone/drakbackup_.c:2315 ../../standalone/drakbackup_.c:2336
-#: ../../standalone/drakbackup_.c:2354 ../../standalone/drakbackup_.c:2402
-#: ../../standalone/drakbackup_.c:2422 ../../standalone/drakbackup_.c:2441
+#: ../../standalone/drakbackup_.c:2640 ../../standalone/drakbackup_.c:2671
+#: ../../standalone/drakbackup_.c:2690 ../../standalone/drakbackup_.c:2715
+#: ../../standalone/drakbackup_.c:2742 ../../standalone/drakbackup_.c:2802
+#: ../../standalone/drakbackup_.c:2829 ../../standalone/drakbackup_.c:2851
msgid "Previous"
msgstr "Pedchoz"
-#: ../../standalone/drakbackup_.c:2271 ../../standalone/drakbackup_.c:2338
+#: ../../standalone/drakbackup_.c:2644 ../../standalone/drakbackup_.c:2719
#: ../../standalone/logdrake_.c:224
msgid "Save"
msgstr "Uloit"
-#: ../../standalone/drakbackup_.c:2317
+#: ../../standalone/drakbackup_.c:2692
msgid "Build Backup"
msgstr "Vytvoit zlohu"
-#: ../../standalone/drakbackup_.c:2356 ../../standalone/drakbackup_.c:3033
+#: ../../standalone/drakbackup_.c:2746 ../../standalone/drakbackup_.c:3458
msgid "Restore"
msgstr "Obnovit"
-#: ../../standalone/drakbackup_.c:2404 ../../standalone/drakbackup_.c:2424
-#: ../../standalone/drakbackup_.c:2445
+#: ../../standalone/drakbackup_.c:2806 ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2855
msgid "Next"
msgstr "Dal"
-#: ../../standalone/drakbackup_.c:2478
+#: ../../standalone/drakbackup_.c:2888
msgid ""
"Please Build backup before to restore it...\n"
" or verify that your path to save is correct."
@@ -10072,7 +10487,7 @@ msgstr ""
"Dve ne budete obnovovat, vytvote zlohu...\n"
"nebo ovte, e dan cesta je sprvn."
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2909
msgid ""
"Error durind sendmail\n"
" your report mail was not sent\n"
@@ -10082,31 +10497,35 @@ msgstr ""
" vmi zvolen report nebyl odesln\n"
" Provete prosm nastaven sendmailu"
-#: ../../standalone/drakbackup_.c:2522
-msgid "Package List to Install"
-msgstr "Seznam balk pro instalaci"
+#: ../../standalone/drakbackup_.c:2933
+#, fuzzy
+msgid ""
+"The following packages need to be installed:\n"
+" @list_of_rpm_to_install"
+msgstr "Tyto balky budou instalovny"
-#: ../../standalone/drakbackup_.c:2550
+#: ../../standalone/drakbackup_.c:2956
+#, fuzzy
msgid ""
-"Error durind sending file via FTP.\n"
+"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
"Chyba pi posln soubor pes FTP.\n"
" Prosm opravte nastaven pro FTP."
-#: ../../standalone/drakbackup_.c:2573
+#: ../../standalone/drakbackup_.c:2979
msgid "Please select data to restore..."
msgstr "Prosm zvolte data pro obnovu..."
-#: ../../standalone/drakbackup_.c:2594
+#: ../../standalone/drakbackup_.c:3000
msgid "Please select media for backup..."
msgstr "Prosm zvolte si mdium pro zlohy..."
-#: ../../standalone/drakbackup_.c:2616
+#: ../../standalone/drakbackup_.c:3022
msgid "Please select data to backup..."
msgstr "Zkontrolujte prosm data pro zlohovn..."
-#: ../../standalone/drakbackup_.c:2638
+#: ../../standalone/drakbackup_.c:3044
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10114,75 +10533,75 @@ msgstr ""
"Nebyl nalezen konfiguran soubor, \n"
"kliknte na Prvodce nebo na Rozen."
-#: ../../standalone/drakbackup_.c:2659
+#: ../../standalone/drakbackup_.c:3065
msgid "Under Devel ... please wait."
msgstr "Vyvj se... ekejte prosm."
-#: ../../standalone/drakbackup_.c:2739
+#: ../../standalone/drakbackup_.c:3145
msgid "Backup system files"
msgstr "Zlohovat systmov soubory"
-#: ../../standalone/drakbackup_.c:2741
+#: ../../standalone/drakbackup_.c:3147
msgid "Backup user files"
msgstr "Zlohovat uivatelsk soubory"
-#: ../../standalone/drakbackup_.c:2743
+#: ../../standalone/drakbackup_.c:3149
msgid "Backup other files"
msgstr "Zlohovat dal soubory"
-#: ../../standalone/drakbackup_.c:2745 ../../standalone/drakbackup_.c:2776
+#: ../../standalone/drakbackup_.c:3151 ../../standalone/drakbackup_.c:3182
msgid "Total Progress"
msgstr "Celkov prbh"
-#: ../../standalone/drakbackup_.c:2767
+#: ../../standalone/drakbackup_.c:3173
msgid "files sending by FTP"
msgstr "soubory poslan pes FTP"
-#: ../../standalone/drakbackup_.c:2771
+#: ../../standalone/drakbackup_.c:3177
msgid "Sending files..."
msgstr "Poslm soubory..."
-#: ../../standalone/drakbackup_.c:2841
+#: ../../standalone/drakbackup_.c:3247
msgid "Data list to include on CDROM."
-msgstr "Seznam dat, kter budou na CROM."
+msgstr "Seznam dat, kter budou na CDROM."
-#: ../../standalone/drakbackup_.c:2899
+#: ../../standalone/drakbackup_.c:3305
msgid "Please enter the cd writer speed"
msgstr "Zadejte rychlost vypalovac mechaniky"
-#: ../../standalone/drakbackup_.c:2917
+#: ../../standalone/drakbackup_.c:3323
msgid "Please enter your CD Writer device name (ex: 0,1,0)"
msgstr "Zadejte prosm jmno CD vypalovaky (nap.: 1.0.0)"
-#: ../../standalone/drakbackup_.c:2923
+#: ../../standalone/drakbackup_.c:3329
msgid "Please check if you want to include install boot on your CD."
msgstr "Zvolte, pokud chcete mt instalan CD spustiteln."
-#: ../../standalone/drakbackup_.c:2989
+#: ../../standalone/drakbackup_.c:3409
msgid "Backup Now from configuration file"
msgstr "Zlohovat z konfiguranho souboru"
-#: ../../standalone/drakbackup_.c:2999
+#: ../../standalone/drakbackup_.c:3419
msgid "View Backup Configuration."
msgstr "Prohldnout konfiguraci zlohy."
-#: ../../standalone/drakbackup_.c:3020
+#: ../../standalone/drakbackup_.c:3440
msgid "Wizard Configuration"
msgstr "Prvodce konfigurac"
-#: ../../standalone/drakbackup_.c:3024
+#: ../../standalone/drakbackup_.c:3445
msgid "Advanced Configuration"
msgstr "Rozen konfigurace"
-#: ../../standalone/drakbackup_.c:3028
+#: ../../standalone/drakbackup_.c:3450
msgid "Backup Now"
msgstr "Zlohovat nyn"
-#: ../../standalone/drakbackup_.c:3053
+#: ../../standalone/drakbackup_.c:3480
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:3104
+#: ../../standalone/drakbackup_.c:3529
msgid ""
"options description:\n"
"\n"
@@ -10241,7 +10660,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:3134
+#: ../../standalone/drakbackup_.c:3559
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10255,7 +10674,7 @@ msgstr ""
" nastavte myhostname a mydomain v /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:3142
+#: ../../standalone/drakbackup_.c:3567
msgid ""
"options description:\n"
"\n"
@@ -10331,7 +10750,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3181
+#: ../../standalone/drakbackup_.c:3606
msgid ""
"restore description:\n"
" \n"
@@ -10382,13 +10801,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3207 ../../standalone/drakbackup_.c:3282
+#: ../../standalone/drakbackup_.c:3632 ../../standalone/drakbackup_.c:3709
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:3209 ../../standalone/drakbackup_.c:3284
+#: ../../standalone/drakbackup_.c:3634 ../../standalone/drakbackup_.c:3711
+msgid ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:3636 ../../standalone/drakbackup_.c:3713
msgid ""
" This program is free software; you can redistribute it and/or modify\n"
" it under the terms of the GNU General Public License as published by\n"
@@ -10405,7 +10829,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
" Tento program je svobodn software; mete ho it a/nebo modifikovat\n"
-" podle specifikace GNU General Public Licence, kter byla publikva\n"
+" podle specifikace GNU General Public Licence, kter byla publikovna\n"
" Free Software Foundation; bu verze 2, nebo (podle volby) pozdj verze.\n"
"\n"
" Tento program je distribuovn s nadj, e bude uiten,\n"
@@ -10416,7 +10840,7 @@ msgstr ""
" nebo si o n mete napsat na adresu Free Software Foundation, Inc.,\n"
" 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:3223
+#: ../../standalone/drakbackup_.c:3650
msgid ""
"Description:\n"
"\n"
@@ -10491,7 +10915,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3688
msgid ""
"options description:\n"
"\n"
@@ -10509,7 +10933,7 @@ msgstr ""
"ji polete na server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3270
+#: ../../standalone/drakbackup_.c:3697
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10532,7 +10956,7 @@ msgstr ""
"data run.\n"
"\n"
-#: ../../standalone/drakbackup_.c:3298
+#: ../../standalone/drakbackup_.c:3727
msgid ""
"Description:\n"
"\n"
@@ -10611,99 +11035,526 @@ msgstr ""
msgid "Installation of %s failed. The following error occured:"
msgstr "Instalace %s neuspla. Stala se tato chyba:"
-#: ../../standalone/drakfont_.c:229
+#: ../../standalone/drakbug_.c:40
+msgid "Mandrake Bug Report Tool"
+msgstr "Nstroj spolenosti Mandrake pro hlen chyb"
+
+#: ../../standalone/drakbug_.c:50
+msgid "First Time Wizard"
+msgstr "Prvodce pro nov uivatele"
+
+#: ../../standalone/drakbug_.c:51
+msgid "Synchronization tool"
+msgstr "Nstroj na synchronizaci"
+
+#: ../../standalone/drakbug_.c:52 ../../standalone/drakbug_.c:65
+msgid "Standalone Tools"
+msgstr "Samostatn nstroje"
+
+#: ../../standalone/drakbug_.c:53
+msgid "HardDrake"
+msgstr "HardDrake"
+
+#: ../../standalone/drakbug_.c:54
+msgid "Mandrake Online"
+msgstr "Mandrake Online"
+
+#: ../../standalone/drakbug_.c:55
+msgid "Menudrake"
+msgstr "Menudrake"
+
+#: ../../standalone/drakbug_.c:56
+msgid "Msec"
+msgstr "Msec"
+
+#: ../../standalone/drakbug_.c:57
+msgid "Remote Control"
+msgstr "Vzdlen ovldn"
+
+#: ../../standalone/drakbug_.c:58
+msgid "Software Manager"
+msgstr "Sprvce software"
+
+#: ../../standalone/drakbug_.c:59
+msgid "Urpmi"
+msgstr "Urpmi"
+
+#: ../../standalone/drakbug_.c:60
+msgid "Windows Migration tool"
+msgstr "Nstroj pro migraci z Windows"
+
+#: ../../standalone/drakbug_.c:61
+msgid "Userdrake"
+msgstr "UserDrake"
+
+#: ../../standalone/drakbug_.c:62
+msgid "Configuration Wizards"
+msgstr "Prvodci nastavenm"
+
+#: ../../standalone/drakbug_.c:71
+msgid "Application:"
+msgstr "Aplikace:"
+
+#: ../../standalone/drakbug_.c:75
+msgid "Package: "
+msgstr "Balek: "
+
+#: ../../standalone/drakbug_.c:79
+msgid "Kernel:"
+msgstr "Jdro: "
+
+#: ../../standalone/drakbug_.c:83
+msgid "Release: "
+msgstr "Verze: "
+
+#: ../../standalone/drakbug_.c:87
+#, fuzzy
+msgid ""
+"\n"
+"\n"
+"To submit a bug report, click on the button report.\n"
+"This will open a web browser window on https://www.bugzilla.com\n"
+" where you'll find a form to fill in.The information displayed above will "
+"be \n"
+"transferred to that server\n"
+"\n"
+msgstr ""
+"\n"
+"\n"
+"Chcete-li poslat hlen o chyb, klepnte na tlatko pro nahlen chyby.\n"
+"Oteve se okno s prohleem st Internet na adrese https://www.bugzilla."
+"com,\n"
+"kde najdete formul k vyplnn. Ve uveden informace budou na tento "
+"server\n"
+"takt peneseny.\n"
+"\n"
+
+#: ../../standalone/drakbug_.c:101
+msgid "Not installed"
+msgstr "Nen instalovno"
+
+#: ../../standalone/drakbug_.c:110
+msgid "Report"
+msgstr "Hlen"
+
+#: ../../standalone/drakbug_.c:123
+msgid "connecting to Bugzilla wizard ..."
+msgstr "pipojuji se k prvodci Bugzilla ..."
+
+#: ../../standalone/drakbug_.c:129
+#, fuzzy
+msgid "No browser available! Please install one"
+msgstr ""
+"Nen k dispozici dn prohle st Internet! Prosm nainstalujte njak."
+
+#: ../../standalone/drakconnect_.c:80
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Nastaven st (%d adaptry())"
+
+#: ../../standalone/drakconnect_.c:87 ../../standalone/drakconnect_.c:595
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/drakconnect_.c:95
+msgid "Del profile..."
+msgstr "Smazat profil..."
+
+#: ../../standalone/drakconnect_.c:101
+msgid "Profile to delete:"
+msgstr "Smazat profil:"
+
+#: ../../standalone/drakconnect_.c:129
+msgid "New profile..."
+msgstr "Nov profil..."
+
+#: ../../standalone/drakconnect_.c:135
+msgid ""
+"Name of the profile to create (the new profile is created as a copy of the "
+"current one) :"
+msgstr ""
+"Zadejte jmno vytvenho profilu (nov profil je vytvoen jako kopie "
+"vybranho) :"
+
+#: ../../standalone/drakconnect_.c:161
+msgid "Hostname: "
+msgstr "Jmno potae: "
+
+#: ../../standalone/drakconnect_.c:168
+msgid "Internet access"
+msgstr "Pstup na Internet"
+
+#: ../../standalone/drakconnect_.c:181
+msgid "Type:"
+msgstr "Typ:"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Gateway:"
+msgstr "Brna(gateway):"
+
+#: ../../standalone/drakconnect_.c:184 ../../standalone/drakconnect_.c:376
+msgid "Interface:"
+msgstr "Rozhran:"
+
+#: ../../standalone/drakconnect_.c:195
+msgid "Status:"
+msgstr "Status:"
+
+#: ../../standalone/drakconnect_.c:202
+msgid "Wait please"
+msgstr "ekejte prosm"
+
+#: ../../standalone/drakconnect_.c:220
+msgid "Configure Internet Access..."
+msgstr "Nastavuji pstup na Internet..."
+
+#: ../../standalone/drakconnect_.c:227 ../../standalone/drakconnect_.c:449
+msgid "LAN configuration"
+msgstr "Nastaven LAN"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Driver"
+msgstr "Ovlada"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Interface"
+msgstr "Rozhran"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/drakconnect_.c:232
+msgid "State"
+msgstr "Status"
+
+#: ../../standalone/drakconnect_.c:244
+msgid "Configure Local Area Network..."
+msgstr "Nastavuji lokln s..."
+
+#: ../../standalone/drakconnect_.c:256
+msgid "Click here to launch the wizard ->"
+msgstr "Kliknte pro sputn prvodce ->"
+
+#: ../../standalone/drakconnect_.c:257
+msgid "Wizard..."
+msgstr "Prvodce..."
+
+#: ../../standalone/drakconnect_.c:283
+msgid "Apply"
+msgstr "Pout"
+
+#: ../../standalone/drakconnect_.c:302
+msgid "Please Wait... Applying the configuration"
+msgstr "ekejte prosm... Aktivuji konfiguraci"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Connected"
+msgstr "Pipojen"
+
+#: ../../standalone/drakconnect_.c:384 ../../standalone/drakconnect_.c:407
+msgid "Not connected"
+msgstr "Nepipojen"
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Connect..."
+msgstr "Pipojit..."
+
+#: ../../standalone/drakconnect_.c:385 ../../standalone/drakconnect_.c:408
+msgid "Disconnect..."
+msgstr "Odpojit..."
+
+#: ../../standalone/drakconnect_.c:404
+msgid ""
+"Warning, another Internet connection has been detected, maybe using your "
+"network"
+msgstr "Varovn, bylo detekovno jin pipojen k Internetu, zejm je to s"
+
+#: ../../standalone/drakconnect_.c:431
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+"Nemte nakonfigurovno dn rozhran.\n"
+"Nastavte jej kliknutm na 'Konfigurovat'"
+
+#: ../../standalone/drakconnect_.c:453
+msgid "LAN Configuration"
+msgstr "Nastaven LAN"
+
+#: ../../standalone/drakconnect_.c:464
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptr %s: %s"
+
+#: ../../standalone/drakconnect_.c:470
+msgid "Boot Protocol"
+msgstr "Protokol o sputn"
+
+#: ../../standalone/drakconnect_.c:471
+msgid "Started on boot"
+msgstr "Spustit pi startu"
+
+#: ../../standalone/drakconnect_.c:472
+msgid "DHCP client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "activate now"
+msgstr "aktivovat nyn"
+
+#: ../../standalone/drakconnect_.c:497 ../../standalone/drakconnect_.c:500
+msgid "deactivate now"
+msgstr "deaktivovat nyn"
+
+#: ../../standalone/drakconnect_.c:503
+msgid ""
+"This interface has not been configured yet.\n"
+"Launch the configuration wizard in the main window"
+msgstr ""
+"Toto rozhran jet nebylo nastaveno.\n"
+"Spuste prvodce konfigurac z hlavnho okna"
+
+#: ../../standalone/drakconnect_.c:560
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+"Nemte dn pipojen k Internetu.\n"
+"Vytvote si jej kliknutm na 'Konfigurovat'"
+
+#: ../../standalone/drakconnect_.c:584
+msgid "Internet connection configuration"
+msgstr "Konfigurace pipojen k internetu"
+
+#: ../../standalone/drakconnect_.c:588
+msgid "Internet Connection Configuration"
+msgstr "Konfigurace pipojen k internetu"
+
+#: ../../standalone/drakconnect_.c:597
+msgid "Connection type: "
+msgstr "Typ pipojen:"
+
+#: ../../standalone/drakconnect_.c:603
+msgid "Parameters"
+msgstr "Parametry"
+
+#: ../../standalone/drakconnect_.c:621
+msgid "Gateway"
+msgstr "Brna(gateway)"
+
+#: ../../standalone/drakconnect_.c:630
+msgid "Ethernet Card"
+msgstr "Ethernetov karta"
+
+#: ../../standalone/drakconnect_.c:631
+msgid "DHCP Client"
+msgstr "DHCP klient"
+
+#: ../../standalone/drakfloppy_.c:64
+msgid "usage: drakfloppy\n"
+msgstr "pouit: drakfloppy\n"
+
+#: ../../standalone/drakfloppy_.c:68
+msgid "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
+msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-iso8859-2,*"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Module name"
+msgstr "Jmno modulu"
+
+#: ../../standalone/drakfloppy_.c:69
+msgid "Size"
+msgstr "Velikost"
+
+#: ../../standalone/drakfloppy_.c:74 ../../standalone/drakfloppy_.c:373
+msgid "drakfloppy"
+msgstr "drakfloppy"
+
+#: ../../standalone/drakfloppy_.c:91
+msgid "boot disk creation"
+msgstr "vytven zavdcch disket"
+
+#: ../../standalone/drakfloppy_.c:99 ../../standalone/drakfloppy_.c:112
+msgid "default"
+msgstr "pedvolen"
+
+#: ../../standalone/drakfloppy_.c:115
+#, c-format
+msgid "DrakFloppy Error: %s"
+msgstr "Chyba DrakFloppy: %s"
+
+#: ../../standalone/drakfloppy_.c:126
+msgid "kernel version"
+msgstr "verze jdra"
+
+#: ../../standalone/drakfloppy_.c:132
+msgid "General"
+msgstr "Obecn"
+
+#: ../../standalone/drakfloppy_.c:137
+msgid "Expert Area"
+msgstr "Expertn nastaven"
+
+#: ../../standalone/drakfloppy_.c:140
+msgid "mkinitrd optional arguments"
+msgstr "voliteln argumenty pro mkinitrd"
+
+#: ../../standalone/drakfloppy_.c:141
+msgid "Add a module"
+msgstr "Pidat modul"
+
+#: ../../standalone/drakfloppy_.c:161
+msgid "force"
+msgstr "vnutit"
+
+#: ../../standalone/drakfloppy_.c:162
+msgid "if needed"
+msgstr "pokud je poteba"
+
+#: ../../standalone/drakfloppy_.c:163
+msgid "omit scsi modules"
+msgstr "vynechat SCSI moduly"
+
+#: ../../standalone/drakfloppy_.c:164
+msgid "omit raid modules"
+msgstr "vynechat RAID moduly"
+
+#: ../../standalone/drakfloppy_.c:200
+msgid "Remove a module"
+msgstr "Odebrat modul"
+
+#: ../../standalone/drakfloppy_.c:222
+msgid "Output"
+msgstr "Vstup"
+
+#: ../../standalone/drakfloppy_.c:234
+msgid "Build the disk"
+msgstr "Vytvoit disk"
+
+#: ../../standalone/drakfloppy_.c:422
+#, c-format
+msgid "Be sure a media is present for the device %s"
+msgstr "Zkontrolujte, zda v je zazen %s vloeno mdium"
+
+#: ../../standalone/drakfloppy_.c:427
+#, c-format
+msgid ""
+"There is no medium or it is write-protected for device %s.\n"
+"Please insert one."
+msgstr ""
+"V zazen %s nen dn mdium, nebo je mdium chrnno proti zpisu.\n"
+"Vlote prosm njak."
+
+#: ../../standalone/drakfloppy_.c:429
+#, c-format
+msgid "Unable to fork: %s"
+msgstr "Nelze provst fork: %s"
+
+#: ../../standalone/drakfloppy_.c:433
+#, c-format
+msgid ""
+"Unable to close properly mkbootdisk: \n"
+" %s \n"
+" %s"
+msgstr ""
+"Nelze korektn ukonit mkbootdisk: \n"
+" %s \n"
+" %s"
+
+#: ../../standalone/drakfont_.c:232
msgid "Search installed fonts"
msgstr "Hledm instalovan fonty"
-#: ../../standalone/drakfont_.c:231
+#: ../../standalone/drakfont_.c:234
msgid "Unselect fonts installed"
msgstr "Odznait instalovan fonty"
-#: ../../standalone/drakfont_.c:252
+#: ../../standalone/drakfont_.c:258
msgid "parse all fonts"
msgstr "zpracovvm vechny fonty"
-#: ../../standalone/drakfont_.c:253
+#: ../../standalone/drakfont_.c:261
msgid "no fonts found"
msgstr "nebyly nalezeny dn fonty"
-#: ../../standalone/drakfont_.c:261 ../../standalone/drakfont_.c:303
-#: ../../standalone/drakfont_.c:352 ../../standalone/drakfont_.c:410
-#: ../../standalone/drakfont_.c:417 ../../standalone/drakfont_.c:443
-#: ../../standalone/drakfont_.c:455 ../../standalone/drakfont_.c:468
+#: ../../standalone/drakfont_.c:270 ../../standalone/drakfont_.c:324
+#: ../../standalone/drakfont_.c:380 ../../standalone/drakfont_.c:469
+#: ../../standalone/drakfont_.c:480 ../../standalone/drakfont_.c:507
+#: ../../standalone/drakfont_.c:521 ../../standalone/drakfont_.c:538
msgid "done"
msgstr "hotovo"
-#: ../../standalone/drakfont_.c:265
+#: ../../standalone/drakfont_.c:276
msgid "could not find any font in your mounted partitions"
msgstr "nelze nalzt dn fonty v pipojenm oddle"
-#: ../../standalone/drakfont_.c:301
+#: ../../standalone/drakfont_.c:322
msgid "Reselect correct fonts"
msgstr "Znovu vybrat sprvn fonty"
-#: ../../standalone/drakfont_.c:304
+#: ../../standalone/drakfont_.c:326
msgid "could not find any font.\n"
msgstr "nelze nalzt dn font.\n"
-#: ../../standalone/drakfont_.c:327
+#: ../../standalone/drakfont_.c:350
msgid "Search fonts in installed list"
msgstr "Hledat fonty mezi instalovanmi"
-#: ../../standalone/drakfont_.c:350
+#: ../../standalone/drakfont_.c:378
msgid "Fonts copy"
msgstr "Kopie fontu"
-#: ../../standalone/drakfont_.c:353
+#: ../../standalone/drakfont_.c:382
msgid "True Type fonts installation"
-msgstr "Instalace font True Type"
+msgstr "Instalace psem True Type"
-#: ../../standalone/drakfont_.c:357
+#: ../../standalone/drakfont_.c:390
msgid "please wait during ttmkfdir..."
msgstr "ekejte prosm, prv b ttmkfdir... "
-#: ../../standalone/drakfont_.c:359
+#: ../../standalone/drakfont_.c:395
msgid "True Type install done"
msgstr "Instalace True Type font je dokonena"
-#: ../../standalone/drakfont_.c:366 ../../standalone/drakfont_.c:382
+#: ../../standalone/drakfont_.c:404 ../../standalone/drakfont_.c:430
msgid "Fonts conversion"
msgstr "Konverze font"
-#: ../../standalone/drakfont_.c:370 ../../standalone/drakfont_.c:386
-#: ../../standalone/drakfont_.c:406
+#: ../../standalone/drakfont_.c:410 ../../standalone/drakfont_.c:434
+#: ../../standalone/drakfont_.c:465
msgid "type1inst building"
msgstr "vytvm type1inst"
-#: ../../standalone/drakfont_.c:375 ../../standalone/drakfont_.c:390
+#: ../../standalone/drakfont_.c:420 ../../standalone/drakfont_.c:443
msgid "Ghostscript referencing"
msgstr "Odkazy na Ghostscript"
-#: ../../standalone/drakfont_.c:397
+#: ../../standalone/drakfont_.c:453
msgid "ttf fonts conversion"
msgstr "konverze ttf font"
-#: ../../standalone/drakfont_.c:401
+#: ../../standalone/drakfont_.c:460
msgid "pfm fonts conversion"
msgstr "konverze pfm font"
-#: ../../standalone/drakfont_.c:411
+#: ../../standalone/drakfont_.c:471
msgid "Suppress temporary Files"
msgstr "Ignorovat doasn soubory"
-#: ../../standalone/drakfont_.c:414
+#: ../../standalone/drakfont_.c:474
msgid "Restart XFS"
msgstr "Restartovat XFS"
-#: ../../standalone/drakfont_.c:453 ../../standalone/drakfont_.c:463
+#: ../../standalone/drakfont_.c:519 ../../standalone/drakfont_.c:533
msgid "Suppress Fonts Files"
msgstr "Ignorovat soubory s fonty"
-#: ../../standalone/drakfont_.c:465
+#: ../../standalone/drakfont_.c:535
msgid "xfs restart"
msgstr "restart xfs"
-#: ../../standalone/drakfont_.c:472 ../../standalone/drakfont_.c:760
+#: ../../standalone/drakfont_.c:543 ../../standalone/drakfont_.c:952
msgid ""
"Before installing any fonts, be sure that you have the right to use and "
"install them on your system.\n"
@@ -10717,107 +11568,107 @@ msgstr ""
"- Fonty lze instalovat bnm zpsobem. Ve vjimench ppadech me patn "
"font zpsobit zamrznut X serveru."
-#: ../../standalone/drakfont_.c:547
+#: ../../standalone/drakfont_.c:631
msgid "Fonts Importation"
msgstr "Zavdn font"
-#: ../../standalone/drakfont_.c:562
+#: ../../standalone/drakfont_.c:661
msgid "Get Windows Fonts"
msgstr "Nast fonty z Windows"
-#: ../../standalone/drakfont_.c:564
+#: ../../standalone/drakfont_.c:669
msgid "Uninstall Fonts"
msgstr "Odinstalovat fonty"
-#: ../../standalone/drakfont_.c:568
-msgid "Advanced Options"
-msgstr "Rozen volby"
-
-#: ../../standalone/drakfont_.c:570
+#: ../../standalone/drakfont_.c:688
msgid "Font List"
msgstr "Seznam font"
-#: ../../standalone/drakfont_.c:739
+#: ../../standalone/drakfont_.c:910
msgid "Choose the applications that will support the fonts :"
msgstr "Zvolte aplikace, kter podporuj fonty:"
-#: ../../standalone/drakfont_.c:743
+#: ../../standalone/drakfont_.c:919
msgid "Ghostscript"
msgstr "Ghostscript"
-#: ../../standalone/drakfont_.c:747
+#: ../../standalone/drakfont_.c:926
msgid "StarOffice"
msgstr "StarOffice"
-#: ../../standalone/drakfont_.c:751
+#: ../../standalone/drakfont_.c:933
msgid "Abiword"
msgstr "Abiword"
-#: ../../standalone/drakfont_.c:755
+#: ../../standalone/drakfont_.c:940
msgid "Generic Printers"
msgstr "Obecn tiskrny"
-#: ../../standalone/drakfont_.c:792
+#: ../../standalone/drakfont_.c:1017
msgid "Select the font file or directory and click on 'Add'"
msgstr "Vyberte soubor s fontem nebo adres a kliknte na 'Pidat'"
-#: ../../standalone/drakfont_.c:828
+#: ../../standalone/drakfont_.c:1064
msgid "Install List"
msgstr "Instalovat seznam"
-#: ../../standalone/drakfont_.c:858
+#: ../../standalone/drakfont_.c:1107
msgid "click here if you are sure."
msgstr "kliknte zde, pokud jste si jisti."
-#: ../../standalone/drakfont_.c:860
+#: ../../standalone/drakfont_.c:1114
msgid "here if no."
msgstr "zde pokud si nejste jisti."
-#: ../../standalone/drakfont_.c:897
+#: ../../standalone/drakfont_.c:1175
msgid "Unselected All"
msgstr "Zruit cel vbr"
-#: ../../standalone/drakfont_.c:899
+#: ../../standalone/drakfont_.c:1179
msgid "Selected All"
msgstr "Vybrat ve"
-#: ../../standalone/drakfont_.c:901
+#: ../../standalone/drakfont_.c:1183
msgid "Remove List"
msgstr "Odebrat seznam"
-#: ../../standalone/drakfont_.c:919 ../../standalone/drakfont_.c:939
+#: ../../standalone/drakfont_.c:1205 ../../standalone/drakfont_.c:1238
msgid "Initials tests"
msgstr "vodn testy"
-#: ../../standalone/drakfont_.c:920
+#: ../../standalone/drakfont_.c:1208
msgid "Copy fonts on your system"
msgstr "Koprovat fonty do systmu"
-#: ../../standalone/drakfont_.c:921
+#: ../../standalone/drakfont_.c:1212
msgid "Install & convert Fonts"
msgstr "Instalovat & konvertovat fonty"
-#: ../../standalone/drakfont_.c:922
+#: ../../standalone/drakfont_.c:1216
msgid "Post Install"
msgstr "Poinstalan nastaven"
-#: ../../standalone/drakfont_.c:940
+#: ../../standalone/drakfont_.c:1241
msgid "Remove fonts on your system"
msgstr "Odebrat fonty ze systmu"
-#: ../../standalone/drakfont_.c:941
+#: ../../standalone/drakfont_.c:1245
msgid "Post Uninstall"
msgstr "Nastaven po odebrn"
-#: ../../standalone/drakgw_.c:43 ../../standalone/drakgw_.c:200
+#: ../../standalone/drakgw_.c:44 ../../standalone/drakgw_.c:197
msgid "Internet Connection Sharing"
msgstr "Sdlen Internetovho Pipojen"
-#: ../../standalone/drakgw_.c:138
+#: ../../standalone/drakgw_.c:123
+msgid "Sorry, we support only 2.4 kernels."
+msgstr "Omlouvme se, ale podporujeme pouze jdra ady 2.4."
+
+#: ../../standalone/drakgw_.c:135
msgid "Internet Connection Sharing currently enabled"
msgstr "Sdlen Internetovho pipojen je zapnuto"
-#: ../../standalone/drakgw_.c:139
+#: ../../standalone/drakgw_.c:136
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -10829,31 +11680,31 @@ msgstr ""
"\n"
"Co chcete dle dlat?"
-#: ../../standalone/drakgw_.c:143
+#: ../../standalone/drakgw_.c:140
msgid "disable"
msgstr "vypnout"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "dismiss"
msgstr "odmtnout"
-#: ../../standalone/drakgw_.c:143 ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:140 ../../standalone/drakgw_.c:165
msgid "reconfigure"
msgstr "pekonfigurovat"
-#: ../../standalone/drakgw_.c:146
+#: ../../standalone/drakgw_.c:143
msgid "Disabling servers..."
msgstr "Zakazuji servery..."
-#: ../../standalone/drakgw_.c:154
+#: ../../standalone/drakgw_.c:151
msgid "Internet connection sharing is now disabled."
msgstr "Sdlen Internetovho pipojen je nyn vypnuto."
-#: ../../standalone/drakgw_.c:163
+#: ../../standalone/drakgw_.c:160
msgid "Internet Connection Sharing currently disabled"
msgstr "Sdlen Internetovho pipojen je vypnuto"
-#: ../../standalone/drakgw_.c:164
+#: ../../standalone/drakgw_.c:161
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -10865,19 +11716,19 @@ msgstr ""
"\n"
"Co chcete dle dlat?"
-#: ../../standalone/drakgw_.c:168
+#: ../../standalone/drakgw_.c:165
msgid "enable"
msgstr "povolit"
-#: ../../standalone/drakgw_.c:175
+#: ../../standalone/drakgw_.c:172
msgid "Enabling servers..."
msgstr "Povoluji servery..."
-#: ../../standalone/drakgw_.c:180
+#: ../../standalone/drakgw_.c:177
msgid "Internet connection sharing is now enabled."
msgstr "Sdlen Internetovho pipojen je nyn zapnuto."
-#: ../../standalone/drakgw_.c:201
+#: ../../standalone/drakgw_.c:198
msgid ""
"You are about to configure your computer to share its Internet connection.\n"
"With that feature, other computers on your local network will be able to use "
@@ -10892,21 +11743,21 @@ msgstr ""
"\n"
"Pozn.: potebujete vyhrazen sov adaptr pro nastaven lokln st (LAN)."
-#: ../../standalone/drakgw_.c:227
+#: ../../standalone/drakgw_.c:224
#, c-format
msgid "Interface %s (using module %s)"
msgstr "Rozhran %s (pouv modul %s)"
-#: ../../standalone/drakgw_.c:228
+#: ../../standalone/drakgw_.c:225
#, c-format
msgid "Interface %s"
msgstr "Rozhran %s"
-#: ../../standalone/drakgw_.c:236
+#: ../../standalone/drakgw_.c:233
msgid "No network adapter on your system!"
msgstr "Ve vaem systmu nen dn sov adaptr!"
-#: ../../standalone/drakgw_.c:237
+#: ../../standalone/drakgw_.c:234
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -10914,11 +11765,11 @@ msgstr ""
"Ve vaem potai nebyl nalezen dn sov adaptr. Spuste prosm program "
"pro nastaven hardware."
-#: ../../standalone/drakgw_.c:243
+#: ../../standalone/drakgw_.c:240
msgid "Network interface"
msgstr "Sov rozhran"
-#: ../../standalone/drakgw_.c:244
+#: ../../standalone/drakgw_.c:241
#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
@@ -10933,17 +11784,17 @@ msgstr ""
"\n"
"Na tomto adaptru bude nastavena lokln s."
-#: ../../standalone/drakgw_.c:253
+#: ../../standalone/drakgw_.c:250
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr "Prosm zvolte si, ke ktermu sovmu adaptru bude pipojena LAN."
-#: ../../standalone/drakgw_.c:271
+#: ../../standalone/drakgw_.c:268
msgid "Network interface already configured"
msgstr "Sov rozhran je ji nastaveno"
-#: ../../standalone/drakgw_.c:272
+#: ../../standalone/drakgw_.c:269
#, c-format
msgid ""
"Warning, the network adapter (%s) is already configured.\n"
@@ -10958,15 +11809,15 @@ msgstr ""
"\n"
"Lze to tak provst run, ale muste vdt, co dlte."
-#: ../../standalone/drakgw_.c:277
+#: ../../standalone/drakgw_.c:274
msgid "Automatic reconfiguration"
msgstr "Automatick penastaven"
-#: ../../standalone/drakgw_.c:278
+#: ../../standalone/drakgw_.c:275
msgid "Show current interface configuration"
msgstr "Zobrazit aktuln nastaven rozhran"
-#: ../../standalone/drakgw_.c:280
+#: ../../standalone/drakgw_.c:277
#, c-format
msgid ""
"Current configuration of `%s':\n"
@@ -10983,7 +11834,7 @@ msgstr ""
"IP atributy: %s\n"
"Ovlada: %s"
-#: ../../standalone/drakgw_.c:292
+#: ../../standalone/drakgw_.c:289
msgid ""
"I can keep your current configuration and assume you already set up a DHCP "
"server; in that case please verify I correctly read the C-Class Network that "
@@ -11002,32 +11853,32 @@ msgstr ""
"poteby.\n"
"\n"
-#: ../../standalone/drakgw_.c:297
+#: ../../standalone/drakgw_.c:294
msgid "C-Class Local Network"
msgstr "Lokln s"
-#: ../../standalone/drakgw_.c:298
+#: ../../standalone/drakgw_.c:295
msgid "(This) DHCP Server IP"
msgstr "Adresa DHCP serveru"
-#: ../../standalone/drakgw_.c:299
+#: ../../standalone/drakgw_.c:296
msgid "Re-configure interface and DHCP server"
msgstr "Penastaven rozhran a DHCP serveru"
-#: ../../standalone/drakgw_.c:306
+#: ../../standalone/drakgw_.c:303
msgid "The Local Network did not finish with `.0', bailing out."
-msgstr "slo lokln s nekon na .0, zkoum znovu."
+msgstr "slo lokln st nekon na .0, zkoum znovu."
-#: ../../standalone/drakgw_.c:317
+#: ../../standalone/drakgw_.c:314
#, c-format
msgid "Potential LAN address conflict found in current config of %s!\n"
msgstr "Nael jsem mon konflikt v souasnm nastaven LAN adresy pro %s!\n"
-#: ../../standalone/drakgw_.c:325 ../../standalone/drakgw_.c:331
+#: ../../standalone/drakgw_.c:322
msgid "Firewalling configuration detected!"
msgstr "Nael jsem existujc nastaven firewallu!"
-#: ../../standalone/drakgw_.c:326 ../../standalone/drakgw_.c:332
+#: ../../standalone/drakgw_.c:323
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fix after installation."
@@ -11035,20 +11886,20 @@ msgstr ""
"Varovn! Bylo nalezeno existujc nastaven firewallu. Po instalaci me "
"bt zapoteb njak run prava."
-#: ../../standalone/drakgw_.c:340
+#: ../../standalone/drakgw_.c:330
msgid "Configuring..."
msgstr "Nastavuji..."
-#: ../../standalone/drakgw_.c:341
+#: ../../standalone/drakgw_.c:331
msgid "Configuring scripts, installing software, starting servers..."
msgstr "Nastavuji skripty, instaluji software, startuji servery..."
-#: ../../standalone/drakgw_.c:378
+#: ../../standalone/drakgw_.c:367
#, c-format
msgid "Problems installing package %s"
msgstr "Problm s instalac balku %s"
-#: ../../standalone/drakgw_.c:672
+#: ../../standalone/drakgw_.c:551
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -11058,23 +11909,23 @@ msgstr ""
"Nyn lze pout tento pota pro sdlen pipojen k Internetu pro vai "
"lokln s, kter pouv automatickou konfiguraci st (DHCP)."
-#: ../../standalone/drakgw_.c:689
+#: ../../standalone/drakgw_.c:568
msgid "The setup has already been done, but it's currently disabled."
msgstr "Nastaven ji bylo provedeno, ale nyn je vypnuto."
-#: ../../standalone/drakgw_.c:690
+#: ../../standalone/drakgw_.c:569
msgid "The setup has already been done, and it's currently enabled."
msgstr "Nastaven ji bylo provedeno, nyn je povoleno."
-#: ../../standalone/drakgw_.c:691
+#: ../../standalone/drakgw_.c:570
msgid "No Internet Connection Sharing has ever been configured."
msgstr "Nen nastaveno dn sdlen Internetovho pipojen."
-#: ../../standalone/drakgw_.c:696
+#: ../../standalone/drakgw_.c:575
msgid "Internet connection sharing configuration"
msgstr "Nastaven sdlen pipojen k Internetu"
-#: ../../standalone/drakgw_.c:703
+#: ../../standalone/drakgw_.c:582
#, c-format
msgid ""
"Welcome to the Internet Connection Sharing utility!\n"
@@ -11089,214 +11940,6 @@ msgstr ""
"\n"
"Kliknte na Konfigurovat, pokud chcete spustit prvodce nastavenm."
-#: ../../standalone/draknet_.c:80
-#, c-format
-msgid "Network configuration (%d adapters)"
-msgstr "Nastaven st (%d adaptry())"
-
-#: ../../standalone/draknet_.c:87 ../../standalone/draknet_.c:595
-msgid "Profile: "
-msgstr "Profil: "
-
-#: ../../standalone/draknet_.c:95
-msgid "Del profile..."
-msgstr "Smazat profil..."
-
-#: ../../standalone/draknet_.c:101
-msgid "Profile to delete:"
-msgstr "Smazat profil:"
-
-#: ../../standalone/draknet_.c:129
-msgid "New profile..."
-msgstr "Nov profil..."
-
-#: ../../standalone/draknet_.c:135
-msgid ""
-"Name of the profile to create (the new profile is created as a copy of the "
-"current one) :"
-msgstr ""
-"Zadejte jmno vytvenho profilu (nov profil je vytvoen jako kopie "
-"vybranho) :"
-
-#: ../../standalone/draknet_.c:161
-msgid "Hostname: "
-msgstr "Jmno potae: "
-
-#: ../../standalone/draknet_.c:168
-msgid "Internet access"
-msgstr "Pstup na Internet"
-
-#: ../../standalone/draknet_.c:181
-msgid "Type:"
-msgstr "Typ:"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Gateway:"
-msgstr "Brna(gateway):"
-
-#: ../../standalone/draknet_.c:184 ../../standalone/draknet_.c:376
-msgid "Interface:"
-msgstr "Rozhran:"
-
-#: ../../standalone/draknet_.c:195
-msgid "Status:"
-msgstr "Status:"
-
-#: ../../standalone/draknet_.c:202
-msgid "Wait please"
-msgstr "ekejte prosm"
-
-#: ../../standalone/draknet_.c:220
-msgid "Configure Internet Access..."
-msgstr "Nastavuji pstup na Internet..."
-
-#: ../../standalone/draknet_.c:227 ../../standalone/draknet_.c:449
-msgid "LAN configuration"
-msgstr "Nastaven LAN"
-
-#: ../../standalone/draknet_.c:232
-msgid "Driver"
-msgstr "Ovlada"
-
-#: ../../standalone/draknet_.c:232
-msgid "Interface"
-msgstr "Rozhran"
-
-#: ../../standalone/draknet_.c:232
-msgid "Protocol"
-msgstr "Protokol"
-
-#: ../../standalone/draknet_.c:232
-msgid "State"
-msgstr "Status"
-
-#: ../../standalone/draknet_.c:244
-msgid "Configure Local Area Network..."
-msgstr "Nastavuji lokln s..."
-
-#: ../../standalone/draknet_.c:256
-msgid "Click here to launch the wizard ->"
-msgstr "Kliknte pro sputn prvodce ->"
-
-#: ../../standalone/draknet_.c:257
-msgid "Wizard..."
-msgstr "Prvodce..."
-
-#: ../../standalone/draknet_.c:283
-msgid "Apply"
-msgstr "Pout"
-
-#: ../../standalone/draknet_.c:302
-msgid "Please Wait... Applying the configuration"
-msgstr "ekejte prosm... Aktivuji konfiguraci"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Connected"
-msgstr "Pipojen"
-
-#: ../../standalone/draknet_.c:384 ../../standalone/draknet_.c:407
-msgid "Not connected"
-msgstr "Nepipojen"
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Connect..."
-msgstr "Pipojit..."
-
-#: ../../standalone/draknet_.c:385 ../../standalone/draknet_.c:408
-msgid "Disconnect..."
-msgstr "Odpojit..."
-
-#: ../../standalone/draknet_.c:404
-msgid ""
-"Warning, another Internet connection has been detected, maybe using your "
-"network"
-msgstr "Varovn, bylo detekovno jin pipojen k Internetu, zejm je to s"
-
-#: ../../standalone/draknet_.c:431
-msgid ""
-"You don't have any configured interface.\n"
-"Configure them first by clicking on 'Configure'"
-msgstr ""
-"Nemte nakonfigurovno dn rozhran.\n"
-"Nastavte jej kliknutm na 'Konfigurovat'"
-
-#: ../../standalone/draknet_.c:453
-msgid "LAN Configuration"
-msgstr "Nastaven LAN"
-
-#: ../../standalone/draknet_.c:464
-#, c-format
-msgid "Adapter %s: %s"
-msgstr "Adaptr %s: %s"
-
-#: ../../standalone/draknet_.c:470
-msgid "Boot Protocol"
-msgstr "Protokol o sputn"
-
-#: ../../standalone/draknet_.c:471
-msgid "Started on boot"
-msgstr "Spustit pi startu"
-
-#: ../../standalone/draknet_.c:472
-msgid "DHCP client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "activate now"
-msgstr "aktivovat nyn"
-
-#: ../../standalone/draknet_.c:497 ../../standalone/draknet_.c:500
-msgid "deactivate now"
-msgstr "deaktivovat nyn"
-
-#: ../../standalone/draknet_.c:503
-msgid ""
-"This interface has not been configured yet.\n"
-"Launch the configuration wizard in the main window"
-msgstr ""
-"Toto rozhran jet nebylo nastaveno.\n"
-"Spuste prvodce konfigurac z hlavnho okna"
-
-#: ../../standalone/draknet_.c:560
-msgid ""
-"You don't have any internet connection.\n"
-"Create one first by clicking on 'Configure'"
-msgstr ""
-"Nemte dn pipojen k Internetu.\n"
-"Vytvote si jej kliknutm na 'Konfigurovat'"
-
-#: ../../standalone/draknet_.c:584
-msgid "Internet connection configuration"
-msgstr "Konfigurace pipojen k internetu"
-
-#: ../../standalone/draknet_.c:588
-msgid "Internet Connection Configuration"
-msgstr "Konfigurace pipojen k internetu"
-
-#: ../../standalone/draknet_.c:597
-msgid "Connection type: "
-msgstr "Typ pipojen:"
-
-#: ../../standalone/draknet_.c:603
-msgid "Parameters"
-msgstr "Parametry"
-
-#: ../../standalone/draknet_.c:621
-msgid "Gateway"
-msgstr "Brna(gateway)"
-
-#: ../../standalone/draknet_.c:630
-msgid "Ethernet Card"
-msgstr "Ethernetov karta"
-
-#: ../../standalone/draknet_.c:631
-msgid "DHCP Client"
-msgstr "DHCP klient"
-
-#: ../../standalone/draksec_.c:31
-msgid "Setting security level"
-msgstr "rove zabezpeen"
-
#: ../../standalone/drakxconf_.c:47
msgid "Control Center"
msgstr "dc centrum"
@@ -11305,63 +11948,93 @@ msgstr "dc centrum"
msgid "Choose the tool you want to use"
msgstr "Zvolte si nstroj, kter chcete pout"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:55
+msgid ""
+"XawTV isn't installed!\n"
+"\n"
+"\n"
+"If you do have a TV card but DrakX has neither detected it (no bttv\n"
+"module in \"/etc/modules\") nor installed xawtv, please send the\n"
+"results of \"lspcidrake -v -f\" to \"install\\@mandrakesoft.com\"\n"
+"with subject \"undetected TV card\".\n"
+"\n"
+"\n"
+"You can install it by typing \"urpmi xawtv\" as root, in a console."
+msgstr ""
+"Aplikace XawTV nen nainstalovan!\n"
+"\n"
+"\n"
+"Mte-li TV kartu a nstroj DrakX ji ani nerozpoznal (nen ptomen\n"
+"modul bttv v \"/etc/modules\"), ani nenainstaloval aplikaci XawTV, polete\n"
+"prosm vsledek pkazu \"lspcidrake -v -f\" na adresu \"install"
+"\\@mandrakesoft.com\"\n"
+"s pedmtem zprvy \"undetected TV card\".\n"
+"\n"
+"\n"
+"Tuto aplikaci mete doinstalovat pkazem \"urpmi xawtv\" sputnm \n"
+"v konzoli pod uivatelem root."
+
+#: ../../standalone/drakxtv_.c:72
msgid "Canada (cable)"
msgstr "Kanada (kabel)"
-#: ../../standalone/drakxtv_.c:48
-msgid "USA (bcast)"
-msgstr "USA (bcast)"
+#: ../../standalone/drakxtv_.c:72
+msgid "USA (broadcast)"
+msgstr "USA (broadcast)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable)"
msgstr "USA (kabel)"
-#: ../../standalone/drakxtv_.c:48
+#: ../../standalone/drakxtv_.c:72
msgid "USA (cable-hrc)"
msgstr "USA (cable-hrc)"
-#: ../../standalone/drakxtv_.c:49
-msgid "China (bcast)"
-msgstr "na (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "China (broadcast)"
+msgstr "na (broadcast)"
-#: ../../standalone/drakxtv_.c:49
-msgid "Japan (bcast)"
-msgstr "Japonsko (bcast)"
+#: ../../standalone/drakxtv_.c:73
+msgid "Japan (broadcast)"
+msgstr "Japonsko (broadcast)"
-#: ../../standalone/drakxtv_.c:49
+#: ../../standalone/drakxtv_.c:73
msgid "Japan (cable)"
msgstr "Japonsko (kabel)"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "East Europe"
msgstr "Vchodn Evropa"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
+msgid "France [SECAM]"
+msgstr "Francie [SECAM]"
+
+#: ../../standalone/drakxtv_.c:74
msgid "Ireland"
msgstr "Irsko"
-#: ../../standalone/drakxtv_.c:50
+#: ../../standalone/drakxtv_.c:74
msgid "West Europe"
msgstr "Zpadn Evropa"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Australia"
msgstr "Austrlie"
-#: ../../standalone/drakxtv_.c:51
+#: ../../standalone/drakxtv_.c:75
msgid "Newzealand"
msgstr "Nov Zland"
-#: ../../standalone/drakxtv_.c:52
+#: ../../standalone/drakxtv_.c:76
msgid "South Africa"
msgstr "Jin Afrika"
-#: ../../standalone/drakxtv_.c:53
+#: ../../standalone/drakxtv_.c:77
msgid "Argentina"
msgstr "Argentina"
-#: ../../standalone/drakxtv_.c:58
+#: ../../standalone/drakxtv_.c:112
msgid ""
"Please,\n"
"type in your tv norm and country"
@@ -11369,27 +12042,43 @@ msgstr ""
"Zadejte prosm\n"
"typ TV normy a zemi"
-#: ../../standalone/drakxtv_.c:60
+#: ../../standalone/drakxtv_.c:114
msgid "TV norm :"
msgstr "Norma TV:"
-#: ../../standalone/drakxtv_.c:61
+#: ../../standalone/drakxtv_.c:115
msgid "Area :"
msgstr "Oblast :"
-#: ../../standalone/drakxtv_.c:65
+#: ../../standalone/drakxtv_.c:119
msgid "Scanning for TV channels in progress ..."
msgstr "Probh vyhledvn TV kanl ..."
-#: ../../standalone/drakxtv_.c:72
+#: ../../standalone/drakxtv_.c:127
msgid "Scanning for TV channels"
msgstr "Vyhledvm TV kanly"
-#: ../../standalone/drakxtv_.c:83
+#: ../../standalone/drakxtv_.c:130
+msgid "There was an error while scanning for TV channels"
+msgstr "Nastala chyba pi zkoumn TV kanl"
+
+#: ../../standalone/drakxtv_.c:131
+msgid "XawTV isn't installed!"
+msgstr "Aplikace XawTV nen nainstalovan!"
+
+#: ../../standalone/drakxtv_.c:134
+msgid "Have a nice day!"
+msgstr "Peji hezk den!"
+
+#: ../../standalone/drakxtv_.c:135
+msgid "Now, you can run xawtv (under X Window!) !\n"
+msgstr "Nyn mete spustit aplikaci XawTV (pod X Windows!)\n"
+
+#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
msgstr "Nebyla nalezena TV karta!"
-#: ../../standalone/drakxtv_.c:84
+#: ../../standalone/drakxtv_.c:154
msgid ""
"No TV Card has been detected on your machine. Please verify that a Linux-"
"supported Video/TV Card is correctly plugged in.\n"
@@ -11419,7 +12108,7 @@ msgstr "Jak je rozloen va klvesnice?"
#: ../../standalone/keyboarddrake_.c:36
msgid "Do you want the BackSpace to return Delete in console?"
-msgstr "Chcete, aby se klvesa BackSpace chovala v konzoli jako Delete?"
+msgstr "Chcete, aby se klvesa Backspace chovala v konzoli jako Delete?"
#: ../../standalone/livedrake_.c:24
msgid "Change Cd-Rom"
@@ -11439,9 +12128,9 @@ msgstr "Nelze spustit aktualizaci na bc systm !!!\n"
#: ../../standalone/localedrake_.c:32
msgid "The change is done, but to be effective you must logout"
-msgstr "Zmny jsou provedeny, ale pro aktivaci je nutn provst logout"
+msgstr "Zmny jsou provedeny, ale pro aktivaci je nutn provst odhlen"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:501
+#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:526
msgid "logdrake"
msgstr "logdrake"
@@ -11451,7 +12140,7 @@ msgstr "Zobrazit pouze pro vybran den"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
-msgstr "/_Soubor/_Nov"
+msgstr "/Soubor/_Nov"
#: ../../standalone/logdrake_.c:102
msgid "<control>N"
@@ -11489,10 +12178,6 @@ msgstr "/_Volby"
msgid "/Options/Test"
msgstr "/Volby/Test"
-#: ../../standalone/logdrake_.c:110
-msgid "/_Help"
-msgstr "/_Npovda"
-
#: ../../standalone/logdrake_.c:111
msgid "/Help/_About..."
msgstr "/Npovda/_O aplikaci..."
@@ -11527,7 +12212,7 @@ msgstr "vyhledat"
#: ../../standalone/logdrake_.c:185
msgid "A tool to monitor your logs"
-msgstr "Nstroj na monitorovn log"
+msgstr "Nstroj na sledovn log"
#: ../../standalone/logdrake_.c:186
msgid "Settings"
@@ -11553,7 +12238,7 @@ msgstr "Kalend"
msgid "Content of the file"
msgstr "Obsah souboru"
-#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:390
+#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:392
msgid "Mail/SMS alert"
msgstr "Varovn zprvy pes Mail/SMS"
@@ -11562,11 +12247,11 @@ msgstr "Varovn zprvy pes Mail/SMS"
msgid "please wait, parsing file: %s"
msgstr "ekejte prosm, zpracovvm soubor: %s"
-#: ../../standalone/logdrake_.c:405
+#: ../../standalone/logdrake_.c:409
msgid "Mail/SMS alert configuration"
msgstr "Nastaven upozornn pes Mail/SMS"
-#: ../../standalone/logdrake_.c:406
+#: ../../standalone/logdrake_.c:410
msgid ""
"Welcome to the mail/SMS configuration utility.\n"
"\n"
@@ -11576,63 +12261,94 @@ msgstr ""
"\n"
"Zde lze nastavit posln varovnch zprv.\n"
-#: ../../standalone/logdrake_.c:414
-msgid "proftpd"
-msgstr "proftpd"
-
#: ../../standalone/logdrake_.c:417
-msgid "sshd"
-msgstr "sshd"
+msgid "Apache World Wide Web Server"
+msgstr ""
#: ../../standalone/logdrake_.c:418
-msgid "webmin"
-msgstr "webmin"
+#, fuzzy
+msgid "Domain Name Resolver"
+msgstr "Jmno domny"
#: ../../standalone/logdrake_.c:419
-msgid "xinetd"
-msgstr "xinetd"
+#, fuzzy
+msgid "Ftp Server"
+msgstr "Zastavit server"
+
+#: ../../standalone/logdrake_.c:420
+#, fuzzy
+msgid "Postfix Mail Server"
+msgstr "Potovn server postfix, server pro diskusn skupiny Inn"
+
+#: ../../standalone/logdrake_.c:421
+#, fuzzy
+msgid "Samba Server"
+msgstr "Spustit server"
#: ../../standalone/logdrake_.c:422
+#, fuzzy
+msgid "SSH Server"
+msgstr "NIS Server"
+
+#: ../../standalone/logdrake_.c:423
+#, fuzzy
+msgid "Webmin Service"
+msgstr "Sluby"
+
+#: ../../standalone/logdrake_.c:424
+#, fuzzy
+msgid "Xinetd Service"
+msgstr "Tiskov server"
+
+#: ../../standalone/logdrake_.c:431
msgid "service setting"
msgstr "nastaven slueb"
-#: ../../standalone/logdrake_.c:423
+#: ../../standalone/logdrake_.c:432
msgid ""
"You will receive an alert if one of the selected service is no more running"
msgstr "Pokud jedna z vybranch slueb nepob, obdrte varovnou zprvu"
-#: ../../standalone/logdrake_.c:433
+#: ../../standalone/logdrake_.c:445
msgid "load setting"
msgstr "nahrt volby"
-#: ../../standalone/logdrake_.c:434
+#: ../../standalone/logdrake_.c:446
msgid "You will receive an alert if the load is higher than this value"
msgstr "Pokud bude hodnota vet ne zadan slo, obdrte varovnou zprvu"
-#: ../../standalone/logdrake_.c:447
+#: ../../standalone/logdrake_.c:459
msgid "alert configuration"
msgstr "nastaven varovn"
-#: ../../standalone/logdrake_.c:448
+#: ../../standalone/logdrake_.c:460
msgid "Configure the way the system will alert you"
msgstr "Nastavuje zpsob, jakm bude systm poslat varovn hlky"
-#: ../../standalone/logdrake_.c:478
+#: ../../standalone/logdrake_.c:503
msgid "Save as.."
msgstr "Uloit jako..."
-#: ../../standalone/mousedrake_.c:49
+#: ../../standalone/mousedrake_.c:44
msgid "Please, choose the type of your mouse."
msgstr "Jak je typ va myi?"
-#: ../../standalone/mousedrake_.c:59
+#: ../../standalone/mousedrake_.c:54
msgid "no serial_usb found\n"
msgstr "nebylo nalezeno serial_usb\n"
-#: ../../standalone/mousedrake_.c:63
+#: ../../standalone/mousedrake_.c:58
msgid "Emulate third button?"
msgstr "Emulovat tet tlatko?"
+#: ../../standalone/printerdrake_.c:49
+msgid "Reading printer data ..."
+msgstr "Natm daje o tiskrn ..."
+
+#: ../../standalone/scannerdrake_.c:42
+msgid "Detecting devices ..."
+msgstr "Detekuji zazen ..."
+
#: ../../standalone/scannerdrake_.c:53
#, c-format
msgid "%s found on %s, configure it ?"
@@ -11667,8 +12383,8 @@ msgid ""
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
-"Skener %s mus bt nastaven pomoc nstroje printerdrake.\n"
-"Spustit printerdrake lze z dcho centra Mandrake v sekci Hardware"
+"Skener %s mus bt nastaven pomoc nstroje PrinterDrake.\n"
+"Spustit PrinterDrake lze z dcho centra Mandrake v sekci Hardware"
#: ../../standalone/scannerdrake_.c:107
#, c-format
@@ -11681,6 +12397,20 @@ msgstr ""
"Nyn lze skenovat dokumenty pomoc aplikace \"XSane\" z nabdky aplikac "
"Multimdia/Grafika."
+#: ../../standalone/service_harddrake_.c:57
+#, c-format
+msgid "Some devices in the \"%s\" hardware class were removed:\n"
+msgstr "Nkter zazen v td hardware \"%s\" byla odstranna:\n"
+
+#: ../../standalone/service_harddrake_.c:61
+#, c-format
+msgid ""
+"\n"
+"Some devices in the %s class were added:\n"
+msgstr ""
+"\n"
+"Nkter zazen v td hardware \"%s\" byla pidna:\n"
+
#: ../../standalone/tinyfirewall_.c:31
msgid "Firewalling Configuration"
msgstr "Konfigurace firewallu"
@@ -11721,7 +12451,7 @@ msgstr "Volba typu instalace"
#: ../../steps.pm_.c:16
msgid "Hard drive detection"
-msgstr "Detekce hardisk"
+msgstr "Detekce pevnch disk"
#: ../../steps.pm_.c:17
msgid "Configure mouse"
@@ -11977,11 +12707,11 @@ msgstr "Prvodce konfigurac firewallu"
#: ../../tinyfirewall.pm_.c:199
msgid "No (firewall this off from the internet)"
-msgstr "Ne (zakzat na firewalu)"
+msgstr "Ne (zakzat na firewallu)"
#: ../../tinyfirewall.pm_.c:200
msgid "Yes (allow this through the firewall)"
-msgstr "Ano (povolit na firewalu)"
+msgstr "Ano (povolit na firewallu)"
#: ../../tinyfirewall.pm_.c:232
msgid "Please Wait... Verifying installed packages"
@@ -12037,8 +12767,8 @@ msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
msgstr ""
-"Programy pro kancel: textov procesory (kword, abiword), tabulkov "
-"procesory (kspread, gnumeric), prohlee pdf a dal"
+"Programy pro kancel: textov procesory (KWord, Abiword), tabulkov "
+"procesory (KSpread, Gnumeric), prohlee PDF a dal"
#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
@@ -12054,7 +12784,7 @@ msgstr "Pracovn stanice s KDE"
#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Icewm, Window Maker, Enlightenment, Fvwm a dal"
+msgstr "IceWM, Window Maker, Enlightenment, Fvwm a dal"
#: ../../share/compssUsers:999
msgid "Multimedia - Video"
@@ -12062,7 +12792,8 @@ msgstr "Multimdia - video"
#: ../../share/compssUsers:999
msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Skupina program pro mail, newsy, web, penos soubor a chat"
+msgstr ""
+"Skupina program pro potu, diskusn skupiny, web, penos soubor a chat"
#: ../../share/compssUsers:999
msgid "Database"
@@ -12070,7 +12801,7 @@ msgstr "Databze"
#: ../../share/compssUsers:999
msgid "PostgreSQL or MySQL database server"
-msgstr "Databzov servery PostreSQL nebo MySQL"
+msgstr "Databzov servery PostgreSQL nebo MySQL"
#: ../../share/compssUsers:999
msgid "Tools to ease the configuration of your computer"
@@ -12081,10 +12812,6 @@ msgid "Multimedia - Sound"
msgstr "Multimdia - zvuk"
#: ../../share/compssUsers:999
-msgid "Utilities"
-msgstr "Utility"
-
-#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentace"
@@ -12094,7 +12821,7 @@ msgstr "Konzolov nstroje"
#: ../../share/compssUsers:999
msgid "Postfix mail server, Inn news server"
-msgstr "Potovn server postfix, server pro news Inn"
+msgstr "Potovn server postfix, server pro diskusn skupiny Inn"
#: ../../share/compssUsers:999
msgid "Internet station"
@@ -12102,7 +12829,7 @@ msgstr "Internetov stanice"
#: ../../share/compssUsers:999
msgid "Multimedia station"
-msgstr "Multimdiln stanice"
+msgstr "Multimediln stanice"
#: ../../share/compssUsers:999
msgid "Configuration"
@@ -12142,11 +12869,11 @@ msgstr "Server"
#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm a dal"
+msgstr "Gnome, IceWM, Window Maker, Enlightenment, Fvwm a dal"
#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
-msgstr "Grafick programy jako nap. Gimp"
+msgstr "Grafick programy jako nap. GIMP"
#: ../../share/compssUsers:999
msgid "DNS/NIS "
@@ -12162,7 +12889,7 @@ msgstr "Sov server"
#: ../../share/compssUsers:999
msgid "Mail/Groupware/News"
-msgstr "Pota/Groupware/News"
+msgstr "Pota/Groupware/Diskuse"
#: ../../share/compssUsers:999
msgid "Game station"
@@ -12185,12 +12912,8 @@ msgid ""
"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
"browse the Web"
msgstr ""
-"Kolekce nstroj pro ten a poslan mail (pine, mutt, tin..) a pro "
-"prohlen Webu"
-
-#: ../../share/compssUsers:999
-msgid "Archiving, emulators, monitoring"
-msgstr "Archivace, emultory, minitoring"
+"Kolekce nstroj pro ten a poslan el. poty a pspvk do diskusnch "
+"skupin (pine, mutt, tin..) a pro prohlen Webu"
#: ../../share/compssUsers:999
msgid "Personal Finance"
@@ -12226,7 +12949,7 @@ msgstr "Editory, shelly, souborov nstroje, terminly"
#: ../../share/compssUsers:999
msgid "Programs to manage your finance, such as gnucash"
-msgstr "Programy na sprvu financ jako nap. gnucash"
+msgstr "Programy na sprvu financ jako nap. GnuCash"
#: ../../share/compssUsers:999
msgid "Personal Information Management"
@@ -12239,3 +12962,157 @@ msgstr "Multimdia - vypalovn CD"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Vdeck stanice"
+
+#~ msgid "fsck failed with exit code %d or signal %d"
+#~ msgstr "selhal bh fsck s nvratovm kdem %d nebo signlem %d"
+
+#~ msgid "Graphics card identification: %s\n"
+#~ msgstr "Identifikace grafick karty: %s\n"
+
+#~ msgid "Choose options for server"
+#~ msgstr "Zvolte monosti pro dan X server"
+
+#~ msgid "Monitor not configured"
+#~ msgstr "Monitor nen nastaven"
+
+#~ msgid "Graphics card not configured yet"
+#~ msgstr "Grafick karta jet nen nastavena"
+
+#~ msgid "Resolutions not chosen yet"
+#~ msgstr "Jet nejsou zvolena rozlien"
+
+#~ msgid ""
+#~ "\n"
+#~ "try to change some parameters"
+#~ msgstr ""
+#~ "\n"
+#~ "zkuste zmnit nkter parametry"
+
+#~ msgid "An error occurred:"
+#~ msgstr "Vyskytla se tato chyba:"
+
+#~ msgid "Leaving in %d seconds"
+#~ msgstr "Test skon automaticky za %d sekund"
+
+#~ msgid "Is this the correct setting?"
+#~ msgstr "Je to sprvn nastaven?"
+
+#~ msgid "An error occurred, try to change some parameters"
+#~ msgstr "Vyskytla se chyba, zkuste zmnit nkter parametry"
+
+#~ msgid "XFree86 server: %s"
+#~ msgstr "XFree86 server: %s"
+
+#~ msgid "Show all"
+#~ msgstr "Ukzat ve"
+
+#~ msgid "Preparing X-Window configuration"
+#~ msgstr "Pipravuji nastaven X-Window"
+
+#~ msgid "What do you want to do?"
+#~ msgstr "Co chcete dlat?"
+
+#~ msgid "Change Monitor"
+#~ msgstr "Zmnit monitor"
+
+#~ msgid "Change Graphics card"
+#~ msgstr "Zmnit grafickou kartu"
+
+#~ msgid "Change Server options"
+#~ msgstr "Zmnit parametry X Serveru"
+
+#~ msgid "Change Resolution"
+#~ msgstr "Zmnit rozlien"
+
+#~ msgid "Show information"
+#~ msgstr "Zobrazit informace"
+
+#~ msgid "Test again"
+#~ msgstr "Znovu vyzkouet nastaven X"
+
+#~ msgid ""
+#~ "Description of the fields:\n"
+#~ "\n"
+#~ "Bus: this is the physical bus on which the device is plugged (eg: PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Bus identification: \n"
+#~ "- pci devices : this list the vendor, device, subvendor and subdevice PCI "
+#~ "ids\n"
+#~ "\n"
+#~ "Description: this field describe the device\n"
+#~ "\n"
+#~ "Location on the bus: \n"
+#~ "- pci devices: this gives the PCI slot, device and function of this card\n"
+#~ "- eide devices: the device is either a slave or a master device\n"
+#~ "- scsi devices: the scsi bus and the scsi device ids\n"
+#~ "\n"
+#~ "Media class: class of hardware device\n"
+#~ "\n"
+#~ "Module: the module of the GNU/Linux kernel that handle that device\n"
+#~ "\n"
+#~ "Vendor: the vendor name of the device\n"
+#~ msgstr ""
+#~ "Vysvtlivky k polm:\n"
+#~ "\n"
+#~ "Sbrnice: fyzick sbrnice, do n je zazen zapojeno (nap. PCI, "
+#~ "USB, ...)\n"
+#~ "\n"
+#~ "Identifikace sbrnice: \n"
+#~ "- PCI zazen: zobrazuje ID dodavatele, zazen, subdodavatele a "
+#~ "podzazen\n"
+#~ "\n"
+#~ "Popis: Toto pole ble popisuje zazen.\n"
+#~ "\n"
+#~ "Umstn na sbrnici:\n"
+#~ "- zazen PCI: uruje PCI slot, zazen a funkce tto karty\n"
+#~ "- zazen EIDE: zazen je bu \"slave\" nebo \"master\"\n"
+#~ "- zazen SCSI: SCSI sbrnice a ID zazen na SCSI sbrnici\n"
+#~ "\n"
+#~ "Tda mdi: tda hardwarovho zazen\n"
+#~ "\n"
+#~ "Modul: modul jdra operanho systmu GNU/Linux, kter zazen "
+#~ "obsluhuje\n"
+#~ "\n"
+#~ "Dodavatel: Jmno dodavatele zazen\n"
+
+#~ msgid ""
+#~ "Your HP multi-function device was configured automatically to be able to "
+#~ "scan. Now you can scan from the command line with \"ptal-hp %s scan ..."
+#~ "\". Scanning via a graphical interface or from the GIMP is not supported "
+#~ "yet for your device. More information you will find in the \"/usr/share/"
+#~ "doc/hpoj-0.8/ptal-hp-scan.html\" file on your system. If you have an HP "
+#~ "LaserJet 1100 or 1200 you can only scan when you have the scanner option "
+#~ "installed.\n"
+#~ "\n"
+#~ "Do not use \"scannerdrake\" for this device!"
+#~ msgstr ""
+#~ "Multifunkn zazen od HP bylo nastaveno pro monost skenovn. Nyn "
+#~ "lze skenovat pkazem \"ptal-hp %s scan ...\" z pkazovho dku. "
+#~ "Skenovn z grafickho prosted nebo z programu GIMP nen zatm na tomto "
+#~ "zazen podporovno. Vce informac naleznete v souboru \"/usr/share/doc/"
+#~ "hpoj-0.8/ptal-hp-scan.html\". Pokud mte HP LaserJet 1100 nebo 1200, lze "
+#~ "skenovat pouze v ppad, e mte nainstalovnu podporu pro skenovn.\n"
+#~ "\n"
+#~ "Nepouvejte pro toto zazen \"scannerdrake\"!"
+
+#~ msgid "Use Hard Drive with daemon"
+#~ msgstr "Pout pro pevn disk dmona"
+
+#~ msgid "Use FTP with daemon"
+#~ msgstr "Pout pro s dmona"
+
+#~ msgid "Package List to Install"
+#~ msgstr "Seznam balk pro instalaci"
+
+#~ msgid "proftpd"
+#~ msgstr "proftpd"
+
+#~ msgid "sshd"
+#~ msgstr "sshd"
+
+#~ msgid "webmin"
+#~ msgstr "webmin"
+
+#~ msgid "xinetd"
+#~ msgstr "xinetd"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 97fdf158a..ace5bdb10 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -1,38 +1,67 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 1999 Free Software Foundation, Inc.
-# Copyright (c) 1999 MandrakeSoft
-# Dafydd Tomos <dafydd@imaginet.co.uk>, 1999
-# Rhoslyn Prys <rhoslyn.prys@ntlworld.com>, 2002
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# Rhoslyn Prys <rhoslyn.prys@ntlworld.com>
#
msgid ""
msgstr ""
-"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-03-11 18:29+0100\n"
-"PO-Revision-Date: 2002-03-11 12:35-0000\n"
+"Project-Id-Version: drakfloppy 0.43\n"
+"POT-Creation-Date: 2002-07-31 15:56+0200\n"
+"PO-Revision-Date: 2002-02-23 10:00-0000\n"
"Last-Translator: Rhoslyn Prys <rhoslyn.prys@ntlworld.com>\n"
-"Language-Team: Cymraeg/Welsh <cy@li.org>\n"
+"Language-Team: Cymraeg <cy@li.org>\n"
"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-14\n"
+"Content-Type: text/plain; charset=iso-8859-14\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:242
-msgid "Configure all heads independently"
-msgstr "Ffurfweddu pob pen yn annibynnol"
+#: ../../Xconfig/card.pm_.c:16
+msgid "256 kB"
+msgstr "256 kB"
-#: ../../Xconfigurator.pm_.c:243
-msgid "Use Xinerama extension"
-msgstr "Defnyddiwch estyniad Xinerama"
+#: ../../Xconfig/card.pm_.c:17
+msgid "512 kB"
+msgstr "512 kB"
-#: ../../Xconfigurator.pm_.c:246
-#, c-format
-msgid "Configure only card \"%s\" (%s)"
-msgstr "Ffurfweddu cerdyn \"%s\" (%s) yn unig"
+#: ../../Xconfig/card.pm_.c:18
+msgid "1 MB"
+msgstr "1 MB"
+
+#: ../../Xconfig/card.pm_.c:19
+msgid "2 MB"
+msgstr "2 MB"
+
+#: ../../Xconfig/card.pm_.c:20
+msgid "4 MB"
+msgstr "4 MB"
+
+#: ../../Xconfig/card.pm_.c:21
+msgid "8 MB"
+msgstr "8 MB"
+
+#: ../../Xconfig/card.pm_.c:22
+msgid "16 MB"
+msgstr "16 MB"
+
+#: ../../Xconfig/card.pm_.c:23
+msgid "32 MB"
+msgstr "32 MB"
+
+#: ../../Xconfig/card.pm_.c:24
+msgid "64 MB or more"
+msgstr "16 MB neu fwy"
+
+#: ../../Xconfig/card.pm_.c:201
+msgid "Choose a X server"
+msgstr "Dewiswch wasanaethwr X"
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfig/card.pm_.c:201
+msgid "X server"
+msgstr "Gwasanaethwr X"
+
+#: ../../Xconfig/card.pm_.c:225
msgid "Multi-head configuration"
msgstr "Ffurfweddiad amlben"
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfig/card.pm_.c:226
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
@@ -40,41 +69,44 @@ msgstr ""
"Mae eich system yn cynnal ffurfweddiad amlben.\n"
"Beth hoffech ei wneud?"
-#: ../../Xconfigurator.pm_.c:261
-msgid "Graphic card"
-msgstr "Cerdyn graffig"
+#: ../../Xconfig/card.pm_.c:280
+msgid "Select the memory size of your graphics card"
+msgstr "Dewiswch faint y cof eich cerdyn graffeg"
-#: ../../Xconfigurator.pm_.c:262
-msgid "Select a graphic card"
-msgstr "Dewiswch gerdyn graffig"
+#: ../../Xconfig/card.pm_.c:341
+msgid "XFree configuration"
+msgstr "Ffurfweddiad XFree"
-#: ../../Xconfigurator.pm_.c:286
-msgid "Choose a X server"
-msgstr "Dewiswch wasanaethwr X"
+#: ../../Xconfig/card.pm_.c:343
+msgid "Which configuration of XFree do you want to have?"
+msgstr "Pa ffurfweddiad oXFree hoffech ei gael?"
-#: ../../Xconfigurator.pm_.c:286
-msgid "X server"
-msgstr "Gwasanaethwr X"
+#: ../../Xconfig/card.pm_.c:374
+msgid "Configure all heads independently"
+msgstr "Ffurfweddu pob pen yn annibynnol"
-#: ../../Xconfigurator.pm_.c:293
-msgid "Choose a X driver"
-msgstr "Dewiswch yrrwr X"
+#: ../../Xconfig/card.pm_.c:375
+msgid "Use Xinerama extension"
+msgstr "Defnyddiwch estyniad Xinerama"
-#: ../../Xconfigurator.pm_.c:293
-msgid "X driver"
-msgstr "Gyrrwr X"
+#: ../../Xconfig/card.pm_.c:379
+#, fuzzy, c-format
+msgid "Configure only card \"%s\"%s"
+msgstr "Ffurfweddu cerdyn \"%s\" (%s) yn unig"
-#: ../../Xconfigurator.pm_.c:360 ../../Xconfigurator.pm_.c:366
-#: ../../Xconfigurator.pm_.c:416 ../../Xconfigurator.pm_.c:1507
+#: ../../Xconfig/card.pm_.c:393 ../../Xconfig/card.pm_.c:394
+#: ../../Xconfig/various.pm_.c:21
#, c-format
msgid "XFree %s"
msgstr "XFree86: %s"
-#: ../../Xconfigurator.pm_.c:363
-msgid "Which configuration of XFree do you want to have?"
-msgstr "Pa ffurfweddiad oXFree hoffech ei gael?"
+#: ../../Xconfig/card.pm_.c:404 ../../Xconfig/card.pm_.c:429
+#: ../../Xconfig/various.pm_.c:21
+#, c-format
+msgid "XFree %s with 3D hardware acceleration"
+msgstr "XFree %s gyda cyflymu caledwedd 3D"
-#: ../../Xconfigurator.pm_.c:374
+#: ../../Xconfig/card.pm_.c:407
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -85,33 +117,18 @@ msgstr ""
"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
"yn 2D."
-#: ../../Xconfigurator.pm_.c:376 ../../Xconfigurator.pm_.c:409
+#: ../../Xconfig/card.pm_.c:409 ../../Xconfig/card.pm_.c:431
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s"
-#: ../../Xconfigurator.pm_.c:378 ../../Xconfigurator.pm_.c:411
-#: ../../Xconfigurator.pm_.c:1507
-#, c-format
-msgid "XFree %s with 3D hardware acceleration"
-msgstr "XFree %s gyda cyflymu caledwedd 3D"
-
-#: ../../Xconfigurator.pm_.c:386 ../../Xconfigurator.pm_.c:400
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s \n"
-"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR."
-
-#: ../../Xconfigurator.pm_.c:388 ../../Xconfigurator.pm_.c:402
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:437
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s gyda cyflymu caledwedd 3D ARBROFOL"
-#: ../../Xconfigurator.pm_.c:397
+#: ../../Xconfig/card.pm_.c:419
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -124,31 +141,58 @@ msgstr ""
"Mae eich cerdyn yn cael ei gynnal gan XFree %s efallai bod gwell cefnogaeth "
"yn 2D."
-#: ../../Xconfigurator.pm_.c:417
+#: ../../Xconfig/card.pm_.c:422 ../../Xconfig/card.pm_.c:439
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Mae modd i'ch cerdyn gael cefnogaeth cyflymu caledwedd 3D gyda XFree %s \n"
+"SYLWER CEFNOGAETH ARBROFOL YW HWN AC FE ALL RHEWI EICH CYFRIFIADUR."
+
+#: ../../Xconfig/card.pm_.c:445
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (gyrrwr gosod dangoswr)"
-#: ../../Xconfigurator.pm_.c:421
-msgid "XFree configuration"
-msgstr "Ffurfweddiad XFree"
-
-#: ../../Xconfigurator.pm_.c:496
-msgid "Select the memory size of your graphic card"
-msgstr "Dewiswch faint y cof eich cerdyn graffeg"
-
-#: ../../Xconfigurator.pm_.c:550
-msgid "Choose options for server"
-msgstr "Dewiswch opsiynau ar gyfer y gwasanaethwr"
+#: ../../Xconfig/main.pm_.c:60
+#, c-format
+msgid ""
+"Keep the changes?\n"
+"The current configuration is:\n"
+"\n"
+"%s"
+msgstr ""
+"Cadw'r newid?\n"
+"Y ffurfweddiad presenol yw:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Choose a monitor"
msgstr "Dewiswch fonitor"
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfig/monitor.pm_.c:86
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:577
+#: ../../Xconfig/monitor.pm_.c:89 ../../any.pm_.c:973
+msgid "Custom"
+msgstr "Arddull"
+
+#: ../../Xconfig/monitor.pm_.c:90
+msgid "Plug'n Play"
+msgstr ""
+
+#: ../../Xconfig/monitor.pm_.c:91 ../../mouse.pm_.c:45
+msgid "Generic"
+msgstr "Generig"
+
+#: ../../Xconfig/monitor.pm_.c:92 ../../harddrake/ui.pm_.c:43
+#, fuzzy
+msgid "Vendor"
+msgstr "Dadwneud"
+
+#: ../../Xconfig/monitor.pm_.c:102
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -170,511 +214,326 @@ msgstr ""
"hynny.\n"
"Os oes gennych amheuaeth, dewiswch raddfa is."
-#: ../../Xconfigurator.pm_.c:584
+#: ../../Xconfig/monitor.pm_.c:109
msgid "Horizontal refresh rate"
msgstr "Graddfa adfywio llorweddol"
-#: ../../Xconfigurator.pm_.c:585
+#: ../../Xconfig/monitor.pm_.c:110
msgid "Vertical refresh rate"
msgstr "Graddfa adfywio fertigol"
-#: ../../Xconfigurator.pm_.c:622
-msgid "Monitor not configured"
-msgstr "Monitor heb ei ffurfweddu"
-
-#: ../../Xconfigurator.pm_.c:625
-msgid "Graphic card not configured yet"
-msgstr "Cerdyn graffig heb ei ffurfweddu eto"
-
-#: ../../Xconfigurator.pm_.c:628
-msgid "Resolutions not chosen yet"
-msgstr "Cydraniad heb ei ddewis eto"
-
-#: ../../Xconfigurator.pm_.c:646
-msgid "Do you want to test the configuration?"
-msgstr "Ydych chi eisiau profi eich ffurfweddiad?"
-
-#: ../../Xconfigurator.pm_.c:650
-msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Rhybydd: gall profi'r cerdyn graffig hwn rewi eich cyfrifiadur"
-
-#: ../../Xconfigurator.pm_.c:653
-msgid "Test of the configuration"
-msgstr "Profi'r ffurfweddiad"
+#: ../../Xconfig/resolution_and_depth.pm_.c:12
+msgid "256 colors (8 bits)"
+msgstr "256 lliw (8 did)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid ""
-"\n"
-"try to change some parameters"
-msgstr ""
-"\n"
-"ceisiwch newid rhai paramedrau"
+#: ../../Xconfig/resolution_and_depth.pm_.c:13
+msgid "32 thousand colors (15 bits)"
+msgstr "32 mil o liwiau (15 did)"
-#: ../../Xconfigurator.pm_.c:692 ../../Xconfigurator.pm_.c:704
-msgid "An error has occurred:"
-msgstr "Digwyddodd gwall:"
+#: ../../Xconfig/resolution_and_depth.pm_.c:14
+msgid "65 thousand colors (16 bits)"
+msgstr "65 mil o liwiau (16 did)"
-#: ../../Xconfigurator.pm_.c:731
-#, c-format
-msgid "Leaving in %d seconds"
-msgstr "Gadael mewn %d eiliad"
+#: ../../Xconfig/resolution_and_depth.pm_.c:15
+msgid "16 million colors (24 bits)"
+msgstr "16 miliwn o liwiau (24 did)"
-#: ../../Xconfigurator.pm_.c:742
-msgid "Is this the correct setting?"
-msgstr "Ydi'r gosodiad hwn yn gywir?"
+#: ../../Xconfig/resolution_and_depth.pm_.c:16
+msgid "4 billion colors (32 bits)"
+msgstr "4 biliwn o liwiau (32 did)"
-#: ../../Xconfigurator.pm_.c:751
-msgid "An error has occurred, try to change some parameters"
-msgstr "Digwyddodd gwall, ceisiwch newid rhai paramedrau"
+#: ../../Xconfig/resolution_and_depth.pm_.c:121
+msgid "Resolutions"
+msgstr "Cydraniadau"
-#: ../../Xconfigurator.pm_.c:822
+#: ../../Xconfig/resolution_and_depth.pm_.c:197
msgid "Resolution"
msgstr "Cydraniad"
-#: ../../Xconfigurator.pm_.c:874
+#: ../../Xconfig/resolution_and_depth.pm_.c:235
msgid "Choose the resolution and the color depth"
msgstr "Dewiswch y cydraniad a'r dyfnder lliw"
-#: ../../Xconfigurator.pm_.c:876
+#: ../../Xconfig/resolution_and_depth.pm_.c:236
#, c-format
-msgid "Graphic card: %s"
+msgid "Graphics card: %s"
msgstr "Cerdyn graffeg: %s"
-#: ../../Xconfigurator.pm_.c:877
-#, c-format
-msgid "XFree86 server: %s"
-msgstr "Gwasanaethwr XFree86: %s"
-
-#: ../../Xconfigurator.pm_.c:891 ../../diskdrake/interactive.pm_.c:259
-#: ../../install_steps_interactive.pm_.c:208
-msgid "More"
-msgstr "Rhagor"
-
-#: ../../Xconfigurator.pm_.c:891 ../../install_gtk.pm_.c:84
-#: ../../install_steps_gtk.pm_.c:328 ../../interactive.pm_.c:127
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_http.pm_.c:104
-#: ../../interactive_newt.pm_.c:170 ../../interactive_stdio.pm_.c:141
-#: ../../interactive_stdio.pm_.c:142 ../../my_gtk.pm_.c:686
-#: ../../my_gtk.pm_.c:1019 ../../my_gtk.pm_.c:1041
-#: ../../standalone/drakbackup_.c:2298 ../../standalone/drakbackup_.c:2369
-#: ../../standalone/drakbackup_.c:2385
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../any.pm_.c:1014
+#: ../../bootlook.pm_.c:161 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../install_steps_gtk.pm_.c:410 ../../install_steps_gtk.pm_.c:468
+#: ../../install_steps_interactive.pm_.c:577 ../../interactive.pm_.c:142
+#: ../../interactive.pm_.c:318 ../../interactive.pm_.c:350
+#: ../../interactive/stdio.pm_.c:141 ../../my_gtk.pm_.c:724
+#: ../../my_gtk.pm_.c:727 ../../my_gtk.pm_.c:1056
+#: ../../network/netconnect.pm_.c:46 ../../printerdrake.pm_.c:1610
+#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2631
+#: ../../standalone/drakbackup_.c:2664 ../../standalone/drakbackup_.c:2685
+#: ../../standalone/drakbackup_.c:2706 ../../standalone/drakbackup_.c:2733
+#: ../../standalone/drakbackup_.c:2793 ../../standalone/drakbackup_.c:2820
+#: ../../standalone/drakbackup_.c:2846 ../../standalone/drakconnect_.c:116
+#: ../../standalone/drakconnect_.c:148 ../../standalone/drakconnect_.c:290
+#: ../../standalone/drakconnect_.c:538 ../../standalone/drakconnect_.c:680
+#: ../../standalone/drakfloppy_.c:235 ../../standalone/drakfloppy_.c:384
+#: ../../standalone/drakfont_.c:971 ../../standalone/drakgw_.c:600
+#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:537
+#: ../../standalone/tinyfirewall_.c:65
+msgid "Cancel"
+msgstr "Diddymu"
+
+#: ../../Xconfig/resolution_and_depth.pm_.c:249 ../../install_gtk.pm_.c:84
+#: ../../install_steps_gtk.pm_.c:279 ../../interactive.pm_.c:127
+#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:318
+#: ../../interactive.pm_.c:350 ../../interactive/http.pm_.c:104
+#: ../../interactive/newt.pm_.c:170 ../../interactive/stdio.pm_.c:141
+#: ../../interactive/stdio.pm_.c:142 ../../my_gtk.pm_.c:723
+#: ../../my_gtk.pm_.c:1056 ../../my_gtk.pm_.c:1078
+#: ../../standalone/drakbackup_.c:2673 ../../standalone/drakbackup_.c:2761
+#: ../../standalone/drakbackup_.c:2780
msgid "Ok"
msgstr "Iawn"
-#: ../../Xconfigurator.pm_.c:893 ../../network/netconnect.pm_.c:169
-#: ../../printerdrake.pm_.c:2470 ../../standalone/draknet_.c:275
-#: ../../standalone/draknet_.c:278
-msgid "Expert Mode"
-msgstr "Modd Arbennigwr"
-
-#: ../../Xconfigurator.pm_.c:894
-msgid "Show all"
-msgstr "Dangos y cyfan"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Do you want to test the configuration?"
+msgstr "Ydych chi eisiau profi eich ffurfweddiad?"
-#: ../../Xconfigurator.pm_.c:939
-msgid "Resolutions"
-msgstr "Cydraniadau"
+#: ../../Xconfig/test.pm_.c:26
+msgid "Test of the configuration"
+msgstr "Profi'r ffurfweddiad"
-#: ../../Xconfigurator.pm_.c:1509
+#: ../../Xconfig/various.pm_.c:27
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Gosodiad yr yr allweddell: %s\n"
-#: ../../Xconfigurator.pm_.c:1510
+#: ../../Xconfig/various.pm_.c:28
#, c-format
msgid "Mouse type: %s\n"
msgstr "Math o lygoden: %s\n"
-#: ../../Xconfigurator.pm_.c:1511
+#: ../../Xconfig/various.pm_.c:29
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dyfais llygoden: %s\n"
-#: ../../Xconfigurator.pm_.c:1512
+#: ../../Xconfig/various.pm_.c:30
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1513
+#: ../../Xconfig/various.pm_.c:31
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "HorizSync Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1514
+#: ../../Xconfig/various.pm_.c:32
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "VertRefresh Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1515
+#: ../../Xconfig/various.pm_.c:33
#, c-format
-msgid "Graphic card: %s\n"
+msgid "Graphics card: %s\n"
msgstr "Cerdyn graffeg: %s\n"
-#: ../../Xconfigurator.pm_.c:1516
-#, c-format
-msgid "Graphic card identification: %s\n"
-msgstr "Dynodiad y cerdyn graffeg: %s\n"
-
-#: ../../Xconfigurator.pm_.c:1517
+#: ../../Xconfig/various.pm_.c:34
#, c-format
-msgid "Graphic memory: %s kB\n"
+msgid "Graphics memory: %s kB\n"
msgstr "Cof graffeg: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1519
+#: ../../Xconfig/various.pm_.c:36
#, c-format
msgid "Color depth: %s\n"
msgstr "Dyfnder lliw: %s\n"
-#: ../../Xconfigurator.pm_.c:1520
+#: ../../Xconfig/various.pm_.c:37
#, c-format
msgid "Resolution: %s\n"
msgstr "Cydraniad: %s\n"
-#: ../../Xconfigurator.pm_.c:1522
+#: ../../Xconfig/various.pm_.c:39
#, c-format
msgid "XFree86 server: %s\n"
msgstr "GwasanaethwrXFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1523
+#: ../../Xconfig/various.pm_.c:40
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Gyrrwr XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1541
-msgid "Preparing X-Window configuration"
-msgstr "Yn parataoi cyfluniad X-Window"
-
-#: ../../Xconfigurator.pm_.c:1561
-msgid "What do you want to do?"
-msgstr "Beth ydych eisiau ei wneud?"
-
-#: ../../Xconfigurator.pm_.c:1566
-msgid "Change Monitor"
-msgstr "Newid Monitor"
-
-#: ../../Xconfigurator.pm_.c:1567
-msgid "Change Graphic card"
-msgstr "Newid cerdyn Graffeg"
-
-#: ../../Xconfigurator.pm_.c:1570
-msgid "Change Server options"
-msgstr "Dewisiadau newid Gwasanaethwr"
-
-#: ../../Xconfigurator.pm_.c:1571
-msgid "Change Resolution"
-msgstr "Newid Cydraniad"
-
-#: ../../Xconfigurator.pm_.c:1572
-msgid "Show information"
-msgstr "Dangos gwybodaeth"
-
-#: ../../Xconfigurator.pm_.c:1573
-msgid "Test again"
-msgstr "Profi eto"
-
-#: ../../Xconfigurator.pm_.c:1574 ../../printerdrake.pm_.c:2473
-#: ../../standalone/logdrake_.c:225
-msgid "Quit"
-msgstr "Gadael"
-
-#: ../../Xconfigurator.pm_.c:1582
-#, c-format
-msgid ""
-"Keep the changes?\n"
-"Current configuration is:\n"
-"\n"
-"%s"
-msgstr ""
-"Cadw'r newid?\n"
-"Y ffurfweddiad presenol yw:\n"
-"\n"
-"%s"
-
-#: ../../Xconfigurator.pm_.c:1603
-msgid "X at startup"
+#: ../../Xconfig/various.pm_.c:51
+msgid "Graphical interface at startup"
msgstr "X wrth ddechrau"
-#: ../../Xconfigurator.pm_.c:1604
+#: ../../Xconfig/various.pm_.c:52
msgid ""
-"I can set up your computer to automatically start X upon booting.\n"
-"Would you like X to start when you reboot?"
+"I can setup your computer to automatically start the graphical interface "
+"(XFree) upon booting.\n"
+"Would you like XFree to start when you reboot?"
msgstr ""
"Hoffwn osod eich cyfrifiadur i gychwyn X yn awtomatig ar l cychwyn\n"
"Hoffech chi X i ddechrau wedi i chi ail-gychwyn?"
-#: ../../Xconfigurator.pm_.c:1610
-#, c-format
-msgid "Please relog into %s to activate the changes"
-msgstr "Ail fewn gofnodwch i %s i wireddu'r newidiadau"
-
-#: ../../Xconfigurator.pm_.c:1625
-msgid "Please log out and then use Ctrl-Alt-BackSpace"
-msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
-
-#: ../../Xconfigurator_consts.pm_.c:6
-msgid "256 colors (8 bits)"
-msgstr "256 lliw (8 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:7
-msgid "32 thousand colors (15 bits)"
-msgstr "32 mil o liwiau (15 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:8
-msgid "65 thousand colors (16 bits)"
-msgstr "65 mil o liwiau (16 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:9
-msgid "16 million colors (24 bits)"
-msgstr "16 miliwn o liwiau (24 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:10
-msgid "4 billion colors (32 bits)"
-msgstr "4 biliwn o liwiau (32 did)"
-
-#: ../../Xconfigurator_consts.pm_.c:113
-msgid "256 kB"
-msgstr "256 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:114
-msgid "512 kB"
-msgstr "512 kB"
-
-#: ../../Xconfigurator_consts.pm_.c:115
-msgid "1 MB"
-msgstr "1 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:116
-msgid "2 MB"
-msgstr "2 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:117
-msgid "4 MB"
-msgstr "4 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:118
-msgid "8 MB"
-msgstr "8 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:119
-msgid "16 MB"
-msgstr "16 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:120
-msgid "32 MB"
-msgstr "32 MB"
-
-#: ../../Xconfigurator_consts.pm_.c:121
-msgid "64 MB or more"
-msgstr "16 MB neu fwy"
-
-#: ../../Xconfigurator_consts.pm_.c:129
-msgid "Standard VGA, 640x480 at 60 Hz"
-msgstr "VGA safonol, 640x480 ar 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:130
-msgid "Super VGA, 800x600 at 56 Hz"
-msgstr "Uwch VGA, 800x600 ar 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:131
-msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Cydnaws a 8514, 1024x768 rhyngleswyd ar 87 Hz (nid 800x600)"
-
-#: ../../Xconfigurator_consts.pm_.c:132
-msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 rhyngleswyd ar 87Hz, 800x600 ar 56 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:133
-msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Extended Super VGA, 800x600 ar 60 Hz, 640x480 ar 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:134
-msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "SVGA di-rygnlesig, 1024x768 ar 60 Hz, 800x600 ar 72 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:135
-msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "SVGA Amledd Uchel, 1024x768 ar 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:136
-msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 60 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:137
-msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 74 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:138
-msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Aml-amledd sydd yn medru dangos 1280x1024 ar 76 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:139
-msgid "Monitor that can do 1600x1200 at 70 Hz"
-msgstr "Monitor sydd yn medru dangos 1600x1200 ar 70 Hz"
-
-#: ../../Xconfigurator_consts.pm_.c:140
-msgid "Monitor that can do 1600x1200 at 76 Hz"
-msgstr "Monitor sydd yn medru dangos 1600x1200 ar 76 Hz"
-
-#: ../../any.pm_.c:116 ../../any.pm_.c:141
+#: ../../any.pm_.c:117 ../../any.pm_.c:142
msgid "First sector of boot partition"
msgstr "Adran gyntaf o'r rhaniad cychwyn"
-#: ../../any.pm_.c:116 ../../any.pm_.c:141 ../../any.pm_.c:218
+#: ../../any.pm_.c:117 ../../any.pm_.c:142 ../../any.pm_.c:219
msgid "First sector of drive (MBR)"
msgstr "Adran gyntaf o'r gyrrwr (MBR)"
-#: ../../any.pm_.c:120
+#: ../../any.pm_.c:121
msgid "SILO Installation"
msgstr "Gosodiad SILO"
-#: ../../any.pm_.c:121 ../../any.pm_.c:134
+#: ../../any.pm_.c:122 ../../any.pm_.c:135
msgid "Where do you want to install the bootloader?"
msgstr "Lle ydych chi eisiau gosod y llwythwr cychwyn?"
-#: ../../any.pm_.c:133
+#: ../../any.pm_.c:134
msgid "LILO/grub Installation"
msgstr "Gosodiad LILO/grub"
-#: ../../any.pm_.c:145 ../../any.pm_.c:159
+#: ../../any.pm_.c:146 ../../any.pm_.c:160
msgid "SILO"
msgstr "SILO"
-#: ../../any.pm_.c:147
+#: ../../any.pm_.c:148
msgid "LILO with text menu"
msgstr "LILO gyda dewislen testun"
-#: ../../any.pm_.c:148 ../../any.pm_.c:159
+#: ../../any.pm_.c:149 ../../any.pm_.c:160
msgid "LILO with graphical menu"
msgstr "Lilo gyda dewislen graffig"
-#: ../../any.pm_.c:151
+#: ../../any.pm_.c:152
msgid "Grub"
msgstr "Grub"
-#: ../../any.pm_.c:155
+#: ../../any.pm_.c:156
msgid "Boot from DOS/Windows (loadlin)"
msgstr "Cychwyn o DOS/Windows (loadlin)"
-#: ../../any.pm_.c:157 ../../any.pm_.c:159
+#: ../../any.pm_.c:158 ../../any.pm_.c:160
msgid "Yaboot"
msgstr "Yaboot"
-#: ../../any.pm_.c:166 ../../any.pm_.c:198
+#: ../../any.pm_.c:167 ../../any.pm_.c:199
msgid "Bootloader main options"
msgstr "Prif ddewisiadau Bootloader"
-#: ../../any.pm_.c:167 ../../any.pm_.c:199
+#: ../../any.pm_.c:168 ../../any.pm_.c:200
msgid "Bootloader to use"
msgstr "Bootloader ar waith"
-#: ../../any.pm_.c:169
+#: ../../any.pm_.c:170
msgid "Bootloader installation"
msgstr "Gosodiad Bootloader"
-#: ../../any.pm_.c:171 ../../any.pm_.c:201
+#: ../../any.pm_.c:172 ../../any.pm_.c:202
msgid "Boot device"
msgstr "Dyfais cychwyn"
-#: ../../any.pm_.c:172
+#: ../../any.pm_.c:173
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nid yw'n gweithio gyda hen BIOSau)"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "Compact"
msgstr "Cryno"
-#: ../../any.pm_.c:173
+#: ../../any.pm_.c:174
msgid "compact"
msgstr "cryno"
-#: ../../any.pm_.c:174 ../../any.pm_.c:298
+#: ../../any.pm_.c:175 ../../any.pm_.c:299
msgid "Video mode"
msgstr "Modd fideo"
-#: ../../any.pm_.c:176
+#: ../../any.pm_.c:177
msgid "Delay before booting default image"
msgstr "Oedi cyn cychwyn delwedd rhagosodedig"
-#: ../../any.pm_.c:178 ../../any.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:1115 ../../network/modem.pm_.c:48
-#: ../../printerdrake.pm_.c:708 ../../printerdrake.pm_.c:806
-#: ../../standalone/draknet_.c:625
+#: ../../any.pm_.c:179 ../../any.pm_.c:794
+#: ../../diskdrake/smbnfs_gtk.pm_.c:179
+#: ../../install_steps_interactive.pm_.c:1110 ../../network/modem.pm_.c:48
+#: ../../printerdrake.pm_.c:732 ../../printerdrake.pm_.c:830
+#: ../../standalone/drakconnect_.c:625 ../../standalone/drakconnect_.c:650
msgid "Password"
msgstr "Cyfrinair"
-#: ../../any.pm_.c:179 ../../any.pm_.c:797
-#: ../../install_steps_interactive.pm_.c:1116
+#: ../../any.pm_.c:180 ../../any.pm_.c:795
+#: ../../install_steps_interactive.pm_.c:1111
msgid "Password (again)"
msgstr "Cyfrinair (eto)"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "Restrict command line options"
msgstr "Cyfyngu dewisiadau llinell orchymyn"
-#: ../../any.pm_.c:180
+#: ../../any.pm_.c:181
msgid "restrict"
msgstr "cyfyngu"
-#: ../../any.pm_.c:182
+#: ../../any.pm_.c:183
msgid "Clean /tmp at each boot"
msgstr "Glanhau /tmp bob tro fyddwch yn cychwyn"
-#: ../../any.pm_.c:183
+#: ../../any.pm_.c:184
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Union faint o RAM os oes angen (canfod %dMB)"
-#: ../../any.pm_.c:185
+#: ../../any.pm_.c:186
msgid "Enable multi profiles"
msgstr "Galluogi aml-broffil"
-#: ../../any.pm_.c:189
+#: ../../any.pm_.c:190
msgid "Give the ram size in MB"
msgstr "Rhowch maint RAM mewn MB"
-#: ../../any.pm_.c:191
+#: ../../any.pm_.c:192
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Dewis Nid yw 'cyfyngu dewisiadau llinell orchymyn' o werth heb gyfrinair"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../diskdrake/interactive.pm_.c:1135
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../diskdrake/interactive.pm_.c:1178
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Please try again"
msgstr "Ceisiwch eto"
-#: ../../any.pm_.c:192 ../../any.pm_.c:773
-#: ../../install_steps_interactive.pm_.c:1110
+#: ../../any.pm_.c:193 ../../any.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:1105
msgid "The passwords do not match"
msgstr "Nid yw'r cyfrineiriau'n cydfynd"
-#: ../../any.pm_.c:200
+#: ../../any.pm_.c:201
msgid "Init Message"
msgstr "Neges Init"
-#: ../../any.pm_.c:202
+#: ../../any.pm_.c:203
msgid "Open Firmware Delay"
msgstr "Agor Oedi Cadarnwedd"
-#: ../../any.pm_.c:203
+#: ../../any.pm_.c:204
msgid "Kernel Boot Timeout"
msgstr "Goramser cychwyn y cnewyllyn"
-#: ../../any.pm_.c:204
+#: ../../any.pm_.c:205
msgid "Enable CD Boot?"
msgstr "Galluogi cychwyn o CD?"
-#: ../../any.pm_.c:205
+#: ../../any.pm_.c:206
msgid "Enable OF Boot?"
msgstr "Galluogi Cychwyn OF?"
-#: ../../any.pm_.c:206
+#: ../../any.pm_.c:207
msgid "Default OS?"
msgstr "Systm Weithredu Rhagosodedig?"
-#: ../../any.pm_.c:240
+#: ../../any.pm_.c:241
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: "
@@ -688,83 +547,83 @@ msgstr ""
"\n"
"Gyda pha ddisg ydych chi'n cychwyn?"
-#: ../../any.pm_.c:255
+#: ../../any.pm_.c:256
msgid ""
-"Here are the different entries.\n"
+"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
"Dyma'r cofnodion gwahanol.\n"
"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-#: ../../any.pm_.c:265 ../../standalone/drakbackup_.c:752
-#: ../../standalone/drakbackup_.c:861 ../../standalone/drakfont_.c:789
-#: ../../standalone/drakfont_.c:826
+#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1035
+#: ../../standalone/drakbackup_.c:1149 ../../standalone/drakfont_.c:1012
+#: ../../standalone/drakfont_.c:1055
msgid "Add"
msgstr "Ychwanegu"
-#: ../../any.pm_.c:265 ../../any.pm_.c:784 ../../diskdrake/hd_gtk.pm_.c:153
-#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:86
-#: ../../interactive_http.pm_.c:153
+#: ../../any.pm_.c:266 ../../any.pm_.c:782 ../../diskdrake/hd_gtk.pm_.c:153
+#: ../../diskdrake/removable.pm_.c:27 ../../diskdrake/smbnfs_gtk.pm_.c:88
+#: ../../interactive/http.pm_.c:153
msgid "Done"
msgstr "Gorffen"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Modify"
msgstr "Newid"
-#: ../../any.pm_.c:273
+#: ../../any.pm_.c:274
msgid "Which type of entry do you want to add?"
msgstr "Pa fath o gofnod ydych chi eisiau ei ychwanegu?"
-#: ../../any.pm_.c:274 ../../standalone/drakbackup_.c:895
+#: ../../any.pm_.c:275 ../../standalone/drakbackup_.c:1183
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:274
+#: ../../any.pm_.c:275
msgid "Other OS (SunOS...)"
msgstr "Systwmau Gweithredu eraill (SunOS..)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (MacOS...)"
msgstr "Systemau Gweithredu Eraill (MacOS...)"
-#: ../../any.pm_.c:275
+#: ../../any.pm_.c:276
msgid "Other OS (windows...)"
msgstr "Systemau gweithredu Eraill (windows...)"
-#: ../../any.pm_.c:294
+#: ../../any.pm_.c:295
msgid "Image"
msgstr "Delwedd"
-#: ../../any.pm_.c:295 ../../any.pm_.c:306
+#: ../../any.pm_.c:296 ../../any.pm_.c:307
msgid "Root"
msgstr "Gwraidd"
-#: ../../any.pm_.c:296 ../../any.pm_.c:325
+#: ../../any.pm_.c:297 ../../any.pm_.c:325
msgid "Append"
msgstr "Atodi"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Read-write"
msgstr "Darllen-ysgrifennu"
-#: ../../any.pm_.c:308
+#: ../../any.pm_.c:309
msgid "Table"
msgstr "Tabl"
-#: ../../any.pm_.c:309
+#: ../../any.pm_.c:310
msgid "Unsafe"
msgstr "Anniogel"
-#: ../../any.pm_.c:316 ../../any.pm_.c:321 ../../any.pm_.c:324
+#: ../../any.pm_.c:317 ../../any.pm_.c:322 ../../any.pm_.c:324
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:318 ../../any.pm_.c:329
+#: ../../any.pm_.c:319 ../../any.pm_.c:329 ../../harddrake/bttv.pm_.c:184
msgid "Default"
msgstr "Rhagosodedig"
@@ -796,53 +655,78 @@ msgstr "Rhaid pennu rhaniad cyfnewid"
msgid "This label is already used"
msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:666
#, c-format
msgid "Found %s %s interfaces"
msgstr "Wedi canfod rhyngwynebau %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:667
msgid "Do you have another one?"
msgstr "Oes gennych un arall?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:668
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Oes gennych rhyngwynebau %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:832 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:829 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "No"
msgstr "Na"
-#: ../../any.pm_.c:660 ../../any.pm_.c:831 ../../interactive.pm_.c:132
-#: ../../my_gtk.pm_.c:1018
+#: ../../any.pm_.c:670 ../../any.pm_.c:828 ../../interactive.pm_.c:132
+#: ../../my_gtk.pm_.c:1055
msgid "Yes"
msgstr "Iawn"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:671
msgid "See hardware info"
msgstr "Gweler gwyboadeth am galedwedd"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:687
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Gosod gyrrwr ar gyfer cerdyn %s %s"
-#: ../../any.pm_.c:696
+#: ../../any.pm_.c:688
#, c-format
msgid "(module %s)"
msgstr "(modiwl %s)"
+#: ../../any.pm_.c:697
+#, fuzzy, c-format
+msgid ""
+"You may now provide its options to module %s.\n"
+"Note that any address should be entered with the prefix 0x like '0x123'"
+msgstr ""
+"Medrwch ddarparu ddewisiadau i fodiwl %s.\n"
+"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x fel "
+"'0x123'"
+
+#: ../../any.pm_.c:703
+#, 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 ""
+"Medrwch nawr ei ddewis i fodiwl. %s.\n"
+"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
+"e.e, ``io=0x300 irq=7''"
+
+#: ../../any.pm_.c:705
+msgid "Module options:"
+msgstr "Dewisiadau modiwl:"
+
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:707
+#: ../../any.pm_.c:717
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pa yrrwr %s ddylwn drio?"
-#: ../../any.pm_.c:715
+#: ../../any.pm_.c:726
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -862,40 +746,15 @@ msgstr ""
"unrhyw\n"
"ddifrod"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Autoprobe"
msgstr "Atoholi"
-#: ../../any.pm_.c:720
+#: ../../any.pm_.c:730
msgid "Specify options"
msgstr "Enwi dewisiadau"
-#: ../../any.pm_.c:725
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Note that any address should be entered with the prefix 0x like '0x123'"
-msgstr ""
-"Medrwch ddarparu ddewisiadau i fodiwl %s.\n"
-"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x fel "
-"'0x123'"
-
-#: ../../any.pm_.c:731
-#, c-format
-msgid ""
-"You may now provide its options to module %s.\n"
-"Options are in format ``name=value name2=value2 ...''.\n"
-"For instance, ``io=0x300 irq=7''"
-msgstr ""
-"Medrwch nawr ei ddewis i fodiwl. %s.\n"
-"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
-"e.e, ``io=0x300 irq=7''"
-
-#: ../../any.pm_.c:734
-msgid "Module options:"
-msgstr "Dewisiadau modiwl:"
-
-#: ../../any.pm_.c:745
+#: ../../any.pm_.c:742
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -904,50 +763,55 @@ msgstr ""
"Methodd llwytho modiwl %s\n"
"Hoffech chi drio eto gyda pharamedrau eraill?"
-#: ../../any.pm_.c:761
+#: ../../any.pm_.c:758
msgid "access to X programs"
msgstr "mynediad i raglenni X"
-#: ../../any.pm_.c:762
+#: ../../any.pm_.c:759
msgid "access to rpm tools"
msgstr "mynediad i offer rpm"
-#: ../../any.pm_.c:763
+#: ../../any.pm_.c:760
msgid "allow \"su\""
msgstr "caniatu \"su\""
-#: ../../any.pm_.c:764
+#: ../../any.pm_.c:761
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:766
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:771
msgid "This password is too simple"
msgstr "Mae'r cyfrinair yn rhy syml"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:772
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"
-#: ../../any.pm_.c:776
+#: ../../any.pm_.c:773
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Rhaid i'r enw defnyddiwr gynnwys dim ond llythrennau bach, rhifau, '-' a '_'"
-#: ../../any.pm_.c:777
+#: ../../any.pm_.c:774
+#, fuzzy
+msgid "The user name is too long"
+msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
+
+#: ../../any.pm_.c:775
msgid "This user name is already added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: ../../any.pm_.c:781
+#: ../../any.pm_.c:779
msgid "Add user"
msgstr "Ychwanegu defnyddiwr"
-#: ../../any.pm_.c:782
+#: ../../any.pm_.c:780
#, c-format
msgid ""
"Enter a user\n"
@@ -956,32 +820,32 @@ msgstr ""
"Rhowch enw defnyddiwr\n"
"%s"
-#: ../../any.pm_.c:783
+#: ../../any.pm_.c:781
msgid "Accept user"
msgstr "Derbyn defnyddiwr"
-#: ../../any.pm_.c:794
+#: ../../any.pm_.c:792
msgid "Real name"
msgstr "Enw cywir"
-#: ../../any.pm_.c:795 ../../printerdrake.pm_.c:707
-#: ../../printerdrake.pm_.c:805
+#: ../../any.pm_.c:793 ../../printerdrake.pm_.c:731
+#: ../../printerdrake.pm_.c:829
msgid "User name"
msgstr "Enw defnyddiwr"
-#: ../../any.pm_.c:798
+#: ../../any.pm_.c:796
msgid "Shell"
msgstr "Cragen"
-#: ../../any.pm_.c:800
+#: ../../any.pm_.c:798
msgid "Icon"
msgstr "Eicon"
-#: ../../any.pm_.c:828
+#: ../../any.pm_.c:825
msgid "Autologin"
msgstr "Awtomewngofnodi"
-#: ../../any.pm_.c:829
+#: ../../any.pm_.c:826
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -990,87 +854,67 @@ msgstr ""
"defnyddiwr\n"
"Hoffech chi wneud hyn?"
-#: ../../any.pm_.c:833
+#: ../../any.pm_.c:830
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: ../../any.pm_.c:834
+#: ../../any.pm_.c:831
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i rhedeg:"
-#: ../../any.pm_.c:849
+#: ../../any.pm_.c:846
msgid "Please choose a language to use."
msgstr "Dewiswch iaith i'w defnyddio."
-#: ../../any.pm_.c:851
-msgid "You can choose other languages that will be available after install"
+#: ../../any.pm_.c:848
+msgid ""
+"Mandrake Linux can support multiple languages. Select\n"
+"the languages you would like to install. They will be available\n"
+"when your installation is complete and you restart your system."
msgstr "Gallwch ddewis ieithoedd eraill fydd ar gael ar l gosod"
-#: ../../any.pm_.c:863 ../../install_steps_interactive.pm_.c:719
-#: ../../standalone/drakxtv_.c:54
+#: ../../any.pm_.c:862 ../../install_steps_interactive.pm_.c:709
+#: ../../standalone/drakxtv_.c:78
msgid "All"
msgstr "Popeth"
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "Allow all users"
msgstr "Caniatu pob defnyddiwr"
-#: ../../any.pm_.c:955 ../../install_steps_interactive.pm_.c:521
-msgid "Custom"
-msgstr "Arddull"
-
-#: ../../any.pm_.c:955
+#: ../../any.pm_.c:973
msgid "No sharing"
msgstr "Dim rhannu"
-#: ../../any.pm_.c:965 ../../network/smbnfs.pm_.c:45
+#: ../../any.pm_.c:983 ../../network/smbnfs.pm_.c:47
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
-#: ../../any.pm_.c:968
-msgid "You can export using NFS or Samba. Which one do you want"
+#: ../../any.pm_.c:986
+msgid ""
+"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Medrwch allforio gan ddefnyddio NFS neu Samba. Pa un hoffech chi"
-#: ../../any.pm_.c:976 ../../network/smbnfs.pm_.c:49
+#: ../../any.pm_.c:994 ../../network/smbnfs.pm_.c:51
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Mae pecyn gorfodol %s ar goll"
-#: ../../any.pm_.c:982
+#: ../../any.pm_.c:1000
msgid ""
-"Do you want to allow users to export some directories in their home?\n"
+"Would you like to allow users to share some of their directories?\n"
"Allowing this will permit users to simply click on \"Share\" in konqueror "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:996 ../../bootlook.pm_.c:161
-#: ../../diskdrake/smbnfs_gtk.pm_.c:85 ../../install_steps_gtk.pm_.c:464
-#: ../../install_steps_gtk.pm_.c:522 ../../install_steps_interactive.pm_.c:594
-#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:317
-#: ../../interactive.pm_.c:349 ../../interactive_stdio.pm_.c:141
-#: ../../my_gtk.pm_.c:687 ../../my_gtk.pm_.c:690 ../../my_gtk.pm_.c:1019
-#: ../../network/netconnect.pm_.c:47 ../../printerdrake.pm_.c:1586
-#: ../../standalone/drakautoinst_.c:204 ../../standalone/drakbackup_.c:2264
-#: ../../standalone/drakbackup_.c:2289 ../../standalone/drakbackup_.c:2310
-#: ../../standalone/drakbackup_.c:2331 ../../standalone/drakbackup_.c:2349
-#: ../../standalone/drakbackup_.c:2397 ../../standalone/drakbackup_.c:2417
-#: ../../standalone/drakbackup_.c:2436 ../../standalone/drakfont_.c:767
-#: ../../standalone/drakgw_.c:721 ../../standalone/draknet_.c:116
-#: ../../standalone/draknet_.c:148 ../../standalone/draknet_.c:290
-#: ../../standalone/draknet_.c:538 ../../standalone/draknet_.c:680
-#: ../../standalone/logdrake_.c:225 ../../standalone/logdrake_.c:512
-#: ../../standalone/tinyfirewall_.c:65
-msgid "Cancel"
-msgstr "Dileu"
-
-#: ../../any.pm_.c:996
+#: ../../any.pm_.c:1014
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"
-#: ../../any.pm_.c:998
+#: ../../any.pm_.c:1016
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1078,31 +922,31 @@ msgstr ""
"Mae rhannu yn l defnyddiwr yn defnyddio \"rhannu ffeiliau\" grwp.\n"
"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grwp."
-#: ../../any.pm_.c:1035
+#: ../../any.pm_.c:1066 ../../security/msec.pm_.c:135
msgid "Welcome To Crackers"
msgstr "Croeso i Crackers"
-#: ../../any.pm_.c:1036
+#: ../../any.pm_.c:1067 ../../security/msec.pm_.c:136
msgid "Poor"
msgstr "Gwael"
-#: ../../any.pm_.c:1037 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1068 ../../mouse.pm_.c:31 ../../security/msec.pm_.c:137
msgid "Standard"
msgstr "Safonol"
-#: ../../any.pm_.c:1038
+#: ../../any.pm_.c:1069 ../../security/msec.pm_.c:138
msgid "High"
msgstr "Uchel"
-#: ../../any.pm_.c:1039
+#: ../../any.pm_.c:1070 ../../security/msec.pm_.c:139
msgid "Higher"
msgstr "Uwch"
-#: ../../any.pm_.c:1040
+#: ../../any.pm_.c:1071 ../../security/msec.pm_.c:140
msgid "Paranoid"
msgstr "Paranoia"
-#: ../../any.pm_.c:1043
+#: ../../any.pm_.c:1074
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"
@@ -1113,7 +957,7 @@ msgstr ""
"i'w\n"
"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
-#: ../../any.pm_.c:1046
+#: ../../any.pm_.c:1077 ../../security/msec.pm_.c:147
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1121,7 +965,7 @@ msgstr ""
"Mae'r cyfrinair wedi ei alluogi, ond ni argymellir ei ddefnyddio fel "
"cyfrifiadur rhwydwaith."
-#: ../../any.pm_.c:1047
+#: ../../any.pm_.c:1078 ../../security/msec.pm_.c:148
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1129,7 +973,7 @@ msgstr ""
"Dyma'r safon sy'n cael ei argymell ar gyfer diogelwch cyfrifiadur fydd yn "
"cael ei gysylltu 'r Rhyngrwyd fel cleient."
-#: ../../any.pm_.c:1048
+#: ../../any.pm_.c:1079 ../../security/msec.pm_.c:149
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1137,13 +981,14 @@ msgstr ""
"Mae rhai cyfyngiadau, ac mae rhagor o wiriadau awtomatig yn cael eu rhedeg "
"bob nos"
-#: ../../any.pm_.c:1049
+#: ../../any.pm_.c:1080
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 accept\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 better choose a lower level."
+"Internet, you should choose a lower level."
msgstr ""
"Gyda'r lefel diogelwch hwn, mae defnydd y system fel gwasanaethwr yn "
"bosibl.\n"
@@ -1152,34 +997,34 @@ msgstr ""
"cysylltiad gan amryw o gleientiaid. Sylwer: os mae cleient yn unig yw eich "
"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
-#: ../../any.pm_.c:1052
+#: ../../any.pm_.c:1083 ../../security/msec.pm_.c:153
msgid ""
-"Based on the previous level, but the system is entirely closed.\n"
-"Security features are at their maximum."
+"This is similar to the previous level, but the system is entirely closed and "
+"security features are at their maximum."
msgstr ""
"Wedi ei seilio ar y lefel flaenorol, ond mae'r system yn hollol gaedig.\n"
"Mae nodweddion diogelwch ar eu uchaf."
-#: ../../any.pm_.c:1058
-msgid "Choose security level"
-msgstr "Dewiswch lefel diogelwch"
-
-#: ../../any.pm_.c:1061
+#: ../../any.pm_.c:1093 ../../security/msec.pm_.c:164
msgid "Security level"
msgstr "Lefel diogelwch"
-#: ../../any.pm_.c:1063
+#: ../../any.pm_.c:1095 ../../security/msec.pm_.c:166
msgid "Use libsafe for servers"
msgstr "Defnyddiwch libsafe ar gyfer gwasanaethwyr"
-#: ../../any.pm_.c:1064
+#: ../../any.pm_.c:1096 ../../security/msec.pm_.c:167
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Llyfrgell sy'n diogelu rhag gorlif byffer ac ymosodiadau llinellau fformatio."
+#: ../../any.pm_.c:1097 ../../security/msec.pm_.c:168
+msgid "Security Administrator (login or email)"
+msgstr ""
+
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:355
+#: ../../bootloader.pm_.c:356
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1196,52 +1041,52 @@ msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:928
+#: ../../bootloader.pm_.c:912
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Croeso i GRUB, y dewiswr systemau gweithredu!"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:931
+#: ../../bootloader.pm_.c:915
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Defnyddiwch allweddi %c a %c i ddewis pa gofnod i'w amlygu."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:934
+#: ../../bootloader.pm_.c:918
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Gwasgwch Enter i gychwyn y system weithredu, 'g' i olygu'r"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:937
+#: ../../bootloader.pm_.c:921
msgid "commands before booting, or 'c' for a command-line."
msgstr "gorchmynion cyn cychwyn, neu 'o' am y llinell orchymyn."
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#. -PO: and keep them smaller than 79 chars long
-#: ../../bootloader.pm_.c:940
+#: ../../bootloader.pm_.c:924
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Bydd y cofnod wedi ei amlygu'n cychwyn yn awtomatig ymhen %d eiliad."
-#: ../../bootloader.pm_.c:944
+#: ../../bootloader.pm_.c:928
msgid "not enough room in /boot"
msgstr "dim digon o le yn /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
#. -PO: so you may need to put them in English or in a different language if MS-windows doesn't exist in your language
-#: ../../bootloader.pm_.c:1044
+#: ../../bootloader.pm_.c:1028
msgid "Desktop"
msgstr "Penbwrdd"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1046
+#: ../../bootloader.pm_.c:1030
msgid "Start Menu"
msgstr "Dewislen Cychwyn"
-#: ../../bootloader.pm_.c:1065
+#: ../../bootloader.pm_.c:1049
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Nid oes modd gosod y llwythwr cychwyn ar adran %s\n"
@@ -1254,15 +1099,19 @@ msgstr "nid yw cymorth wedi ei weithredu eto.\n"
msgid "Boot Style Configuration"
msgstr "Ffurfweddu'r Math o Gychwyn"
-#: ../../bootlook.pm_.c:79 ../../standalone/logdrake_.c:101
+#: ../../bootlook.pm_.c:79 ../../harddrake/ui.pm_.c:11
+#: ../../harddrake/ui.pm_.c:12 ../../standalone/drakfloppy_.c:82
+#: ../../standalone/logdrake_.c:101
msgid "/_File"
msgstr "/_Ffeil"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../standalone/drakfloppy_.c:83
+#: ../../standalone/logdrake_.c:107
msgid "/File/_Quit"
msgstr "/Ffeil/_Gadael"
-#: ../../bootlook.pm_.c:80 ../../standalone/logdrake_.c:107
+#: ../../bootlook.pm_.c:80 ../../harddrake/ui.pm_.c:12
+#: ../../standalone/drakfloppy_.c:83 ../../standalone/logdrake_.c:107
msgid "<control>Q"
msgstr "<control>Q"
@@ -1297,14 +1146,14 @@ msgstr "Modd Yaboot"
#: ../../bootlook.pm_.c:104
#, c-format
msgid ""
-"You are currently using %s as Boot Manager.\n"
+"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Ryych yn defnyddio %s fel Rheolwr Cychwyn.\n"
"Cliciwch Ffurfweddu i gychwyn dewin gosod"
-#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1467
-#: ../../standalone/drakbackup_.c:1478 ../../standalone/drakgw_.c:715
+#: ../../bootlook.pm_.c:106 ../../standalone/drakbackup_.c:1804
+#: ../../standalone/drakbackup_.c:1815 ../../standalone/drakgw_.c:594
#: ../../standalone/tinyfirewall_.c:59
msgid "Configure"
msgstr "Ffurfweddu"
@@ -1314,7 +1163,7 @@ msgid "System mode"
msgstr "Modd System"
#: ../../bootlook.pm_.c:143
-msgid "Launch the X-Window system at start"
+msgid "Launch the graphical environment when your system starts"
msgstr "Cychwyn y system X-Window o'r cychwyn"
#: ../../bootlook.pm_.c:148
@@ -1325,14 +1174,16 @@ msgstr "Na, tydw i ddim eisiau awto-mewngofnodi"
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Iawn, rwyf eisiau awto-mewngofnodi gyda (defnyddiwr, penbwrdd)"
-#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:102
-#: ../../standalone/drakbackup_.c:2441 ../../standalone/drakbackup_.c:3345
-#: ../../standalone/drakfont_.c:532 ../../standalone/drakfont_.c:655
-#: ../../standalone/drakfont_.c:719 ../../standalone/drakfont_.c:765
-#: ../../standalone/draknet_.c:109 ../../standalone/draknet_.c:141
-#: ../../standalone/draknet_.c:297 ../../standalone/draknet_.c:436
-#: ../../standalone/draknet_.c:522 ../../standalone/draknet_.c:565
-#: ../../standalone/draknet_.c:666 ../../standalone/logdrake_.c:505
+#: ../../bootlook.pm_.c:160 ../../network/netconnect.pm_.c:101
+#: ../../standalone/drakTermServ_.c:174 ../../standalone/drakTermServ_.c:301
+#: ../../standalone/drakTermServ_.c:403 ../../standalone/drakbackup_.c:2851
+#: ../../standalone/drakbackup_.c:3774 ../../standalone/drakconnect_.c:109
+#: ../../standalone/drakconnect_.c:141 ../../standalone/drakconnect_.c:297
+#: ../../standalone/drakconnect_.c:436 ../../standalone/drakconnect_.c:522
+#: ../../standalone/drakconnect_.c:565 ../../standalone/drakconnect_.c:668
+#: ../../standalone/drakfloppy_.c:377 ../../standalone/drakfont_.c:613
+#: ../../standalone/drakfont_.c:800 ../../standalone/drakfont_.c:877
+#: ../../standalone/drakfont_.c:964 ../../standalone/logdrake_.c:530
msgid "OK"
msgstr "Iawn"
@@ -1380,7 +1231,7 @@ msgstr "Nid wyf yn medru creu lluniau o'r sgrin cyn rhannu"
msgid "Screenshots will be available after install in %s"
msgstr "Bydd lluniau o'r sgrin ar gale ar l gosod yn %s"
-#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:12 ../../crypto.pm_.c:26 ../../network/tools.pm_.c:113
msgid "France"
msgstr "Ffrainc"
@@ -1388,7 +1239,7 @@ msgstr "Ffrainc"
msgid "Costa Rica"
msgstr "Costa Rica"
-#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27
+#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:27 ../../network/tools.pm_.c:116
msgid "Belgium"
msgstr "Gwlad Belg"
@@ -1412,11 +1263,12 @@ msgstr "Norwy"
msgid "Sweden"
msgstr "Sweden"
-#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34
+#: ../../crypto.pm_.c:20 ../../crypto.pm_.c:34 ../../network/tools.pm_.c:114
msgid "Netherlands"
msgstr "Yr Iseldiroedd"
-#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../standalone/drakxtv_.c:50
+#: ../../crypto.pm_.c:21 ../../crypto.pm_.c:35 ../../network/tools.pm_.c:115
+#: ../../standalone/drakxtv_.c:74
msgid "Italy"
msgstr "Yr Eidal"
@@ -1424,7 +1276,7 @@ msgstr "Yr Eidal"
msgid "Austria"
msgstr "Awstria"
-#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67
+#: ../../crypto.pm_.c:33 ../../crypto.pm_.c:67 ../../network/tools.pm_.c:117
msgid "United States"
msgstr "Yr Unol Daleithiau"
@@ -1432,8 +1284,8 @@ msgstr "Yr Unol Daleithiau"
msgid "Please make a backup of your data first"
msgstr "Gwnewch gopi wrth gefn o'ch data yn gyntaf"
-#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:891
-#: ../../diskdrake/interactive.pm_.c:900 ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/hd_gtk.pm_.c:94 ../../diskdrake/interactive.pm_.c:922
+#: ../../diskdrake/interactive.pm_.c:931 ../../diskdrake/interactive.pm_.c:997
msgid "Read carefully!"
msgstr "Darllenwch yn ofalus!"
@@ -1447,11 +1299,12 @@ msgstr ""
"ddigon)\n"
"ar ddechrau'r ddisg."
-#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:325
-#: ../../diskdrake/interactive.pm_.c:340 ../../diskdrake/smbnfs_gtk.pm_.c:45
+#: ../../diskdrake/hd_gtk.pm_.c:116 ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:350 ../../diskdrake/interactive.pm_.c:463
+#: ../../diskdrake/interactive.pm_.c:468 ../../diskdrake/smbnfs_gtk.pm_.c:45
#: ../../install_steps.pm_.c:75 ../../install_steps_interactive.pm_.c:67
-#: ../../install_steps_interactive.pm_.c:356 ../../interactive_http.pm_.c:119
-#: ../../interactive_http.pm_.c:120 ../../standalone/diskdrake_.c:84
+#: ../../install_steps_interactive.pm_.c:366 ../../interactive/http.pm_.c:119
+#: ../../interactive/http.pm_.c:120 ../../standalone/diskdrake_.c:84
msgid "Error"
msgstr "Gwall"
@@ -1459,11 +1312,11 @@ msgstr "Gwall"
msgid "Wizard"
msgstr "Dewin"
-#: ../../diskdrake/hd_gtk.pm_.c:181 ../../diskdrake/removable_gtk.pm_.c:24
+#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
msgstr "Dewiswch weithred"
-#: ../../diskdrake/hd_gtk.pm_.c:185
+#: ../../diskdrake/hd_gtk.pm_.c:188
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1475,77 +1328,77 @@ msgstr ""
"Awgrymaf eich bod yn newid maint y rhaniad\n"
"(cliciwch arno, ac yna clicio \"Newid maint\"]"
-#: ../../diskdrake/hd_gtk.pm_.c:188
+#: ../../diskdrake/hd_gtk.pm_.c:191
msgid "Please click on a partition"
msgstr "Cliciwch ar raniad"
-#: ../../diskdrake/hd_gtk.pm_.c:202 ../../diskdrake/smbnfs_gtk.pm_.c:67
-#: ../../install_steps_gtk.pm_.c:523
+#: ../../diskdrake/hd_gtk.pm_.c:205 ../../diskdrake/smbnfs_gtk.pm_.c:69
+#: ../../install_steps_gtk.pm_.c:469
msgid "Details"
msgstr "Manylion"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Journalised FS"
msgstr "jwrnaleiddiwyd FS?"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake/hd_gtk.pm_.c:320
+#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../diskdrake/interactive.pm_.c:1050
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../diskdrake/interactive.pm_.c:1093
msgid "Empty"
msgstr "Gwag"
-#: ../../diskdrake/hd_gtk.pm_.c:321 ../../install_steps_gtk.pm_.c:379
-#: ../../install_steps_gtk.pm_.c:439 ../../mouse.pm_.c:162
-#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:944
+#: ../../diskdrake/hd_gtk.pm_.c:324 ../../install_steps_gtk.pm_.c:329
+#: ../../install_steps_gtk.pm_.c:387 ../../mouse.pm_.c:162
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1232
msgid "Other"
msgstr "Arall"
-#: ../../diskdrake/hd_gtk.pm_.c:325
+#: ../../diskdrake/hd_gtk.pm_.c:328
msgid "Filesystem types:"
msgstr "Mathau ffeil-system:"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:386
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:396
msgid "Create"
msgstr "Creu"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/interactive.pm_.c:365
-#: ../../diskdrake/interactive.pm_.c:499 ../../diskdrake/removable.pm_.c:26
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:520 ../../diskdrake/removable.pm_.c:26
#: ../../diskdrake/removable.pm_.c:49 ../../diskdrake/removable_gtk.pm_.c:17
msgid "Type"
msgstr "Math"
-#: ../../diskdrake/hd_gtk.pm_.c:342 ../../diskdrake/hd_gtk.pm_.c:344
+#: ../../diskdrake/hd_gtk.pm_.c:345 ../../diskdrake/hd_gtk.pm_.c:347
#, c-format
msgid "Use ``%s'' instead"
msgstr "Defnyddiwch \"%s\" yn lle hynny"
-#: ../../diskdrake/hd_gtk.pm_.c:344 ../../diskdrake/interactive.pm_.c:374
+#: ../../diskdrake/hd_gtk.pm_.c:347 ../../diskdrake/interactive.pm_.c:384
msgid "Delete"
msgstr "Dileu"
-#: ../../diskdrake/hd_gtk.pm_.c:348
+#: ../../diskdrake/hd_gtk.pm_.c:351
msgid "Use ``Unmount'' first"
msgstr "Defnyddiwch \"Dad-osod\" yn gyntaf"
-#: ../../diskdrake/hd_gtk.pm_.c:349 ../../diskdrake/interactive.pm_.c:491
+#: ../../diskdrake/hd_gtk.pm_.c:352 ../../diskdrake/interactive.pm_.c:512
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1553,97 +1406,102 @@ msgstr ""
"Wedi newid y math o raniad %s bydd yr holl ddata ar y rhaniad yn cael ei "
"golli"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose a partition"
msgstr "Dewiswch raniad"
-#: ../../diskdrake/interactive.pm_.c:171
+#: ../../diskdrake/interactive.pm_.c:172
msgid "Choose another partition"
msgstr "Dewiswch rhaniad arall"
-#: ../../diskdrake/interactive.pm_.c:196
+#: ../../diskdrake/interactive.pm_.c:197
msgid "Exit"
msgstr "Gadael"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to expert mode"
msgstr "Cyffredinol > Arbennigwr"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Toggle to normal mode"
msgstr "Arbennigwr > Cyffredinol"
-#: ../../diskdrake/interactive.pm_.c:218
+#: ../../diskdrake/interactive.pm_.c:219
msgid "Undo"
msgstr "Dadwneud"
-#: ../../diskdrake/interactive.pm_.c:237
+#: ../../diskdrake/interactive.pm_.c:238
msgid "Continue anyway?"
msgstr "Parhau beth bynnag?"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without saving"
msgstr "Gorffen heb arbed"
-#: ../../diskdrake/interactive.pm_.c:242
+#: ../../diskdrake/interactive.pm_.c:243
msgid "Quit without writing the partition table?"
msgstr "Gorffen heb ysgrifennu y tabl rhaniadau?"
-#: ../../diskdrake/interactive.pm_.c:247
+#: ../../diskdrake/interactive.pm_.c:248
msgid "Do you want to save /etc/fstab modifications"
msgstr "Ydych eisiau cadw newidiadau /etc/fstab"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Auto allocate"
msgstr "Awto ddynodi"
-#: ../../diskdrake/interactive.pm_.c:259
+#: ../../diskdrake/interactive.pm_.c:260
msgid "Clear all"
msgstr "Clirio i gyd"
-#: ../../diskdrake/interactive.pm_.c:262
+#: ../../diskdrake/interactive.pm_.c:260
+#: ../../install_steps_interactive.pm_.c:216
+msgid "More"
+msgstr "Rhagor"
+
+#: ../../diskdrake/interactive.pm_.c:263
msgid "Hard drive information"
msgstr "Gwybodaeth am y ddisg caled"
-#: ../../diskdrake/interactive.pm_.c:283
+#: ../../diskdrake/interactive.pm_.c:293
msgid "All primary partitions are used"
msgstr "Mae pob rhaniad cynradd wedi ei ddefnyddio"
-#: ../../diskdrake/interactive.pm_.c:284
+#: ../../diskdrake/interactive.pm_.c:294
msgid "I can't add any more partition"
msgstr "Alla'i ddim ychwanegu unrhyw raniadau ychwanegol"
-#: ../../diskdrake/interactive.pm_.c:285
+#: ../../diskdrake/interactive.pm_.c:295
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "I gael mwy o raniadau, dilwch un er mwyn gallu creu rhaniad estynedig"
-#: ../../diskdrake/interactive.pm_.c:295
+#: ../../diskdrake/interactive.pm_.c:305
msgid "Save partition table"
msgstr "Cadw'r tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:296
+#: ../../diskdrake/interactive.pm_.c:306
msgid "Restore partition table"
msgstr "Adfer y tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:297
+#: ../../diskdrake/interactive.pm_.c:307
msgid "Rescue partition table"
msgstr "Achub y tabl rhaniadau"
-#: ../../diskdrake/interactive.pm_.c:299
+#: ../../diskdrake/interactive.pm_.c:309
msgid "Reload partition table"
msgstr "Ail-lwytho'r tabl rhaniad"
-#: ../../diskdrake/interactive.pm_.c:304
+#: ../../diskdrake/interactive.pm_.c:314
msgid "Removable media automounting"
msgstr "Cyfrwng symudadwy'n awto-osod"
-#: ../../diskdrake/interactive.pm_.c:313 ../../diskdrake/interactive.pm_.c:333
+#: ../../diskdrake/interactive.pm_.c:323 ../../diskdrake/interactive.pm_.c:343
msgid "Select file"
msgstr "Dewiswch ffeil"
-#: ../../diskdrake/interactive.pm_.c:320
+#: ../../diskdrake/interactive.pm_.c:330
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1651,11 +1509,11 @@ msgstr ""
"Nid oes gan y tabl rhaniad wrth gefn yr un maint\n"
"Parhau?"
-#: ../../diskdrake/interactive.pm_.c:334
+#: ../../diskdrake/interactive.pm_.c:344
msgid "Warning"
msgstr "Rhybudd"
-#: ../../diskdrake/interactive.pm_.c:335
+#: ../../diskdrake/interactive.pm_.c:345
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1663,122 +1521,129 @@ msgstr ""
"Rhowch flopi yn y disg-yrrwr\n"
"Mi fydd yr holl wybodaeth ar y fflopi yma yn gael ei ddileu"
-#: ../../diskdrake/interactive.pm_.c:346
+#: ../../diskdrake/interactive.pm_.c:356
msgid "Trying to rescue partition table"
msgstr "Yn trio achub y tabl rhaniadau"
-#: ../../diskdrake/interactive.pm_.c:352
+#: ../../diskdrake/interactive.pm_.c:362
msgid "Detailed information"
msgstr "Gwybodaeth fanwl"
-#: ../../diskdrake/interactive.pm_.c:364 ../../diskdrake/interactive.pm_.c:534
-#: ../../diskdrake/interactive.pm_.c:554 ../../diskdrake/removable.pm_.c:24
-#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:83
+#: ../../diskdrake/interactive.pm_.c:374 ../../diskdrake/interactive.pm_.c:557
+#: ../../diskdrake/interactive.pm_.c:584 ../../diskdrake/removable.pm_.c:24
+#: ../../diskdrake/removable_gtk.pm_.c:15 ../../diskdrake/smbnfs_gtk.pm_.c:85
msgid "Mount point"
msgstr "Pwynt gosod"
-#: ../../diskdrake/interactive.pm_.c:366 ../../diskdrake/removable.pm_.c:25
-#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:84
+#: ../../diskdrake/interactive.pm_.c:376 ../../diskdrake/removable.pm_.c:25
+#: ../../diskdrake/removable_gtk.pm_.c:16 ../../diskdrake/smbnfs_gtk.pm_.c:86
msgid "Options"
msgstr "Dewisiadau"
-#: ../../diskdrake/interactive.pm_.c:367 ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:377 ../../diskdrake/interactive.pm_.c:651
msgid "Resize"
msgstr "Newid maint"
-#: ../../diskdrake/interactive.pm_.c:368 ../../diskdrake/interactive.pm_.c:674
+#: ../../diskdrake/interactive.pm_.c:378 ../../diskdrake/interactive.pm_.c:704
msgid "Move"
msgstr "Symud"
-#: ../../diskdrake/interactive.pm_.c:369
+#: ../../diskdrake/interactive.pm_.c:379
msgid "Format"
msgstr "Fformatio"
-#: ../../diskdrake/interactive.pm_.c:370 ../../diskdrake/smbnfs_gtk.pm_.c:80
+#: ../../diskdrake/interactive.pm_.c:380 ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Gosod"
-#: ../../diskdrake/interactive.pm_.c:371
+#: ../../diskdrake/interactive.pm_.c:381
msgid "Add to RAID"
msgstr "Ychwanegu i RAID"
-#: ../../diskdrake/interactive.pm_.c:372
+#: ../../diskdrake/interactive.pm_.c:382
msgid "Add to LVM"
msgstr "Ychwanegu i LVM"
-#: ../../diskdrake/interactive.pm_.c:373 ../../diskdrake/smbnfs_gtk.pm_.c:79
+#: ../../diskdrake/interactive.pm_.c:383 ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Dad-osod"
-#: ../../diskdrake/interactive.pm_.c:375
+#: ../../diskdrake/interactive.pm_.c:385
msgid "Remove from RAID"
msgstr "Tynnu o RAID"
-#: ../../diskdrake/interactive.pm_.c:376
+#: ../../diskdrake/interactive.pm_.c:386
msgid "Remove from LVM"
msgstr "Tynnu o LVM"
-#: ../../diskdrake/interactive.pm_.c:377
+#: ../../diskdrake/interactive.pm_.c:387
msgid "Modify RAID"
msgstr "Newid RAID"
-#: ../../diskdrake/interactive.pm_.c:378
+#: ../../diskdrake/interactive.pm_.c:388
msgid "Use for loopback"
msgstr "Defnyddiwch ar gyfer cylchol"
-#: ../../diskdrake/interactive.pm_.c:417
+#: ../../diskdrake/interactive.pm_.c:427
msgid "Create a new partition"
msgstr "Creu rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:420
+#: ../../diskdrake/interactive.pm_.c:430
msgid "Start sector: "
msgstr "Sector dechreuol: "
-#: ../../diskdrake/interactive.pm_.c:422 ../../diskdrake/interactive.pm_.c:773
+#: ../../diskdrake/interactive.pm_.c:432 ../../diskdrake/interactive.pm_.c:803
msgid "Size in MB: "
msgstr "Maint mewn MB: "
-#: ../../diskdrake/interactive.pm_.c:423 ../../diskdrake/interactive.pm_.c:774
+#: ../../diskdrake/interactive.pm_.c:433 ../../diskdrake/interactive.pm_.c:804
msgid "Filesystem type: "
msgstr "Math o ffeilsystem: "
-#: ../../diskdrake/interactive.pm_.c:424
-#: ../../diskdrake/interactive.pm_.c:1034
-#: ../../diskdrake/interactive.pm_.c:1108
+#: ../../diskdrake/interactive.pm_.c:434
+#: ../../diskdrake/interactive.pm_.c:1077
+#: ../../diskdrake/interactive.pm_.c:1151
msgid "Mount point: "
msgstr "Pwynt gosod:"
-#: ../../diskdrake/interactive.pm_.c:428
+#: ../../diskdrake/interactive.pm_.c:438
msgid "Preference: "
msgstr "Dewis"
-#: ../../diskdrake/interactive.pm_.c:472
+#: ../../diskdrake/interactive.pm_.c:463
+msgid ""
+"You can't create a new partition\n"
+"(since you reached the maximal number of primary partitions).\n"
+"First remove a primary partition and create an extended partition."
+msgstr ""
+
+#: ../../diskdrake/interactive.pm_.c:493
msgid "Remove the loopback file?"
msgstr "Tynnu'r ffeil cylch-ol?"
-#: ../../diskdrake/interactive.pm_.c:497
+#: ../../diskdrake/interactive.pm_.c:518
msgid "Change partition type"
msgstr "Newid math y rhaniad"
-#: ../../diskdrake/interactive.pm_.c:498 ../../diskdrake/removable.pm_.c:48
+#: ../../diskdrake/interactive.pm_.c:519 ../../diskdrake/removable.pm_.c:48
msgid "Which filesystem do you want?"
msgstr "Pa fath o system ffeil ydych chi eisiau?"
-#: ../../diskdrake/interactive.pm_.c:502
+#: ../../diskdrake/interactive.pm_.c:525
msgid "Switching from ext2 to ext3"
msgstr "Newid o ext2 i ext3"
-#: ../../diskdrake/interactive.pm_.c:532
+#: ../../diskdrake/interactive.pm_.c:555
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Lle'r hoffech chi odod y ffeil cylch-ol %s?"
-#: ../../diskdrake/interactive.pm_.c:533 ../../diskdrake/interactive.pm_.c:553
+#: ../../diskdrake/interactive.pm_.c:556 ../../diskdrake/interactive.pm_.c:583
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Lle ydych am osod dyfais %s?"
-#: ../../diskdrake/interactive.pm_.c:539
+#: ../../diskdrake/interactive.pm_.c:562
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1787,128 +1652,133 @@ msgstr ""
"gyfer cylch-ol\n"
"Tynnu'r cylch-ol yn gyntaf"
-#: ../../diskdrake/interactive.pm_.c:577
+#: ../../diskdrake/interactive.pm_.c:607
msgid "Computing FAT filesystem bounds"
msgstr "Cyfrifo ffiniau system ffeiliau FAT"
-#: ../../diskdrake/interactive.pm_.c:577 ../../diskdrake/interactive.pm_.c:636
-#: ../../install_interactive.pm_.c:130
+#: ../../diskdrake/interactive.pm_.c:607 ../../diskdrake/interactive.pm_.c:666
+#: ../../install_interactive.pm_.c:131
msgid "Resizing"
msgstr "Newid maint"
-#: ../../diskdrake/interactive.pm_.c:609
+#: ../../diskdrake/interactive.pm_.c:639
msgid "This partition is not resizeable"
msgstr "Nid oes modd newid maint y rhaniad"
-#: ../../diskdrake/interactive.pm_.c:614
+#: ../../diskdrake/interactive.pm_.c:644
msgid "All data on this partition should be backed-up"
msgstr "Dylai'r holl ddata ar y rhaniad gael ei ategu"
-#: ../../diskdrake/interactive.pm_.c:616
+#: ../../diskdrake/interactive.pm_.c:646
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ar l newid maint rhaniad %s, bydd yr holl ddata ar y rhaniad yma yn cael ei "
"golli"
-#: ../../diskdrake/interactive.pm_.c:621
+#: ../../diskdrake/interactive.pm_.c:651
msgid "Choose the new size"
msgstr "Dewiswch y maint newydd"
-#: ../../diskdrake/interactive.pm_.c:622
+#: ../../diskdrake/interactive.pm_.c:652
msgid "New size in MB: "
msgstr "Maint mewn MB: "
-#: ../../diskdrake/interactive.pm_.c:675
+#: ../../diskdrake/interactive.pm_.c:705
msgid "Which disk do you want to move it to?"
msgstr "Pa ddisg hoffech chi symud iddo?"
-#: ../../diskdrake/interactive.pm_.c:676
+#: ../../diskdrake/interactive.pm_.c:706
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake/interactive.pm_.c:677
+#: ../../diskdrake/interactive.pm_.c:707
msgid "Which sector do you want to move it to?"
msgstr "Pa sector hoffech chi symud iddo?"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving"
msgstr "Symud"
-#: ../../diskdrake/interactive.pm_.c:680
+#: ../../diskdrake/interactive.pm_.c:710
msgid "Moving partition..."
msgstr "Yn symud rhaniad.."
-#: ../../diskdrake/interactive.pm_.c:697
+#: ../../diskdrake/interactive.pm_.c:727
msgid "Choose an existing RAID to add to"
msgstr "Dewis RAID presennol i ychwanegu iddo"
-#: ../../diskdrake/interactive.pm_.c:698 ../../diskdrake/interactive.pm_.c:716
+#: ../../diskdrake/interactive.pm_.c:728 ../../diskdrake/interactive.pm_.c:745
msgid "new"
msgstr "newydd"
-#: ../../diskdrake/interactive.pm_.c:714
+#: ../../diskdrake/interactive.pm_.c:743
msgid "Choose an existing LVM to add to"
msgstr "Dewis LVM presennol i ychwanegu iddo"
-#: ../../diskdrake/interactive.pm_.c:719
+#: ../../diskdrake/interactive.pm_.c:748
msgid "LVM name?"
msgstr "Enw LVM"
-#: ../../diskdrake/interactive.pm_.c:759
+#: ../../diskdrake/interactive.pm_.c:789
msgid "This partition can't be used for loopback"
msgstr "Niid oes modd defnyddio'r rhaniad ar gyfer cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:771
+#: ../../diskdrake/interactive.pm_.c:801
msgid "Loopback"
msgstr "Cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:772
+#: ../../diskdrake/interactive.pm_.c:802
msgid "Loopback file name: "
msgstr "Enw ffeil cylch-ol"
-#: ../../diskdrake/interactive.pm_.c:777
+#: ../../diskdrake/interactive.pm_.c:807
msgid "Give a file name"
msgstr "Rhowch enw ffeil"
-#: ../../diskdrake/interactive.pm_.c:780
+#: ../../diskdrake/interactive.pm_.c:810
msgid "File already used by another loopback, choose another one"
msgstr ""
"Mae'r ffeil yn cael ei ddweis eisoes gam gylch-ol arall, dewiswch un arall"
-#: ../../diskdrake/interactive.pm_.c:781
+#: ../../diskdrake/interactive.pm_.c:811
msgid "File already exists. Use it?"
msgstr "Mae'r ffeil yn bodoli eisoes. Defnyddiwch hwn?"
-#: ../../diskdrake/interactive.pm_.c:804
+#: ../../diskdrake/interactive.pm_.c:834
msgid "Mount options"
msgstr "Dewisiadau gosod"
-#: ../../diskdrake/interactive.pm_.c:811
+#: ../../diskdrake/interactive.pm_.c:841
msgid "Various"
msgstr "Amrywiol"
-#: ../../diskdrake/interactive.pm_.c:874
+#: ../../diskdrake/interactive.pm_.c:905 ../../standalone/drakfloppy_.c:104
msgid "device"
msgstr "dyfais"
-#: ../../diskdrake/interactive.pm_.c:875
+#: ../../diskdrake/interactive.pm_.c:906
msgid "level"
msgstr "lefel"
-#: ../../diskdrake/interactive.pm_.c:876
+#: ../../diskdrake/interactive.pm_.c:907
msgid "chunk size"
msgstr "maint darn"
-#: ../../diskdrake/interactive.pm_.c:891
+#: ../../diskdrake/interactive.pm_.c:922
msgid "Be careful: this operation is dangerous."
msgstr "Byddwch ofalus: mae'r weithred hon yn beryglus"
-#: ../../diskdrake/interactive.pm_.c:906
+#: ../../diskdrake/interactive.pm_.c:937
msgid "What type of partitioning?"
msgstr "Pa fath o rhaniad %s"
-#: ../../diskdrake/interactive.pm_.c:924
+#: ../../diskdrake/interactive.pm_.c:953
+#, fuzzy, c-format
+msgid "The package %s is needed. Install it?"
+msgstr "Rhaid i becyn %s gael ei osod. Ydych chi am ei osod?"
+
+#: ../../diskdrake/interactive.pm_.c:967
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1920,7 +1790,7 @@ msgstr ""
"Naill ai nad ydych yn defnyddio LILO a ddim angen /boot neu byddwch yn "
"defnyddio LILO a ni fydd yn gweithio."
-#: ../../diskdrake/interactive.pm_.c:928
+#: ../../diskdrake/interactive.pm_.c:971
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1932,7 +1802,7 @@ msgstr ""
"Os ydych yn bwriadu defnyddio y rheolwr bwtio LILO, nodwch fe ddylech greu "
"rhaniad /boot"
-#: ../../diskdrake/interactive.pm_.c:934
+#: ../../diskdrake/interactive.pm_.c:977
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1942,130 +1812,130 @@ msgstr ""
"Nid oes llwythwr cychwyn yn medru trin hwn heb rhaniad /boot\n"
"Cofiwch ychwanegu rhaniad /boot"
-#: ../../diskdrake/interactive.pm_.c:954
+#: ../../diskdrake/interactive.pm_.c:997
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Mae tabl rhaniad disg-yrrwr %s am gael ei ysgrifennu i'r disg!"
-#: ../../diskdrake/interactive.pm_.c:958
+#: ../../diskdrake/interactive.pm_.c:1001
msgid "You'll need to reboot before the modification can take place"
msgstr "Mi fydd angen i chi ail-fwtio cyn i'r newidiadau gymeryd lle"
-#: ../../diskdrake/interactive.pm_.c:969
+#: ../../diskdrake/interactive.pm_.c:1012
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Wedi fformatio rhaniad %s, bydd yr holl ddata ar y rhaniad yn cael ei golli"
-#: ../../diskdrake/interactive.pm_.c:971
+#: ../../diskdrake/interactive.pm_.c:1014
msgid "Formatting"
msgstr "Fformatio"
-#: ../../diskdrake/interactive.pm_.c:972
+#: ../../diskdrake/interactive.pm_.c:1015
#, c-format
msgid "Formatting loopback file %s"
msgstr "Yn fformatio ffeil cylch-ol %s"
-#: ../../diskdrake/interactive.pm_.c:973
-#: ../../install_steps_interactive.pm_.c:465
+#: ../../diskdrake/interactive.pm_.c:1016
+#: ../../install_steps_interactive.pm_.c:477
#, c-format
msgid "Formatting partition %s"
msgstr "Yn fformatio rhaniad %s"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Hide files"
msgstr "Cuddio ffeiliau"
-#: ../../diskdrake/interactive.pm_.c:984
+#: ../../diskdrake/interactive.pm_.c:1027
msgid "Move files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:985
+#: ../../diskdrake/interactive.pm_.c:1028
#, c-format
msgid ""
-"Directory %s already contain some data\n"
+"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Mae cyfarwyddiadur %s eisoes yn cynnwys peth data\n"
"(%s)"
-#: ../../diskdrake/interactive.pm_.c:996
+#: ../../diskdrake/interactive.pm_.c:1039
msgid "Moving files to the new partition"
msgstr "Symud ffeiliau i'r rhaniad newydd"
-#: ../../diskdrake/interactive.pm_.c:1000
+#: ../../diskdrake/interactive.pm_.c:1043
#, c-format
msgid "Copying %s"
msgstr "Copo %s"
-#: ../../diskdrake/interactive.pm_.c:1004
+#: ../../diskdrake/interactive.pm_.c:1047
#, c-format
msgid "Removing %s"
msgstr "Tynnu %s"
-#: ../../diskdrake/interactive.pm_.c:1014
+#: ../../diskdrake/interactive.pm_.c:1057
#, c-format
msgid "partition %s is now known as %s"
msgstr "Mae rhaniad %s yn cael ei alw'n %s"
-#: ../../diskdrake/interactive.pm_.c:1035
-#: ../../diskdrake/interactive.pm_.c:1094
+#: ../../diskdrake/interactive.pm_.c:1078
+#: ../../diskdrake/interactive.pm_.c:1137
msgid "Device: "
msgstr "Dyfais: "
-#: ../../diskdrake/interactive.pm_.c:1036
+#: ../../diskdrake/interactive.pm_.c:1079
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Llythyren disg-yrrwr yn DOS: %s (dim ond dyfalu)\n"
-#: ../../diskdrake/interactive.pm_.c:1040
-#: ../../diskdrake/interactive.pm_.c:1048
-#: ../../diskdrake/interactive.pm_.c:1112
+#: ../../diskdrake/interactive.pm_.c:1083
+#: ../../diskdrake/interactive.pm_.c:1091
+#: ../../diskdrake/interactive.pm_.c:1155
msgid "Type: "
msgstr "Math: "
-#: ../../diskdrake/interactive.pm_.c:1044
+#: ../../diskdrake/interactive.pm_.c:1087
msgid "Name: "
msgstr "Enw :"
-#: ../../diskdrake/interactive.pm_.c:1052
+#: ../../diskdrake/interactive.pm_.c:1095
#, c-format
msgid "Start: sector %s\n"
msgstr "Dechrau: sector %s\n"
-#: ../../diskdrake/interactive.pm_.c:1053
+#: ../../diskdrake/interactive.pm_.c:1096
#, c-format
msgid "Size: %s"
msgstr "Maint: %s"
-#: ../../diskdrake/interactive.pm_.c:1055
+#: ../../diskdrake/interactive.pm_.c:1098
#, c-format
msgid ", %s sectors"
msgstr ", %s sector"
-#: ../../diskdrake/interactive.pm_.c:1057
+#: ../../diskdrake/interactive.pm_.c:1100
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Silindr %d i silindr %d\n"
-#: ../../diskdrake/interactive.pm_.c:1058
+#: ../../diskdrake/interactive.pm_.c:1101
msgid "Formatted\n"
msgstr "Wedi fformatio\n"
-#: ../../diskdrake/interactive.pm_.c:1059
+#: ../../diskdrake/interactive.pm_.c:1102
msgid "Not formatted\n"
msgstr "Heb ei fformatio\n"
-#: ../../diskdrake/interactive.pm_.c:1060
+#: ../../diskdrake/interactive.pm_.c:1103
msgid "Mounted\n"
msgstr "Gosodwyd\n"
-#: ../../diskdrake/interactive.pm_.c:1061
+#: ../../diskdrake/interactive.pm_.c:1104
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake/interactive.pm_.c:1063
+#: ../../diskdrake/interactive.pm_.c:1106
#, c-format
msgid ""
"Loopback file(s):\n"
@@ -2074,7 +1944,7 @@ msgstr ""
"Ffeil(iau) Cylch-ol:\n"
" %s\n"
-#: ../../diskdrake/interactive.pm_.c:1064
+#: ../../diskdrake/interactive.pm_.c:1107
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -2082,27 +1952,27 @@ msgstr ""
"Y rhaniad i'w bwtio fel rheol\n"
" (ar gyfer bwt MS-DOS, nid ar gyfer lilo)\n"
-#: ../../diskdrake/interactive.pm_.c:1066
+#: ../../diskdrake/interactive.pm_.c:1109
#, c-format
msgid "Level %s\n"
msgstr "Lefel %s\n"
-#: ../../diskdrake/interactive.pm_.c:1067
+#: ../../diskdrake/interactive.pm_.c:1110
#, c-format
msgid "Chunk size %s\n"
msgstr "Maint darn %s\n"
-#: ../../diskdrake/interactive.pm_.c:1068
+#: ../../diskdrake/interactive.pm_.c:1111
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disg RAID %s\n"
-#: ../../diskdrake/interactive.pm_.c:1070
+#: ../../diskdrake/interactive.pm_.c:1113
#, c-format
msgid "Loopback file name: %s"
msgstr "Enw ffeil cylch-ol: %s"
-#: ../../diskdrake/interactive.pm_.c:1073
+#: ../../diskdrake/interactive.pm_.c:1116
msgid ""
"\n"
"Chances are, this partition is\n"
@@ -2114,7 +1984,7 @@ msgstr ""
"yw'r rhaniad hwn. Gwell gadael\n"
"llonnydd iddo.\n"
-#: ../../diskdrake/interactive.pm_.c:1076
+#: ../../diskdrake/interactive.pm_.c:1119
msgid ""
"\n"
"This special Bootstrap\n"
@@ -2126,63 +1996,63 @@ msgstr ""
"hwn ar gyfer cychwyniad\n"
"dwbl eich system\n"
-#: ../../diskdrake/interactive.pm_.c:1095
+#: ../../diskdrake/interactive.pm_.c:1138
#, c-format
msgid "Size: %s\n"
msgstr "Maint: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1096
+#: ../../diskdrake/interactive.pm_.c:1139
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometreg: %s silindr, %s pen, %s sector\n"
-#: ../../diskdrake/interactive.pm_.c:1097
+#: ../../diskdrake/interactive.pm_.c:1140
msgid "Info: "
msgstr "Gwybodaeth:"
-#: ../../diskdrake/interactive.pm_.c:1098
+#: ../../diskdrake/interactive.pm_.c:1141
#, c-format
msgid "LVM-disks %s\n"
msgstr "Diag LVM %s\n"
-#: ../../diskdrake/interactive.pm_.c:1099
+#: ../../diskdrake/interactive.pm_.c:1142
#, c-format
msgid "Partition table type: %s\n"
msgstr "Math tabl rhaniad: %s\n"
-#: ../../diskdrake/interactive.pm_.c:1100
-#, c-format
-msgid "on bus %d id %d\n"
+#: ../../diskdrake/interactive.pm_.c:1143
+#, fuzzy, c-format
+msgid "on channel %d id %d\n"
msgstr "ar fws %d id %d\n"
-#: ../../diskdrake/interactive.pm_.c:1114
+#: ../../diskdrake/interactive.pm_.c:1157
#, c-format
msgid "Options: %s"
msgstr "Dewisiadau: %s"
-#: ../../diskdrake/interactive.pm_.c:1130
+#: ../../diskdrake/interactive.pm_.c:1173
msgid "Filesystem encryption key"
msgstr "Allwedd amgryptio system ffeil : "
-#: ../../diskdrake/interactive.pm_.c:1131
+#: ../../diskdrake/interactive.pm_.c:1174
msgid "Choose your filesystem encryption key"
msgstr "Dewiswch eich allwedd amgryptio system ffeiliau"
-#: ../../diskdrake/interactive.pm_.c:1134
+#: ../../diskdrake/interactive.pm_.c:1177
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Mae'r allwedd amgryptio'n rhy syml ( mae'n rhaid bod o leiaf %d nod o hyd)"
-#: ../../diskdrake/interactive.pm_.c:1135
+#: ../../diskdrake/interactive.pm_.c:1178
msgid "The encryption keys do not match"
msgstr "Nid yw'r allweddi amgryptio'n cydfynd"
-#: ../../diskdrake/interactive.pm_.c:1138
+#: ../../diskdrake/interactive.pm_.c:1181
msgid "Encryption key"
msgstr "Allwedd amgryptio"
-#: ../../diskdrake/interactive.pm_.c:1139
+#: ../../diskdrake/interactive.pm_.c:1182
msgid "Encryption key (again)"
msgstr "Allwedd amgryptio (eto)"
@@ -2191,35 +2061,65 @@ msgid "Change type"
msgstr "Newid y math"
#: ../../diskdrake/removable_gtk.pm_.c:28
-msgid "Please click on a media"
+msgid "Please click on a medium"
msgstr "Cliciwch ar gyfrwng"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:165
+#: ../../diskdrake/smbnfs_gtk.pm_.c:162
+#, c-format
+msgid "Can't login using username %s (bad password?)"
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
+#, fuzzy
+msgid "Domain Authentication Required"
+msgstr "Dilysu"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Another one"
+msgstr "Rhyngrwyd"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:167
+#, fuzzy
+msgid "Which username"
+msgstr "Enw defnyddiwr"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:176
+msgid ""
+"Please enter your username, password and domain name to access this host."
+msgstr ""
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178
+#, fuzzy
+msgid "Username"
+msgstr "Enw defnyddiwr"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:180
+#, fuzzy
+msgid "Domain"
+msgstr "Parth NIS"
+
+#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "Chwiliwch am wasanaethwyr"
-#: ../../fs.pm_.c:485 ../../fs.pm_.c:495 ../../fs.pm_.c:499 ../../fs.pm_.c:503
-#: ../../fs.pm_.c:507 ../../fs.pm_.c:511
+#: ../../fs.pm_.c:551 ../../fs.pm_.c:561 ../../fs.pm_.c:565 ../../fs.pm_.c:569
+#: ../../fs.pm_.c:573 ../../fs.pm_.c:577
#, c-format
msgid "%s formatting of %s failed"
msgstr "mi fethodd y %s fformatio o %s"
-#: ../../fs.pm_.c:548
+#: ../../fs.pm_.c:614
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nid wyf yn gwybod sut i fformatio %s ym math %s"
-#: ../../fs.pm_.c:620 ../../fs.pm_.c:649 ../../fs.pm_.c:655
+#: ../../fs.pm_.c:686 ../../fs.pm_.c:726 ../../fs.pm_.c:732
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "methodd gosod rhaniad %s yng gnhyfeiriadur %s"
-#: ../../fs.pm_.c:640
-#, c-format
-msgid "fsck failed with exit code %d or signal %d"
-msgstr "methodd fdisk gyda cod gadael %d neu arwydd %d"
-
-#: ../../fs.pm_.c:670 ../../partition_table.pm_.c:596
+#: ../../fs.pm_.c:747 ../../partition_table.pm_.c:602
#, c-format
msgid "error unmounting %s: %s"
msgstr "gwall dadosod %s: %s"
@@ -2236,67 +2136,321 @@ msgstr "gyda /usr"
msgid "server"
msgstr "Gwasanaethwr"
-#: ../../fsedit.pm_.c:467
+#: ../../fsedit.pm_.c:471
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Does dim modd defnyddio JFS ar rhaniadau llai na 16MB"
-#: ../../fsedit.pm_.c:468
+#: ../../fsedit.pm_.c:472
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Does dim modd defnyddio ReiserFS ar gyfer rhaniadau llai na 32MB"
-#: ../../fsedit.pm_.c:477
+#: ../../fsedit.pm_.c:491
msgid "Mount points must begin with a leading /"
msgstr "Rjhaid i bwyntiau gosod gynnwys / arweiniol"
-#: ../../fsedit.pm_.c:478
+#: ../../fsedit.pm_.c:492
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Mae yna eisoes raniad gyda pwynt gosod %s\n"
-#: ../../fsedit.pm_.c:482
+#: ../../fsedit.pm_.c:496
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr "Does dim modd defnyddio Cyfrol Rhesymegol LVM ar gyfer pwynt gosod %s"
-#: ../../fsedit.pm_.c:484
+#: ../../fsedit.pm_.c:498
msgid "This directory should remain within the root filesystem"
msgstr "Dyai'r cyfeiriadur aros o fewn y system ffeilio gwraidd"
-#: ../../fsedit.pm_.c:486
-msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
+#: ../../fsedit.pm_.c:500
+#, fuzzy
+msgid ""
+"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
+"point\n"
msgstr ""
"Mae angen gwir system ffeilio (ext2, reiserfs) ar gyfer y pwynt gosod\n"
-#: ../../fsedit.pm_.c:488
+#: ../../fsedit.pm_.c:502
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr "Does dim modd defnyddio Cyfrol Rhesymegol LVM ar gyfer pwynt gosod %s"
-#: ../../fsedit.pm_.c:546
+#: ../../fsedit.pm_.c:560
msgid "Not enough free space for auto-allocating"
msgstr "Nid oes digon o le ar gyfer awtoddynodi"
-#: ../../fsedit.pm_.c:548
+#: ../../fsedit.pm_.c:562
msgid "Nothing to do"
msgstr "Dim i'w wneud"
-#: ../../fsedit.pm_.c:612
+#: ../../fsedit.pm_.c:626
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Gwall wrth agos %s ar gyfer ysgrifennu %s"
-#: ../../fsedit.pm_.c:697
+#: ../../fsedit.pm_.c:711
msgid ""
-"An error has occurred - no valid devices were found on which to create new "
+"An error occurred - no valid devices were found on which to create new "
"filesystems. Please check your hardware for the cause of this problem"
msgstr ""
"Digwyddodd gwall - ni chanfyddwyd dyfeisiadau dilys i greu systemau ffeil "
"arnynt. Gwiriwch eich caledwedd am ffynhonell yr anhawster."
-#: ../../fsedit.pm_.c:720
+#: ../../fsedit.pm_.c:734
msgid "You don't have any partitions!"
msgstr "Does gennych chi ddim rhaniadau!"
+#: ../../harddrake/bttv.pm_.c:15 ../../harddrake/bttv.pm_.c:63
+#, fuzzy
+msgid "Auto-detect"
+msgstr "Defnyddio awto ganfod"
+
+#: ../../harddrake/bttv.pm_.c:64
+#, fuzzy
+msgid "Unknown|Generic"
+msgstr "Generig"
+
+#: ../../harddrake/bttv.pm_.c:96
+msgid "Unknown|CPH05X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:97
+msgid "Unknown|CPH06X (bt878) [many vendors]"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:193
+msgid ""
+"For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-"
+"detect the rights parameters.\n"
+"If your card is misdetected, you can force the right tuner and card types "
+"here. Just select your tv card parameters if needed"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:196
+#, fuzzy
+msgid "Card model :"
+msgstr "Cof Cerdyn (DMA)"
+
+#: ../../harddrake/bttv.pm_.c:197
+#, fuzzy
+msgid "PLL setting :"
+msgstr "gosodiad llwyth"
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "Number of capture buffers :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:198
+msgid "number of capture buffers for mmap'ed capture"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:199
+#, fuzzy
+msgid "Tuner type :"
+msgstr "Newid y math"
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "Radio support :"
+msgstr ""
+
+#: ../../harddrake/bttv.pm_.c:200
+msgid "enable radio support"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:12
+#, fuzzy
+msgid "/_Quit"
+msgstr "Gadael"
+
+#: ../../harddrake/ui.pm_.c:13 ../../harddrake/ui.pm_.c:14
+#: ../../harddrake/ui.pm_.c:15 ../../standalone/logdrake_.c:110
+msgid "/_Help"
+msgstr "/_Cymorth"
+
+#: ../../harddrake/ui.pm_.c:14
+#, fuzzy
+msgid "/_Help..."
+msgstr "/_Cymorth"
+
+#: ../../harddrake/ui.pm_.c:15
+#, fuzzy
+msgid "/_About..."
+msgstr "/Cymorth/_Ynghylch..."
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "Model"
+msgstr "Llygoden"
+
+#: ../../harddrake/ui.pm_.c:22
+#, fuzzy
+msgid "hard disk model"
+msgstr "Cof Cerdyn (DMA)"
+
+#: ../../harddrake/ui.pm_.c:23
+#, fuzzy
+msgid "Channel"
+msgstr "Diddymu"
+
+#: ../../harddrake/ui.pm_.c:23
+msgid "EIDE/SCSI channel"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:25
+msgid "Bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:26
+msgid ""
+"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:27
+#, fuzzy
+msgid "Module"
+msgstr "Llygoden"
+
+#: ../../harddrake/ui.pm_.c:27
+msgid "the module of the GNU/Linux kernel that handle that device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "Media class"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:28
+msgid "class of hardware device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:29 ../../printerdrake.pm_.c:1030
+msgid "Description"
+msgstr "Disgrifiad"
+
+#: ../../harddrake/ui.pm_.c:29
+msgid "this field describe the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:31
+#, fuzzy
+msgid "Bus identification"
+msgstr "Dilysu"
+
+#: ../../harddrake/ui.pm_.c:32
+msgid ""
+"- PCI and USB devices : this list the vendor, device, subvendor and "
+"subdevice PCI/USB ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:34
+msgid "Location on the bus"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:35
+msgid ""
+"- pci devices: this gives the PCI slot, device and function of this card\n"
+"- eide devices: the device is either a slave or a master device\n"
+"- scsi devices: the scsi bus and the scsi device ids"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:38
+#, fuzzy
+msgid "Old device file"
+msgstr "Dewiswch ffeil"
+
+#: ../../harddrake/ui.pm_.c:39
+msgid "old static device name used in dev package"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:40
+#, fuzzy
+msgid "New devfs device"
+msgstr "Dyfais mynedfa"
+
+#: ../../harddrake/ui.pm_.c:41
+msgid "new dinamic device name generated by incore kernel devfs"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:42
+#, fuzzy
+msgid "Number of buttons"
+msgstr "2 fotwm"
+
+#: ../../harddrake/ui.pm_.c:43
+msgid "the vendor name of the device"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:92
+#, fuzzy
+msgid "Harddrake2 version "
+msgstr "Canfod disg caled"
+
+#: ../../harddrake/ui.pm_.c:122
+#, fuzzy
+msgid "Detected hardware"
+msgstr "Gweler gwyboadeth am galedwedd"
+
+#: ../../harddrake/ui.pm_.c:136
+#, fuzzy
+msgid "Informations"
+msgstr "Dangos gwybodaeth"
+
+#: ../../harddrake/ui.pm_.c:152
+msgid "Run config tool"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:158
+#, fuzzy
+msgid "Configure module"
+msgstr "Ffurfweddu llygoden"
+
+#: ../../harddrake/ui.pm_.c:168
+#, fuzzy
+msgid "Detection in progress"
+msgstr "canfyddwyd ar borth %s"
+
+#: ../../harddrake/ui.pm_.c:168 ../../interactive.pm_.c:387
+msgid "Please wait"
+msgstr "Arhoswch"
+
+#: ../../harddrake/ui.pm_.c:217
+msgid "primary"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:217
+#, fuzzy
+msgid "secondary"
+msgstr "%d eiliad"
+
+#: ../../harddrake/ui.pm_.c:260
+#, fuzzy, c-format
+msgid "Running \"%s\" ..."
+msgstr "Tynnu argraffydd \"%s\"..."
+
+#: ../../harddrake/ui.pm_.c:279
+msgid "About Harddrake"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:280
+msgid ""
+"This is HardDrake, a Mandrake hardware configuration tool.\n"
+"Version:"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:281
+#, fuzzy
+msgid "Author:"
+msgstr "Atoholi"
+
+#: ../../harddrake/ui.pm_.c:286
+msgid "Harddrake help"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:287
+msgid ""
+"Description of the fields:\n"
+"\n"
+msgstr ""
+
#: ../../help.pm_.c:13
msgid ""
"GNU/Linux is a multiuser system, and this means that each user can have his\n"
@@ -2310,7 +2464,7 @@ msgid ""
"system would not work any more. If you make a serious mistake as a regular\n"
"user, you may only lose some information, but not the entire system.\n"
"\n"
-"First, you have to enter your real name. This is not mandatory, of course\n"
+"First, you have to enter your real name. This is not mandatory, of course -\n"
"as you can actually enter whatever you want. DrakX will then take the first\n"
"word you have entered in the box and will bring it over to the \"User\n"
"name\". This is the name this particular user will use to log onto the\n"
@@ -2452,9 +2606,8 @@ msgid ""
"Packages are sorted in groups corresponding to a particular use of your\n"
"machine. The groups themselves are sorted into four sections:\n"
"\n"
-" * \"Workstation\": if you plan to use your machine as a workstation, "
-"select\n"
-"one or more of the corresponding groups;\n"
+" * \"Workstation\": if you plan to use your machine as a workstation,\n"
+"select one or more of the corresponding groups;\n"
"\n"
" * \"Development\": if your machine is to be used for programming, choose\n"
"the desired group(s);\n"
@@ -2795,7 +2948,7 @@ msgstr ""
#: ../../help.pm_.c:256
msgid ""
-"The Mandrake LinuxCD-ROM has a built-in rescue mode. You can access it by\n"
+"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting from the CD-ROM, press the >>F1<< key at boot and type >>rescue<<\n"
"at the prompt. But in case your computer cannot boot from the CD-ROM, you\n"
"should come back to this step for help in at least two situations:\n"
@@ -2807,9 +2960,8 @@ msgid ""
"process will rewrite the boot sector, and then you will not be able to\n"
"start GNU/Linux!\n"
"\n"
-" * if a problem arises and you cannot start up GNU/Linux from the hard "
-"disk,\n"
-"this floppy disk will be the only means of starting up GNU/Linux. It\n"
+" * if a problem arises and you cannot start up GNU/Linux from the hard\n"
+"disk, this floppy disk will be the only means of starting up GNU/Linux. It\n"
"contains a fair number of system tools for restoring a system, which has\n"
"crashed due to a power failure, an unfortunate typing error, a typo in a\n"
"password, or any other reason.\n"
@@ -2849,6 +3001,7 @@ msgstr ""
"angen ei fformatio gan y bydd DrakX yn ailysgrifennu'r holl ddisg."
#: ../../help.pm_.c:280
+#, fuzzy
msgid ""
"At this point, you need to choose where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
@@ -2883,21 +3036,20 @@ msgid ""
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option;\n"
"\n"
-" * \"Use the free space on the Windows; partition\": if MicrosoftWindows is\n"
-"installed on your hard drive and takes all the space available on it, you\n"
-"have to create free space for Linux data. To do so, you can delete your\n"
-"MicrosoftWindows partition and data (see ``Erase entire disk'' or ``Expert\n"
-"mode'' solutions) or resize your MicrosoftWindows partition. Resizing can\n"
+" * \"Use the free space on the Windows; partition\": if Microsoft Windows\n"
+"is installed on your hard drive and takes all the space available on it,\n"
+"you have to create free space for Linux data. To do so, you can delete your\n"
+"Microsoft Windows partition and data (see ``Erase entire disk'' or ``Expert\n"
+"mode'' solutions) or resize your Microsoft Windows partition. Resizing can\n"
"be performed without the loss of any data, provided you previously\n"
"defragment the Windows partition. Backing up your data won't hurt either..\n"
"This solution is recommended if you want to use both Mandrake Linux and\n"
-"MicrosoftWindows on the same computer.\n"
+"Microsoft Windows on the same computer.\n"
"\n"
-" Before choosing this option, please understand that after this "
-"procedure,\n"
-"the size of your MicrosoftWindows partition will be smaller than at the\n"
-"present time. You will have less free space under MicrosoftWindows to store\n"
-"your data or to install new software;\n"
+" Before choosing this option, please understand that after this\n"
+"procedure, the size of your Microsoft Windows partition will be smaller\n"
+"than at the present time. You will have less free space under Microsoft\n"
+"Windows to store your data or to install new software;\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
@@ -2913,9 +3065,9 @@ msgid ""
" !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Expert mode\": choose this option if you want to manually partition\n"
-"your hard drive. Be careful it is a powerful but dangerous choice. You can\n"
-"very easily lose all your data. Hence, do not choose this unless you know\n"
-"what you are doing."
+"your hard drive. Be careful - it is a powerful but dangerous choice. You\n"
+"can very easily lose all your data. Hence, do not choose this unless you\n"
+"know what you are doing."
msgstr ""
"Yn awr mae angen i chi ddewis lle ar eich disg caled i osod eich\n"
"system weithredu Linux Mandrake. Os yw eich disg caled yn wag neu\n"
@@ -3007,9 +3159,8 @@ msgid ""
" * \"Replay\". This is a partially automated installation as the\n"
"partitioning step (and only this one) remains interactive;\n"
"\n"
-" * \"Automated\". Fully automated installation: the hard disk is "
-"completely\n"
-"rewritten, all data is lost.\n"
+" * \"Automated\". Fully automated installation: the hard disk is\n"
+"completely rewritten, all data is lost.\n"
"\n"
" This feature is very handy when installing a great number of similar\n"
"machines. See the Auto install section on our web site;\n"
@@ -3182,6 +3333,7 @@ msgstr ""
"Os nad ydych yn siwr beth i'w ddewis, dewiswch y rhagosodedig."
#: ../../help.pm_.c:442
+#, fuzzy
msgid ""
"At this point, you need to choose which partition(s) will be used for the\n"
"installation of your Mandrake Linux system. If partitions have already been\n"
@@ -3203,38 +3355,32 @@ msgid ""
"\n"
" * \"More\": gives access to additional features:\n"
"\n"
-" * \"Save partition table\": saves the partition table to a floppy. "
-"Useful\n"
-"for later partition-table recovery if necessary. It is strongly recommended\n"
-"to perform this step;\n"
+" * \"Save partition table\": saves the partition table to a floppy.\n"
+"Useful for later partition-table recovery if necessary. It is strongly\n"
+"recommended to perform this step;\n"
"\n"
" * \"Restore partition table\": allows to restore a previously saved\n"
"partition table from floppy disk;\n"
"\n"
-" * \"Rescue partition table\": if your partition table is damaged, you "
-"can\n"
-"try to recover it using this option. Please be careful and remember that it\n"
-"can fail;\n"
+" * \"Rescue partition table\": if your partition table is damaged, you\n"
+"can try to recover it using this option. Please be careful and remember\n"
+"that it can fail;\n"
"\n"
-" * \"Reload partition table\": discards all changes and loads your "
-"initial\n"
-"partition table;\n"
+" * \"Reload partition table\": discards all changes and loads your\n"
+"initial partition table;\n"
"\n"
-" * \"Removable media automounting\": unchecking this option will force "
-"users\n"
-"to manually mount and unmount removable medias such as floppies and\n"
+" * \"Removable media automounting\": unchecking this option will force\n"
+"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
-" * \"Wizard\": use this option if you wish to use a wizard to partition "
-"your\n"
-"hard drive. This is recommended if you do not have a good knowledge of\n"
+" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
+"your hard drive. This is recommended if you do not have a good knowledge of\n"
"partitioning;\n"
"\n"
" * \"Undo\": use this option to cancel your changes;\n"
"\n"
-" * \"Toggle to normal/expert mode\": allows additional actions on "
-"partitions\n"
-"(type, options, format) and gives more information;\n"
+" * \"Toggle to normal/expert mode\": allows additional actions on\n"
+"partitions (type, options, format) and gives more information;\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
@@ -3403,6 +3549,7 @@ msgid "Please be patient. This operation can take several minutes."
msgstr "Amynedd... Gall y weithred hon gymryd rhai munudau."
#: ../../help.pm_.c:547
+#, fuzzy
msgid ""
"DrakX now needs to know if you want to perform a default (\"Recommended\")\n"
"installation or if you want to have greater control (\"Expert\"). You can\n"
@@ -3413,11 +3560,11 @@ msgid ""
"what currently holds your machine, you will be able to keep some old (Linux\n"
"or other) partitions unchanged;\n"
"\n"
-" * \"Upgrade\": this installation class allows to simply update the "
-"packages\n"
-"currently installed on your Mandrake Linux system. It keeps the current\n"
-"partitions of your hard drives as well as user configurations. All other\n"
-"configuration steps remain available with respect to plain installation;\n"
+" * \"Upgrade\": this installation class allows to simply update the\n"
+"packages currently installed on your Mandrake Linux system. It keeps the\n"
+"current partitions of your hard drives as well as user configurations. All\n"
+"other configuration steps remain available with respect to plain\n"
+"installation;\n"
"\n"
" * \"Upgrade Packages Only\": this brand new class allows to upgrade an\n"
"existing Mandrake Linux system while keeping all system configurations\n"
@@ -3474,7 +3621,7 @@ msgstr ""
"oes gennych wybodaeth drylwyr o GNU/Linux, felly peidiwch dewis hwn os\n"
" nad ydych yn gwybod beth rydych yn ei wneud."
-#: ../../help.pm_.c:583
+#: ../../help.pm_.c:584
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen) and you won't even see this step. However, you\n"
@@ -3505,7 +3652,7 @@ msgstr ""
" cynnal.\n"
" "
-#: ../../help.pm_.c:596
+#: ../../help.pm_.c:597
msgid ""
"Please choose your preferred language for installation and system usage.\n"
"\n"
@@ -3534,7 +3681,7 @@ msgstr ""
"Sylwer bod modd gosod myw nag un iaith. Unwaith i chi ddewis unrhyw \n"
"leoleiddiad ychwanegol cliciwch y botwm \"Iawn\" i barhau."
-#: ../../help.pm_.c:609